polyapi 5.9.18__tar.gz → 5.9.19__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.
- {polyapi-5.9.18 → polyapi-5.9.19}/PKG-INFO +7 -4
- {polyapi-5.9.18 → polyapi-5.9.19}/polyapi.egg-info/PKG-INFO +7 -4
- polyapi-5.9.19/polyapi.egg-info/requires.txt +12 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/business_scenarios.py +319 -58
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/common/consts.py +10 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/common/params_models.py +2 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/error_handler.py +286 -24
- polyapi-5.9.19/polymatica/helper.py +1189 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/pyproject.toml +1 -1
- {polyapi-5.9.18 → polyapi-5.9.19}/setup.py +11 -2
- polyapi-5.9.18/polyapi.egg-info/requires.txt +0 -5
- polyapi-5.9.18/polymatica/helper.py +0 -580
- {polyapi-5.9.18 → polyapi-5.9.19}/LICENSE.txt +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/README.md +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polyapi.egg-info/SOURCES.txt +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polyapi.egg-info/dependency_links.txt +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polyapi.egg-info/top_level.txt +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/__init__.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/authorization.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/business_logic_doc.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/commands/__init__.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/commands/base_command.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/commands/olap_module.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/commands/other_modules.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/common/__init__.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/common/helper_funcs.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/exceptions.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/executor.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/__init__.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/base_graph.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/graph_interface.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/__init__.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/areas.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/balls.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/chord.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/circles.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/circles_series.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/corridors.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/cumulative_areas.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/cumulative_cylinders.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/cylinders.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/graph.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/lines.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/pies.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/point.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/point_series.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/pools.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/pools_3d.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/radar.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/sankey.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/polymatica/graph/types/surface.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/setup.cfg +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/tests/test_create_sphere.py +0 -0
- {polyapi-5.9.18 → polyapi-5.9.19}/tests/test_update_cube.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: polyapi
|
|
3
|
-
Version: 5.9.
|
|
3
|
+
Version: 5.9.19
|
|
4
4
|
Summary: Wrapper for Polymatica API
|
|
5
5
|
Home-page: https://slsoft.ru/products/polymatica/
|
|
6
6
|
Author: Polymatica Rus LLC
|
|
@@ -14,9 +14,12 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
15
|
License-File: LICENSE.txt
|
|
16
16
|
Requires-Dist: setuptools
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
17
|
+
Requires-Dist: numpy==1.19.5; python_version < "3.9"
|
|
18
|
+
Requires-Dist: numpy>1.21.1; python_version >= "3.9"
|
|
19
|
+
Requires-Dist: pandas<=1.2.5,>=1.1.5; python_version < "3.9"
|
|
20
|
+
Requires-Dist: pandas>2.0.0; python_version >= "3.9"
|
|
21
|
+
Requires-Dist: requests>=2.27.1
|
|
22
|
+
Requires-Dist: pydantic==1.9.2
|
|
20
23
|
Requires-Dist: packaging
|
|
21
24
|
Dynamic: author
|
|
22
25
|
Dynamic: author-email
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: polyapi
|
|
3
|
-
Version: 5.9.
|
|
3
|
+
Version: 5.9.19
|
|
4
4
|
Summary: Wrapper for Polymatica API
|
|
5
5
|
Home-page: https://slsoft.ru/products/polymatica/
|
|
6
6
|
Author: Polymatica Rus LLC
|
|
@@ -14,9 +14,12 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
15
|
License-File: LICENSE.txt
|
|
16
16
|
Requires-Dist: setuptools
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist:
|
|
19
|
-
Requires-Dist:
|
|
17
|
+
Requires-Dist: numpy==1.19.5; python_version < "3.9"
|
|
18
|
+
Requires-Dist: numpy>1.21.1; python_version >= "3.9"
|
|
19
|
+
Requires-Dist: pandas<=1.2.5,>=1.1.5; python_version < "3.9"
|
|
20
|
+
Requires-Dist: pandas>2.0.0; python_version >= "3.9"
|
|
21
|
+
Requires-Dist: requests>=2.27.1
|
|
22
|
+
Requires-Dist: pydantic==1.9.2
|
|
20
23
|
Requires-Dist: packaging
|
|
21
24
|
Dynamic: author
|
|
22
25
|
Dynamic: author-email
|