polyapi 5.9.16__tar.gz → 5.9.18__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.
Files changed (52) hide show
  1. {polyapi-5.9.16 → polyapi-5.9.18}/PKG-INFO +1 -1
  2. {polyapi-5.9.16 → polyapi-5.9.18}/polyapi.egg-info/PKG-INFO +1 -1
  3. {polyapi-5.9.16 → polyapi-5.9.18}/polyapi.egg-info/SOURCES.txt +3 -1
  4. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/business_scenarios.py +470 -139
  5. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/common/consts.py +3 -1
  6. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/common/params_models.py +9 -7
  7. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/error_handler.py +141 -39
  8. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/graph_interface.py +15 -0
  9. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/helper.py +95 -5
  10. {polyapi-5.9.16 → polyapi-5.9.18}/pyproject.toml +6 -1
  11. {polyapi-5.9.16 → polyapi-5.9.18}/setup.py +2 -2
  12. polyapi-5.9.18/tests/test_create_sphere.py +735 -0
  13. polyapi-5.9.18/tests/test_update_cube.py +594 -0
  14. {polyapi-5.9.16 → polyapi-5.9.18}/LICENSE.txt +0 -0
  15. {polyapi-5.9.16 → polyapi-5.9.18}/README.md +0 -0
  16. {polyapi-5.9.16 → polyapi-5.9.18}/polyapi.egg-info/dependency_links.txt +0 -0
  17. {polyapi-5.9.16 → polyapi-5.9.18}/polyapi.egg-info/requires.txt +0 -0
  18. {polyapi-5.9.16 → polyapi-5.9.18}/polyapi.egg-info/top_level.txt +0 -0
  19. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/__init__.py +0 -0
  20. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/authorization.py +0 -0
  21. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/business_logic_doc.py +0 -0
  22. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/commands/__init__.py +0 -0
  23. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/commands/base_command.py +0 -0
  24. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/commands/olap_module.py +0 -0
  25. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/commands/other_modules.py +0 -0
  26. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/common/__init__.py +0 -0
  27. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/common/helper_funcs.py +0 -0
  28. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/exceptions.py +0 -0
  29. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/executor.py +0 -0
  30. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/__init__.py +0 -0
  31. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/base_graph.py +0 -0
  32. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/__init__.py +0 -0
  33. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/areas.py +0 -0
  34. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/balls.py +0 -0
  35. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/chord.py +0 -0
  36. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/circles.py +0 -0
  37. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/circles_series.py +0 -0
  38. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/corridors.py +0 -0
  39. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/cumulative_areas.py +0 -0
  40. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/cumulative_cylinders.py +0 -0
  41. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/cylinders.py +0 -0
  42. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/graph.py +0 -0
  43. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/lines.py +0 -0
  44. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/pies.py +0 -0
  45. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/point.py +0 -0
  46. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/point_series.py +0 -0
  47. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/pools.py +0 -0
  48. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/pools_3d.py +0 -0
  49. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/radar.py +0 -0
  50. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/sankey.py +0 -0
  51. {polyapi-5.9.16 → polyapi-5.9.18}/polymatica/graph/types/surface.py +0 -0
  52. {polyapi-5.9.16 → polyapi-5.9.18}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polyapi
3
- Version: 5.9.16
3
+ Version: 5.9.18
4
4
  Summary: Wrapper for Polymatica API
5
5
  Home-page: https://slsoft.ru/products/polymatica/
6
6
  Author: Polymatica Rus LLC
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polyapi
3
- Version: 5.9.16
3
+ Version: 5.9.18
4
4
  Summary: Wrapper for Polymatica API
5
5
  Home-page: https://slsoft.ru/products/polymatica/
6
6
  Author: Polymatica Rus LLC
@@ -46,4 +46,6 @@ polymatica/graph/types/pools.py
46
46
  polymatica/graph/types/pools_3d.py
47
47
  polymatica/graph/types/radar.py
48
48
  polymatica/graph/types/sankey.py
49
- polymatica/graph/types/surface.py
49
+ polymatica/graph/types/surface.py
50
+ tests/test_create_sphere.py
51
+ tests/test_update_cube.py