File size: 848 Bytes
2665ecc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Providers
In this folder you can find the providers that were created or are supported by OpenBB.
## Recommended structure
Every provider is located within a directory, with the following structure:
```{.bash}
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](../CONTRIBUTING.md) for more details
|