fds.sdk.FactSetProgrammaticEnvironment 0.21.6__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 ADDED
File without changes
@@ -0,0 +1,27 @@
1
+ # flake8: noqa
2
+
3
+ """
4
+ FPE API
5
+
6
+ FactSet Programmatic Environment (FPE) API is an API for users to interact with FPE programmatically, streamlining path from research to production. # noqa: E501
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ __version__ = "0.21.6"
14
+
15
+ # import ApiClient
16
+ from fds.sdk.FactSetProgrammaticEnvironment.api_client import ApiClient
17
+
18
+ # import Configuration
19
+ from fds.sdk.FactSetProgrammaticEnvironment.configuration import Configuration
20
+
21
+ # import exceptions
22
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import OpenApiException
23
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import ApiAttributeError
24
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import ApiTypeError
25
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import ApiValueError
26
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import ApiKeyError
27
+ from fds.sdk.FactSetProgrammaticEnvironment.exceptions import ApiException
@@ -0,0 +1,3 @@
1
+ # do not import all apis into this module because that uses a lot of memory and stack frames
2
+ # if you need the ability to import all apis from one package, import them with
3
+ # from fds.sdk.FactSetProgrammaticEnvironment.apis import CalculationsApi