Files
OpenBB/openbb_platform/providers/README.md
Henrique Joaquim cc8263a5ff [Release] 4.2.0 (#6420)
* add snowflake integration video (#6339)

* [HotFix] Fix broken URLs in docs page. (#6368)

* Fix broken URLs

* use full URL to other docs pages.

* remove nest_asyncio.apply()

* fix: sort tradingeconomics country choices

* fix lint

* fix: clean _callback function

* assign to empty dict

* feat: add licence to .toml files

* fix: readmes

* fix: add CLA url

* release: 4.20 % dependencies

* Skip deprecation test

* lint

* Sync with main (#6421)

* add snowflake integration video (#6339)

* [HotFix] Fix broken URLs in docs page. (#6368)

* Fix broken URLs

* use full URL to other docs pages.

---------

Co-authored-by: montezdesousa <79287829+montezdesousa@users.noreply.github.com>
Co-authored-by: Danglewood <85772166+deeleeramone@users.noreply.github.com>

* pylint disable possibly-used-before-assignment

* Update CLI toml

---------

Co-authored-by: montezdesousa <79287829+montezdesousa@users.noreply.github.com>
Co-authored-by: Danglewood <85772166+deeleeramone@users.noreply.github.com>
Co-authored-by: Diogo Sousa <montezdesousa@gmail.com>
Co-authored-by: Theodore Aptekarev <aptekarev@gmail.com>
2024-05-15 20:04:36 +02:00

848 B
Vendored

Providers

In this folder you can find the providers that were created or are supported by OpenBB.

Every provider is located within a directory, with the following structure:

openbb_platform
└───providers
    └───<provider_name>
        |   README.md
        │   pyproject.toml
        │   poetry.lock
        |───tests
        └───openbb_<provider_name>
            │   __init__.py
            |───models
            |   |───<some model>.py
            |   └───...
            └───utils
                |───<some helper>.py
                └───...

The models define the data structures that are used to query the provider endpoints and store the response data.

See CONTRIBUTING file for more details