financial-reports-generated-client 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- financial_reports_generated_client-0.1.1/PKG-INFO +27 -0
- financial_reports_generated_client-0.1.1/README.md +174 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/__init__.py +60 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/__init__.py +13 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/companies_api.py +686 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/filing_types_api.py +601 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/filings_api.py +911 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/industries_api.py +618 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/industry_groups_api.py +618 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/schema_api.py +322 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/sectors_api.py +601 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/sources_api.py +584 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api/sub_industries_api.py +618 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api_client.py +801 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/api_response.py +21 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/configuration.py +623 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/exceptions.py +217 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/__init__.py +35 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/company.py +219 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/company_minimal.py +106 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/filing.py +155 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/filing_type.py +98 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/industry.py +102 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/industry_group.py +102 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/language.py +94 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_company_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_filing_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_filing_type_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_industry_group_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_industry_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_sector_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_source_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/paginated_sub_industry_list.py +112 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/sector.py +94 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/source.py +98 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/models/sub_industry.py +102 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/py.typed +0 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client/rest.py +214 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client.egg-info/PKG-INFO +27 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client.egg-info/SOURCES.txt +72 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client.egg-info/dependency_links.txt +1 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client.egg-info/requires.txt +6 -0
- financial_reports_generated_client-0.1.1/financial_reports_generated_client.egg-info/top_level.txt +1 -0
- financial_reports_generated_client-0.1.1/pyproject.toml +91 -0
- financial_reports_generated_client-0.1.1/setup.cfg +7 -0
- financial_reports_generated_client-0.1.1/setup.py +53 -0
- financial_reports_generated_client-0.1.1/test/test_companies_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_company.py +131 -0
- financial_reports_generated_client-0.1.1/test/test_company_minimal.py +61 -0
- financial_reports_generated_client-0.1.1/test/test_filing.py +103 -0
- financial_reports_generated_client-0.1.1/test/test_filing_type.py +57 -0
- financial_reports_generated_client-0.1.1/test/test_filing_types_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_filings_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_industries_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_industry.py +63 -0
- financial_reports_generated_client-0.1.1/test/test_industry_group.py +61 -0
- financial_reports_generated_client-0.1.1/test/test_industry_groups_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_language.py +55 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_company_list.py +119 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_filing_list.py +87 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_filing_type_list.py +67 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_industry_group_list.py +67 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_industry_list.py +67 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_sector_list.py +65 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_source_list.py +67 -0
- financial_reports_generated_client-0.1.1/test/test_paginated_sub_industry_list.py +67 -0
- financial_reports_generated_client-0.1.1/test/test_schema_api.py +38 -0
- financial_reports_generated_client-0.1.1/test/test_sector.py +55 -0
- financial_reports_generated_client-0.1.1/test/test_sectors_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_source.py +57 -0
- financial_reports_generated_client-0.1.1/test/test_sources_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_sub_industries_api.py +44 -0
- financial_reports_generated_client-0.1.1/test/test_sub_industry.py +63 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: financial-reports-generated-client
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Financial Reports API
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: API Support
|
|
7
|
+
Author-email: api@financialreports.eu
|
|
8
|
+
License: Apache 2.0
|
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Financial Reports API
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
12
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
13
|
+
Requires-Dist: aiohttp>=3.8.4
|
|
14
|
+
Requires-Dist: aiohttp-retry>=2.8.3
|
|
15
|
+
Requires-Dist: pydantic>=2
|
|
16
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: keywords
|
|
22
|
+
Dynamic: license
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: summary
|
|
25
|
+
|
|
26
|
+
API for accessing company filings, financial data, industry classifications, and related information.
|
|
27
|
+
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
# financial-reports-generated-client
|
|
2
|
+
API for accessing company filings, financial data, industry classifications, and related information.
|
|
3
|
+
|
|
4
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
|
+
|
|
6
|
+
- API version: 1.0.0
|
|
7
|
+
- Package version: 0.1.1
|
|
8
|
+
- Generator version: 7.13.0-SNAPSHOT
|
|
9
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
|
+
For more information, please visit [https://financialreports.eu/](https://financialreports.eu/)
|
|
11
|
+
|
|
12
|
+
## Requirements.
|
|
13
|
+
|
|
14
|
+
Python 3.9+
|
|
15
|
+
|
|
16
|
+
## Installation & Usage
|
|
17
|
+
### pip install
|
|
18
|
+
|
|
19
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
23
|
+
```
|
|
24
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
25
|
+
|
|
26
|
+
Then import the package:
|
|
27
|
+
```python
|
|
28
|
+
import financial_reports_generated_client
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Setuptools
|
|
32
|
+
|
|
33
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
python setup.py install --user
|
|
37
|
+
```
|
|
38
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
39
|
+
|
|
40
|
+
Then import the package:
|
|
41
|
+
```python
|
|
42
|
+
import financial_reports_generated_client
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Tests
|
|
46
|
+
|
|
47
|
+
Execute `pytest` to run the tests.
|
|
48
|
+
|
|
49
|
+
## Getting Started
|
|
50
|
+
|
|
51
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
|
|
55
|
+
import financial_reports_generated_client
|
|
56
|
+
from financial_reports_generated_client.rest import ApiException
|
|
57
|
+
from pprint import pprint
|
|
58
|
+
|
|
59
|
+
# Defining the host is optional and defaults to https://api.financialreports.eu
|
|
60
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
61
|
+
configuration = financial_reports_generated_client.Configuration(
|
|
62
|
+
host = "https://api.financialreports.eu"
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
# The client must configure the authentication and authorization parameters
|
|
66
|
+
# in accordance with the API server security policy.
|
|
67
|
+
# Examples for each auth method are provided below, use the example that
|
|
68
|
+
# satisfies your auth use case.
|
|
69
|
+
|
|
70
|
+
# Configure HTTP basic authorization: basicAuth
|
|
71
|
+
configuration = financial_reports_generated_client.Configuration(
|
|
72
|
+
username = os.environ["USERNAME"],
|
|
73
|
+
password = os.environ["PASSWORD"]
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
# Configure API key authorization: cookieAuth
|
|
77
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
78
|
+
|
|
79
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
80
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
# Enter a context with an instance of the API client
|
|
84
|
+
async with financial_reports_generated_client.ApiClient(configuration) as api_client:
|
|
85
|
+
# Create an instance of the API class
|
|
86
|
+
api_instance = financial_reports_generated_client.CompaniesApi(api_client)
|
|
87
|
+
countries = 'countries_example' # str | Filter by Company country ISO Alpha-2 code(s). Comma-separated for multiple values (e.g., US,GB,DE). (optional)
|
|
88
|
+
industry = 'industry_example' # str | Filter by GICS Industry code. (optional)
|
|
89
|
+
industry_group = 'industry_group_example' # str | Filter by GICS Industry Group code. (optional)
|
|
90
|
+
page = 56 # int | A page number within the paginated result set. (optional)
|
|
91
|
+
page_size = 56 # int | Number of results to return per page. (optional)
|
|
92
|
+
search = 'search_example' # str | A search term. (optional)
|
|
93
|
+
sector = 'sector_example' # str | Filter by GICS Sector code. (optional)
|
|
94
|
+
sub_industry = 'sub_industry_example' # str | Filter by GICS Sub-Industry code. (optional)
|
|
95
|
+
|
|
96
|
+
try:
|
|
97
|
+
api_response = await api_instance.companies_list(countries=countries, industry=industry, industry_group=industry_group, page=page, page_size=page_size, search=search, sector=sector, sub_industry=sub_industry)
|
|
98
|
+
print("The response of CompaniesApi->companies_list:\n")
|
|
99
|
+
pprint(api_response)
|
|
100
|
+
except ApiException as e:
|
|
101
|
+
print("Exception when calling CompaniesApi->companies_list: %s\n" % e)
|
|
102
|
+
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Documentation for API Endpoints
|
|
106
|
+
|
|
107
|
+
All URIs are relative to *https://api.financialreports.eu*
|
|
108
|
+
|
|
109
|
+
Class | Method | HTTP request | Description
|
|
110
|
+
------------ | ------------- | ------------- | -------------
|
|
111
|
+
*CompaniesApi* | [**companies_list**](docs/CompaniesApi.md#companies_list) | **GET** /companies/ |
|
|
112
|
+
*CompaniesApi* | [**companies_retrieve**](docs/CompaniesApi.md#companies_retrieve) | **GET** /companies/{id}/ |
|
|
113
|
+
*FilingTypesApi* | [**filing_types_list**](docs/FilingTypesApi.md#filing_types_list) | **GET** /filing-types/ |
|
|
114
|
+
*FilingTypesApi* | [**filing_types_retrieve**](docs/FilingTypesApi.md#filing_types_retrieve) | **GET** /filing-types/{id}/ |
|
|
115
|
+
*FilingsApi* | [**filings_list**](docs/FilingsApi.md#filings_list) | **GET** /filings/ |
|
|
116
|
+
*FilingsApi* | [**filings_retrieve**](docs/FilingsApi.md#filings_retrieve) | **GET** /filings/{id}/ |
|
|
117
|
+
*IndustriesApi* | [**industries_list**](docs/IndustriesApi.md#industries_list) | **GET** /industries/ |
|
|
118
|
+
*IndustriesApi* | [**industries_retrieve**](docs/IndustriesApi.md#industries_retrieve) | **GET** /industries/{id}/ |
|
|
119
|
+
*IndustryGroupsApi* | [**industry_groups_list**](docs/IndustryGroupsApi.md#industry_groups_list) | **GET** /industry-groups/ |
|
|
120
|
+
*IndustryGroupsApi* | [**industry_groups_retrieve**](docs/IndustryGroupsApi.md#industry_groups_retrieve) | **GET** /industry-groups/{id}/ |
|
|
121
|
+
*SchemaApi* | [**schema_retrieve**](docs/SchemaApi.md#schema_retrieve) | **GET** /schema/ |
|
|
122
|
+
*SectorsApi* | [**sectors_list**](docs/SectorsApi.md#sectors_list) | **GET** /sectors/ |
|
|
123
|
+
*SectorsApi* | [**sectors_retrieve**](docs/SectorsApi.md#sectors_retrieve) | **GET** /sectors/{id}/ |
|
|
124
|
+
*SourcesApi* | [**sources_list**](docs/SourcesApi.md#sources_list) | **GET** /sources/ |
|
|
125
|
+
*SourcesApi* | [**sources_retrieve**](docs/SourcesApi.md#sources_retrieve) | **GET** /sources/{id}/ |
|
|
126
|
+
*SubIndustriesApi* | [**sub_industries_list**](docs/SubIndustriesApi.md#sub_industries_list) | **GET** /sub-industries/ |
|
|
127
|
+
*SubIndustriesApi* | [**sub_industries_retrieve**](docs/SubIndustriesApi.md#sub_industries_retrieve) | **GET** /sub-industries/{id}/ |
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
## Documentation For Models
|
|
131
|
+
|
|
132
|
+
- [Company](docs/Company.md)
|
|
133
|
+
- [CompanyMinimal](docs/CompanyMinimal.md)
|
|
134
|
+
- [Filing](docs/Filing.md)
|
|
135
|
+
- [FilingType](docs/FilingType.md)
|
|
136
|
+
- [Industry](docs/Industry.md)
|
|
137
|
+
- [IndustryGroup](docs/IndustryGroup.md)
|
|
138
|
+
- [Language](docs/Language.md)
|
|
139
|
+
- [PaginatedCompanyList](docs/PaginatedCompanyList.md)
|
|
140
|
+
- [PaginatedFilingList](docs/PaginatedFilingList.md)
|
|
141
|
+
- [PaginatedFilingTypeList](docs/PaginatedFilingTypeList.md)
|
|
142
|
+
- [PaginatedIndustryGroupList](docs/PaginatedIndustryGroupList.md)
|
|
143
|
+
- [PaginatedIndustryList](docs/PaginatedIndustryList.md)
|
|
144
|
+
- [PaginatedSectorList](docs/PaginatedSectorList.md)
|
|
145
|
+
- [PaginatedSourceList](docs/PaginatedSourceList.md)
|
|
146
|
+
- [PaginatedSubIndustryList](docs/PaginatedSubIndustryList.md)
|
|
147
|
+
- [Sector](docs/Sector.md)
|
|
148
|
+
- [Source](docs/Source.md)
|
|
149
|
+
- [SubIndustry](docs/SubIndustry.md)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
<a id="documentation-for-authorization"></a>
|
|
153
|
+
## Documentation For Authorization
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
Authentication schemes defined for the API:
|
|
157
|
+
<a id="basicAuth"></a>
|
|
158
|
+
### basicAuth
|
|
159
|
+
|
|
160
|
+
- **Type**: HTTP basic authentication
|
|
161
|
+
|
|
162
|
+
<a id="cookieAuth"></a>
|
|
163
|
+
### cookieAuth
|
|
164
|
+
|
|
165
|
+
- **Type**: API key
|
|
166
|
+
- **API key parameter name**: sessionid
|
|
167
|
+
- **Location**:
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
## Author
|
|
171
|
+
|
|
172
|
+
api@financialreports.eu
|
|
173
|
+
|
|
174
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Financial Reports API
|
|
7
|
+
|
|
8
|
+
API for accessing company filings, financial data, industry classifications, and related information.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Contact: api@financialreports.eu
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.1"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from financial_reports_generated_client.api.companies_api import CompaniesApi
|
|
22
|
+
from financial_reports_generated_client.api.filing_types_api import FilingTypesApi
|
|
23
|
+
from financial_reports_generated_client.api.filings_api import FilingsApi
|
|
24
|
+
from financial_reports_generated_client.api.industries_api import IndustriesApi
|
|
25
|
+
from financial_reports_generated_client.api.industry_groups_api import IndustryGroupsApi
|
|
26
|
+
from financial_reports_generated_client.api.schema_api import SchemaApi
|
|
27
|
+
from financial_reports_generated_client.api.sectors_api import SectorsApi
|
|
28
|
+
from financial_reports_generated_client.api.sources_api import SourcesApi
|
|
29
|
+
from financial_reports_generated_client.api.sub_industries_api import SubIndustriesApi
|
|
30
|
+
|
|
31
|
+
# import ApiClient
|
|
32
|
+
from financial_reports_generated_client.api_response import ApiResponse
|
|
33
|
+
from financial_reports_generated_client.api_client import ApiClient
|
|
34
|
+
from financial_reports_generated_client.configuration import Configuration
|
|
35
|
+
from financial_reports_generated_client.exceptions import OpenApiException
|
|
36
|
+
from financial_reports_generated_client.exceptions import ApiTypeError
|
|
37
|
+
from financial_reports_generated_client.exceptions import ApiValueError
|
|
38
|
+
from financial_reports_generated_client.exceptions import ApiKeyError
|
|
39
|
+
from financial_reports_generated_client.exceptions import ApiAttributeError
|
|
40
|
+
from financial_reports_generated_client.exceptions import ApiException
|
|
41
|
+
|
|
42
|
+
# import models into sdk package
|
|
43
|
+
from financial_reports_generated_client.models.company import Company
|
|
44
|
+
from financial_reports_generated_client.models.company_minimal import CompanyMinimal
|
|
45
|
+
from financial_reports_generated_client.models.filing import Filing
|
|
46
|
+
from financial_reports_generated_client.models.filing_type import FilingType
|
|
47
|
+
from financial_reports_generated_client.models.industry import Industry
|
|
48
|
+
from financial_reports_generated_client.models.industry_group import IndustryGroup
|
|
49
|
+
from financial_reports_generated_client.models.language import Language
|
|
50
|
+
from financial_reports_generated_client.models.paginated_company_list import PaginatedCompanyList
|
|
51
|
+
from financial_reports_generated_client.models.paginated_filing_list import PaginatedFilingList
|
|
52
|
+
from financial_reports_generated_client.models.paginated_filing_type_list import PaginatedFilingTypeList
|
|
53
|
+
from financial_reports_generated_client.models.paginated_industry_group_list import PaginatedIndustryGroupList
|
|
54
|
+
from financial_reports_generated_client.models.paginated_industry_list import PaginatedIndustryList
|
|
55
|
+
from financial_reports_generated_client.models.paginated_sector_list import PaginatedSectorList
|
|
56
|
+
from financial_reports_generated_client.models.paginated_source_list import PaginatedSourceList
|
|
57
|
+
from financial_reports_generated_client.models.paginated_sub_industry_list import PaginatedSubIndustryList
|
|
58
|
+
from financial_reports_generated_client.models.sector import Sector
|
|
59
|
+
from financial_reports_generated_client.models.source import Source
|
|
60
|
+
from financial_reports_generated_client.models.sub_industry import SubIndustry
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from financial_reports_generated_client.api.companies_api import CompaniesApi
|
|
5
|
+
from financial_reports_generated_client.api.filing_types_api import FilingTypesApi
|
|
6
|
+
from financial_reports_generated_client.api.filings_api import FilingsApi
|
|
7
|
+
from financial_reports_generated_client.api.industries_api import IndustriesApi
|
|
8
|
+
from financial_reports_generated_client.api.industry_groups_api import IndustryGroupsApi
|
|
9
|
+
from financial_reports_generated_client.api.schema_api import SchemaApi
|
|
10
|
+
from financial_reports_generated_client.api.sectors_api import SectorsApi
|
|
11
|
+
from financial_reports_generated_client.api.sources_api import SourcesApi
|
|
12
|
+
from financial_reports_generated_client.api.sub_industries_api import SubIndustriesApi
|
|
13
|
+
|