fds.sdk.EventsContribution 0.20.0__py3-none-any.whl
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.
- fds/__init__.py +0 -0
- fds/sdk/EventsContribution/__init__.py +28 -0
- fds/sdk/EventsContribution/api/__init__.py +3 -0
- fds/sdk/EventsContribution/api/events_contribution_api.py +829 -0
- fds/sdk/EventsContribution/api_client.py +929 -0
- fds/sdk/EventsContribution/apis/__init__.py +17 -0
- fds/sdk/EventsContribution/configuration.py +496 -0
- fds/sdk/EventsContribution/exceptions.py +160 -0
- fds/sdk/EventsContribution/model/__init__.py +5 -0
- fds/sdk/EventsContribution/model/delete_response.py +262 -0
- fds/sdk/EventsContribution/model/delete_response_data.py +268 -0
- fds/sdk/EventsContribution/model/delete_response_data_event_data.py +256 -0
- fds/sdk/EventsContribution/model/delete_response_data_message.py +256 -0
- fds/sdk/EventsContribution/model/error_object.py +264 -0
- fds/sdk/EventsContribution/model/error_response.py +262 -0
- fds/sdk/EventsContribution/model/event_data.py +311 -0
- fds/sdk/EventsContribution/model/event_update_data.py +305 -0
- fds/sdk/EventsContribution/model/insert_request.py +262 -0
- fds/sdk/EventsContribution/model/insert_request_data.py +268 -0
- fds/sdk/EventsContribution/model/insert_response.py +262 -0
- fds/sdk/EventsContribution/model/insert_response_data.py +268 -0
- fds/sdk/EventsContribution/model/insert_response_data_event_data.py +256 -0
- fds/sdk/EventsContribution/model/insert_response_data_message.py +256 -0
- fds/sdk/EventsContribution/model/location_data.py +268 -0
- fds/sdk/EventsContribution/model/participants_data.py +272 -0
- fds/sdk/EventsContribution/model/registration_info_data.py +267 -0
- fds/sdk/EventsContribution/model/symbol_data.py +278 -0
- fds/sdk/EventsContribution/model/update_request.py +262 -0
- fds/sdk/EventsContribution/model/update_request_data.py +268 -0
- fds/sdk/EventsContribution/model/update_response.py +262 -0
- fds/sdk/EventsContribution/model/update_response_data.py +268 -0
- fds/sdk/EventsContribution/model/update_response_data_event_data.py +256 -0
- fds/sdk/EventsContribution/model/update_response_data_message.py +256 -0
- fds/sdk/EventsContribution/model_utils.py +2052 -0
- fds/sdk/EventsContribution/models/__init__.py +35 -0
- fds/sdk/EventsContribution/rest.py +347 -0
- fds/sdk/__init__.py +0 -0
- fds.sdk.EventsContribution-0.20.0.dist-info/LICENSE +202 -0
- fds.sdk.EventsContribution-0.20.0.dist-info/METADATA +338 -0
- fds.sdk.EventsContribution-0.20.0.dist-info/RECORD +42 -0
- fds.sdk.EventsContribution-0.20.0.dist-info/WHEEL +5 -0
- fds.sdk.EventsContribution-0.20.0.dist-info/top_level.txt +1 -0
fds/__init__.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Events Contribution API
|
|
5
|
+
|
|
6
|
+
The Events Contribution API provides the ability to add specific types of corporate events to FactSet’s own events calendar, for display within FactSet’s applications, as well as for off-platform re-distribution via FactSet’s Events Calendar API. # noqa: E501
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
|
9
|
+
Contact: api@factset.com
|
|
10
|
+
Generated by: https://openapi-generator.tech
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
__version__ = "0.20.0"
|
|
15
|
+
|
|
16
|
+
# import ApiClient
|
|
17
|
+
from fds.sdk.EventsContribution.api_client import ApiClient
|
|
18
|
+
|
|
19
|
+
# import Configuration
|
|
20
|
+
from fds.sdk.EventsContribution.configuration import Configuration
|
|
21
|
+
|
|
22
|
+
# import exceptions
|
|
23
|
+
from fds.sdk.EventsContribution.exceptions import OpenApiException
|
|
24
|
+
from fds.sdk.EventsContribution.exceptions import ApiAttributeError
|
|
25
|
+
from fds.sdk.EventsContribution.exceptions import ApiTypeError
|
|
26
|
+
from fds.sdk.EventsContribution.exceptions import ApiValueError
|
|
27
|
+
from fds.sdk.EventsContribution.exceptions import ApiKeyError
|
|
28
|
+
from fds.sdk.EventsContribution.exceptions import ApiException
|