capinvest-economy 1.0.5__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.
- capinvest_economy-1.0.5/PKG-INFO +21 -0
- capinvest_economy-1.0.5/README.md +6 -0
- capinvest_economy-1.0.5/__init__.py +1 -0
- capinvest_economy-1.0.5/dist/capinvest_economy-1.0.5.tar.gz +0 -0
- capinvest_economy-1.0.5/economy_router.py +975 -0
- capinvest_economy-1.0.5/economy_views.py +616 -0
- capinvest_economy-1.0.5/gdp/__init__.py +0 -0
- capinvest_economy-1.0.5/gdp/gdp_router.py +83 -0
- capinvest_economy-1.0.5/integration/__init__.py +0 -0
- capinvest_economy-1.0.5/integration/test_economy_api.py +1419 -0
- capinvest_economy-1.0.5/integration/test_economy_python.py +1360 -0
- capinvest_economy-1.0.5/py.typed +0 -0
- capinvest_economy-1.0.5/pyproject.toml +21 -0
- capinvest_economy-1.0.5/shipping/__init__.py +1 -0
- capinvest_economy-1.0.5/shipping/shipping_router.py +105 -0
- capinvest_economy-1.0.5/survey/__init__.py +0 -0
- capinvest_economy-1.0.5/survey/survey_router.py +198 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: capinvest-economy
|
|
3
|
+
Version: 1.0.5
|
|
4
|
+
Summary: Economy router extension for CapInvest
|
|
5
|
+
Author: zbz Team
|
|
6
|
+
Requires-Python: >=3.9.21,<3.14
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Requires-Dist: capinvest-core (>=1.0.1,<2.0.0)
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# CapInvest Economy Extension
|
|
16
|
+
|
|
17
|
+
The Economy extension provides global macroeconomic data access for the CapInvest Platform.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""CapInvest Economy Extension."""
|
|
File without changes
|