cosmotech-acceleration-library 1.0.0__py3-none-any.whl → 1.0.1__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.
Files changed (67) hide show
  1. cosmotech/coal/__init__.py +1 -1
  2. cosmotech/coal/azure/adx/runner.py +1 -3
  3. cosmotech/coal/postgresql/runner.py +3 -1
  4. cosmotech/coal/postgresql/store.py +3 -0
  5. cosmotech/csm_data/commands/adx_send_data.py +7 -7
  6. cosmotech/csm_data/commands/adx_send_runnerdata.py +10 -10
  7. cosmotech/csm_data/commands/api/api.py +1 -1
  8. cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py +23 -11
  9. cosmotech/csm_data/commands/api/rds_load_csv.py +8 -8
  10. cosmotech/csm_data/commands/api/rds_send_csv.py +6 -6
  11. cosmotech/csm_data/commands/api/rds_send_store.py +6 -6
  12. cosmotech/csm_data/commands/api/run_load_data.py +10 -10
  13. cosmotech/csm_data/commands/api/runtemplate_load_handler.py +5 -5
  14. cosmotech/csm_data/commands/api/tdl_load_files.py +6 -6
  15. cosmotech/csm_data/commands/api/tdl_send_files.py +7 -7
  16. cosmotech/csm_data/commands/api/wsf_load_file.py +5 -5
  17. cosmotech/csm_data/commands/api/wsf_send_file.py +6 -6
  18. cosmotech/csm_data/commands/az_storage_upload.py +6 -6
  19. cosmotech/csm_data/commands/s3_bucket_delete.py +8 -8
  20. cosmotech/csm_data/commands/s3_bucket_download.py +9 -9
  21. cosmotech/csm_data/commands/s3_bucket_upload.py +10 -10
  22. cosmotech/csm_data/commands/store/dump_to_azure.py +9 -9
  23. cosmotech/csm_data/commands/store/dump_to_postgresql.py +22 -10
  24. cosmotech/csm_data/commands/store/dump_to_s3.py +10 -10
  25. cosmotech/csm_data/commands/store/list_tables.py +3 -3
  26. cosmotech/csm_data/commands/store/load_csv_folder.py +3 -3
  27. cosmotech/csm_data/commands/store/load_from_singlestore.py +8 -8
  28. cosmotech/csm_data/commands/store/reset.py +2 -2
  29. cosmotech/csm_data/commands/store/store.py +1 -1
  30. cosmotech/csm_data/main.py +8 -6
  31. cosmotech/csm_data/utils/decorators.py +1 -1
  32. cosmotech/translation/csm_data/en-US/csm_data/commands/api/api.yml +8 -0
  33. cosmotech/translation/csm_data/en-US/csm_data/commands/api/postgres_send_runner_metadata.yml +17 -0
  34. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_load_csv.yml +13 -0
  35. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_csv.yml +12 -0
  36. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_store.yml +12 -0
  37. cosmotech/translation/csm_data/en-US/csm_data/commands/api/run_load_data.yml +15 -0
  38. cosmotech/translation/csm_data/en-US/csm_data/commands/api/runtemplate_load_handler.yml +7 -0
  39. cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_load_files.yml +14 -0
  40. cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_send_files.yml +18 -0
  41. cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_load_file.yml +10 -0
  42. cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_send_file.yml +12 -0
  43. cosmotech/translation/csm_data/en-US/csm_data/commands/main.yml +9 -0
  44. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_data.yml +8 -0
  45. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_runnerdata.yml +15 -0
  46. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/az_storage_upload.yml +8 -0
  47. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_delete.yml +17 -0
  48. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_download.yml +18 -0
  49. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_upload.yml +21 -0
  50. cosmotech/translation/csm_data/en-US/csm_data/commands/storage/storage.yml +4 -0
  51. cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_azure.yml +23 -0
  52. cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_postgresql.yml +20 -0
  53. cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_s3.yml +26 -0
  54. cosmotech/translation/csm_data/en-US/csm_data/commands/store/list_tables.yml +5 -0
  55. cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_csv_folder.yml +5 -0
  56. cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_from_singlestore.yml +16 -0
  57. cosmotech/translation/csm_data/en-US/csm_data/commands/store/reset.yml +4 -0
  58. cosmotech/translation/csm_data/en-US/csm_data/commands/store/store.yml +4 -0
  59. cosmotech/translation/csm_data/en-US/csm_data/commons/decorators.yml +2 -0
  60. cosmotech/translation/csm_data/en-US/csm_data/commons/version.yml +4 -0
  61. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/METADATA +7 -10
  62. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/RECORD +66 -38
  63. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/WHEEL +1 -1
  64. cosmotech/translation/csm_data/en-US/csm-data.yml +0 -434
  65. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/entry_points.txt +0 -0
  66. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/licenses/LICENSE +0 -0
  67. {cosmotech_acceleration_library-1.0.0.dist-info → cosmotech_acceleration_library-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,4 @@
1
+ description: |
2
+ Running this command will reset the state of your store
3
+ parameters:
4
+ store_folder: The folder containing the store files
@@ -0,0 +1,4 @@
1
+ description: |
2
+ CoAL Data Store command group
3
+
4
+ This group of commands will give you helper commands to interact with the datastore
@@ -0,0 +1,2 @@
1
+ parameters:
2
+ web_help: Open the web documentation
@@ -0,0 +1,4 @@
1
+ message: |
2
+ Cosmo Tech Data Interface {version}
3
+
4
+ Copyright © 2023-2025 Cosmo Tech
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cosmotech_acceleration_library
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Acceleration libraries for CosmoTech cloud based solution development
5
5
  Author-email: Cosmo Tech <platform@cosmotech.com>
6
6
  Project-URL: Homepage, https://www.cosmotech.com
@@ -15,14 +15,12 @@ Requires-Dist: azure-kusto-data~=4.4.1
15
15
  Requires-Dist: azure-kusto-ingest~=4.4.1
16
16
  Requires-Dist: tenacity~=8.3.0
17
17
  Requires-Dist: python-keycloak~=4.7.3
18
- Requires-Dist: redis==4.4.4
19
- Requires-Dist: redisgraph_bulk_loader==0.10.2
20
18
  Requires-Dist: cosmotech-api~=3.2
21
19
  Requires-Dist: boto3~=1.35.19
22
20
  Requires-Dist: requests~=2.32.3
23
21
  Requires-Dist: singlestoredb~=1.10.0
24
22
  Requires-Dist: cosmotech-run-orchestrator~=2.0.0
25
- Requires-Dist: pyarrow~=17.0.0
23
+ Requires-Dist: pyarrow~=20.0.0
26
24
  Requires-Dist: adbc-driver-manager~=1.1.0
27
25
  Requires-Dist: adbc-driver-sqlite~=1.1.0
28
26
  Requires-Dist: adbc-driver-postgresql~=1.1.0
@@ -36,18 +34,17 @@ Requires-Dist: python-dateutil~=2.8
36
34
  Requires-Dist: rich~=13.7
37
35
  Requires-Dist: setuptools
38
36
  Provides-Extra: doc
39
- Requires-Dist: mkdocs~=1.5.3; extra == "doc"
37
+ Requires-Dist: mkdocs~=1.6.1; extra == "doc"
40
38
  Requires-Dist: mkdocs-click~=0.8.1; extra == "doc"
41
39
  Requires-Dist: mkdocs-gen-files~=0.5.0; extra == "doc"
42
40
  Requires-Dist: mkdocstrings[python]~=0.28.2; extra == "doc"
43
- Requires-Dist: mkdocs-awesome-pages-plugin~=2.9.3; extra == "doc"
41
+ Requires-Dist: mkdocs-awesome-nav~=3.1.2; extra == "doc"
44
42
  Requires-Dist: pymdown-extensions~=10.7; extra == "doc"
45
43
  Requires-Dist: requirements-parser~=0.11.0; extra == "doc"
46
- Requires-Dist: setuptools~=70.3.0; extra == "doc"
47
44
  Requires-Dist: mike~=2.0.0; extra == "doc"
48
45
  Requires-Dist: griffe~=1.5.7; extra == "doc"
49
46
  Requires-Dist: mkdocs-include-dir-to-nav~=1.2.0; extra == "doc"
50
- Requires-Dist: mkdocs-material[imaging]~=9.5.18; extra == "doc"
47
+ Requires-Dist: mkdocs-material[imaging]~=9.6.14; extra == "doc"
51
48
  Requires-Dist: mkdocs-table-reader-plugin~=2.0.3; extra == "doc"
52
49
  Requires-Dist: mkdocs-literate-nav~=0.6.1; extra == "doc"
53
50
  Provides-Extra: test
@@ -57,8 +54,8 @@ Requires-Dist: pytest-cov; extra == "test"
57
54
  Provides-Extra: extra
58
55
  Requires-Dist: pandas~=2.2.2; extra == "extra"
59
56
  Provides-Extra: dev
60
- Requires-Dist: black==23.3.0; extra == "dev"
61
- Requires-Dist: pre-commit==3.3.2; extra == "dev"
57
+ Requires-Dist: black~=24.3.0; extra == "dev"
58
+ Requires-Dist: pre-commit~=3.3.2; extra == "dev"
62
59
  Provides-Extra: all
63
60
  Requires-Dist: CosmoTech_Acceleration_Library[dev,doc,extra,test]; extra == "all"
64
61
  Dynamic: license-file
@@ -1,4 +1,4 @@
1
- cosmotech/coal/__init__.py,sha256=Y_aKMmuWT_V738Am-MUQxSx7LLE4tW980MSeC1ul0ro,436
1
+ cosmotech/coal/__init__.py,sha256=zO8tP0wjAUWBIzrSAjLECJhE7uA6CXq8k8i15ZII8SQ,436
2
2
  cosmotech/coal/aws/__init__.py,sha256=DtkCZ8Y7q5HIKui9YXCV1JXO8rRMitd0uieiW2InuXY,761
3
3
  cosmotech/coal/aws/s3.py,sha256=oq1Sl_6kk_u0Jai55p7XRfKYAK0I6y3va4IfeWNhpEE,7820
4
4
  cosmotech/coal/azure/__init__.py,sha256=1SmwP1y7quGq9cWqiWxJy1XDjWM8sAc3f63ztBnYujQ,796
@@ -9,7 +9,7 @@ cosmotech/coal/azure/adx/__init__.py,sha256=zRYssRscq30jJ1q1CPUK6S3Sq4EBqZ_uL0M1
9
9
  cosmotech/coal/azure/adx/auth.py,sha256=BafFyLaHuiC3M0Mzp4ZcVAzzG1GUDsnOGn1Chf_vVMk,4755
10
10
  cosmotech/coal/azure/adx/ingestion.py,sha256=--hOB5iUWe-RwXpFC5EaBDmWbJrIAtYula59wrUzCM8,11455
11
11
  cosmotech/coal/azure/adx/query.py,sha256=SHMeGX-TNBfQE_DV-J5lrHxqDXgftYiLCasDhgO79rQ,1870
12
- cosmotech/coal/azure/adx/runner.py,sha256=_rMzpaIYaZh-HDjadz-KiENGLvGlKczxnTaAgzs_J7w,8365
12
+ cosmotech/coal/azure/adx/runner.py,sha256=FDrVaf-KDqHunPIQ7nUt57_-9pLPWXleNREgdHn9qeI,8333
13
13
  cosmotech/coal/azure/adx/store.py,sha256=IFQIi4tCmxL0NyFJhyJnUqbTt3Vwgb77900xcKprGzY,9096
14
14
  cosmotech/coal/azure/adx/tables.py,sha256=hwmiQI8OccNf3Npf8jd2wOF5hL8I2s4IkgTx8jqtSCU,4292
15
15
  cosmotech/coal/azure/adx/utils.py,sha256=nOq4WLTMDs95da-jsWJVYcv2MRcwUMvARv5Z0ivIVUo,2205
@@ -38,8 +38,8 @@ cosmotech/coal/cosmotech_api/runner/parameters.py,sha256=mKRRBPZOD_tPOTyxUAL2o9n
38
38
  cosmotech/coal/csm/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
39
39
  cosmotech/coal/csm/engine/__init__.py,sha256=EG3iArAy3OFGPmClsYXQmb77YYrEkeVC5uwPg_TbAYI,2120
40
40
  cosmotech/coal/postgresql/__init__.py,sha256=766LBZyWCQUI6rlzXDY_C9Yrxg551VX2L4lOuhDiS8w,786
41
- cosmotech/coal/postgresql/runner.py,sha256=pltj7u_qp-erfZtxUPG6srw-tyObHT1Z95JYMbdR2Nc,3522
42
- cosmotech/coal/postgresql/store.py,sha256=h6NCRax354uIAbkmqCqpcm8A6-u2g7uCB-70tTyyChw,3535
41
+ cosmotech/coal/postgresql/runner.py,sha256=lxUDrbwW-YhWgPiEBRMt_I5zR8DfDNJyvbRwzk5ixDU,3647
42
+ cosmotech/coal/postgresql/store.py,sha256=uH1MooLfEDmNVO6KNQDrzUpC7YaLGzfdLt3KqBoD_Go,3643
43
43
  cosmotech/coal/singlestore/__init__.py,sha256=gXQaa8OAHnDcI7iHy-5zzGG7ZqNq-uOtw60qASjwu9I,651
44
44
  cosmotech/coal/singlestore/store.py,sha256=jF3gkg2qW_SrtbVKkBJ-SCtV6ukd2eLnFySOvMZFvMY,3577
45
45
  cosmotech/coal/store/__init__.py,sha256=kWGM9B-Y-M257OYbouJ-1JLES5qecQbGeUBbcgyrsEo,1307
@@ -53,38 +53,38 @@ cosmotech/coal/utils/api.py,sha256=OhuATEWIih4N0t6LH6dsLZHTMkV-Ko7KAk8tyKDxYfo,2
53
53
  cosmotech/coal/utils/logger.py,sha256=oYVj2BtDPji4e4J-KgaDyVcbKiewkq0xey_gQPm74Xc,506
54
54
  cosmotech/coal/utils/postgresql.py,sha256=6gxk3yfkZkaJQbIG-Zxcwo7J3PI29XPLn0VdQimGSH0,8562
55
55
  cosmotech/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
56
- cosmotech/csm_data/main.py,sha256=rbfD_3RLSQFC5xXwV0W1wNiw2mlRO91xShLTpqrUEIg,2251
56
+ cosmotech/csm_data/main.py,sha256=q20Gl1x7DV0gWStnWJUVnhUrvv-TPrUhv3e-5X3TDEM,2424
57
57
  cosmotech/csm_data/commands/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
58
- cosmotech/csm_data/commands/adx_send_data.py,sha256=ABG4X5YuV2HO8mxSF7yIq6lgrXFik0xoIvMNJfWvxD4,2638
59
- cosmotech/csm_data/commands/adx_send_runnerdata.py,sha256=Hk8TL12-5tv-fDyJbLm40VCNVlECnZJjOShTJ4U0118,3713
60
- cosmotech/csm_data/commands/az_storage_upload.py,sha256=tJVNkjF76xx3CamBlHZirS_h_ABxwLasZZs5CSlPBp0,2344
61
- cosmotech/csm_data/commands/s3_bucket_delete.py,sha256=MD2qWxjlsOgxU6T7ptgjeKl83ABqxNPxl4eWkxy6Eic,3026
62
- cosmotech/csm_data/commands/s3_bucket_download.py,sha256=dIki-76N7UvKO7UgLEw6jYRlCNXkS7uFWMh8jKZeY3g,3347
63
- cosmotech/csm_data/commands/s3_bucket_upload.py,sha256=yG11h8ELbr25gs6qUkBUrqYFT8rtLiSiPnW_5K9hSR8,3563
58
+ cosmotech/csm_data/commands/adx_send_data.py,sha256=wKt30RmuS1FdnhgW0mJZVXifnI_YLRLaj4w5DYlPl7s,2638
59
+ cosmotech/csm_data/commands/adx_send_runnerdata.py,sha256=SHZ0RijCnYRrAdCgdbW_YTaN3joihtNtbLzZAICCzJ4,3713
60
+ cosmotech/csm_data/commands/az_storage_upload.py,sha256=7qXhFxftfil72tG23HTvHiW708t4QkM4rymcFJSPCj4,2344
61
+ cosmotech/csm_data/commands/s3_bucket_delete.py,sha256=0k56xKOPp7CRP-OGL5qqETgdCmcSnx6PjiGGE5ha1Bs,3026
62
+ cosmotech/csm_data/commands/s3_bucket_download.py,sha256=vyEmKA2EUbb0glBXI1IXx-GKG6Fgoqys1hZONjb_qpI,3347
63
+ cosmotech/csm_data/commands/s3_bucket_upload.py,sha256=eKIQd-RDwYKjGADYsoMYuT9-I6jYT2-16BH2rVEMbuM,3563
64
64
  cosmotech/csm_data/commands/api/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
65
- cosmotech/csm_data/commands/api/api.py,sha256=UZL_wsanIVmLzah-gjrFYlSyRdvenXzPW5gA46otmRw,2475
66
- cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py,sha256=3ce7kLnS86LJd8YhSYjJoRYEL0WtHSV60p0LYEReVOA,3710
67
- cosmotech/csm_data/commands/api/rds_load_csv.py,sha256=JVbJ9qYJswuHnYQ4OjNuVzzTBO-KJqcQZpNlg_a0fuQ,2757
68
- cosmotech/csm_data/commands/api/rds_send_csv.py,sha256=Aq57WQaS0jIzFuWPvjHCDy1uYfwvCuHbeo-9MOnYrIo,2310
69
- cosmotech/csm_data/commands/api/rds_send_store.py,sha256=4jphfj0-A2dv1M359rQPfgmjOVaih5eDCRTWGvEK_yw,2328
70
- cosmotech/csm_data/commands/api/run_load_data.py,sha256=z0JRoAV-OR06-bGfL_0XCyEIv0vNG5NnF2p2Fmmears,3725
71
- cosmotech/csm_data/commands/api/runtemplate_load_handler.py,sha256=Oxymn4i7hfvUNZVnqkGqydOeFI9pYLJQ_8tnsJe8WlE,2275
72
- cosmotech/csm_data/commands/api/tdl_load_files.py,sha256=yH9LypCzQyVoVvP-BonbbO5TQ_9-VyvczkkjRUTnOpQ,2394
73
- cosmotech/csm_data/commands/api/tdl_send_files.py,sha256=yEJepPmChk4gPYpmhpCqTGS1wP1EaZnMo7J0mqy1Q9A,2474
74
- cosmotech/csm_data/commands/api/wsf_load_file.py,sha256=trOX6V9ghvNoTwANYeuRT-4D0ptwUaN17hTCUQvrjX8,2307
75
- cosmotech/csm_data/commands/api/wsf_send_file.py,sha256=POWrjXwEqg9jKf3Ne7KvIEfIX53GXJUEwrm_3Sw-gtw,2191
65
+ cosmotech/csm_data/commands/api/api.py,sha256=rzxb7zX_CJCzrOUxIN75mwARmQWhCmha4ogh1r3JAmg,2479
66
+ cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py,sha256=ZRcTICk_3DKyl3Gic-L6mqfWeT8hEcU5AvY6c8UQ8_E,4076
67
+ cosmotech/csm_data/commands/api/rds_load_csv.py,sha256=9GMK1ViazuZIuwfuRj6SyhqMa39Oc0b0yRtX60_G0mw,2757
68
+ cosmotech/csm_data/commands/api/rds_send_csv.py,sha256=_YeKCnKHEtxFluGRjRqZKdUMVn2bO3pAGBJQFYHUj7Y,2310
69
+ cosmotech/csm_data/commands/api/rds_send_store.py,sha256=7_pgWtHfmFF-evuO7EOzFX6N7V5d2EsO-KG46B-F13Q,2328
70
+ cosmotech/csm_data/commands/api/run_load_data.py,sha256=oRnoIj2EXPG8Q2fcvrzt69eX4LNCVCO612qejsOivBM,3725
71
+ cosmotech/csm_data/commands/api/runtemplate_load_handler.py,sha256=qWS0I1fNN6VFx7lHJoOWCv30WGI2q32B9_Zyr5KpBSM,2275
72
+ cosmotech/csm_data/commands/api/tdl_load_files.py,sha256=O4FsRNutyEvdDUBYElLxrzEhJcXVyO9hpOdiM6FEQ5E,2394
73
+ cosmotech/csm_data/commands/api/tdl_send_files.py,sha256=QXToEHbZvEhdh88xHamXj9mPQo1Hm2UPxaMkgNEspaw,2474
74
+ cosmotech/csm_data/commands/api/wsf_load_file.py,sha256=Iz3Do-pBJBTDe2P5QwINRQCyeWGHVKjh_lI610WFi1g,2307
75
+ cosmotech/csm_data/commands/api/wsf_send_file.py,sha256=TlDMObWGhXgX1PqIeg5OX832Lps6q5fdC_2GG5Hx3q0,2191
76
76
  cosmotech/csm_data/commands/store/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
77
- cosmotech/csm_data/commands/store/dump_to_azure.py,sha256=EoLOvV455KWIM14S57r0rB50GcXiNSUb6ZIZWY3JuPY,3313
78
- cosmotech/csm_data/commands/store/dump_to_postgresql.py,sha256=S4_TECnTkV8dAVGP5oLqsw87ue5VjJxiS3tPQ0fXsO0,3241
79
- cosmotech/csm_data/commands/store/dump_to_s3.py,sha256=iluAUu8GhfFySlcrDOEP73_dIC8PWvelMPYcxKnuP10,5248
80
- cosmotech/csm_data/commands/store/list_tables.py,sha256=srePDwGAhmX8J3qixWJHnZ0bYLOd50HAzygoSd30UHI,1860
81
- cosmotech/csm_data/commands/store/load_csv_folder.py,sha256=Io8knlxrtq7w-SOjOL0XgVvC0smeyUrU54QsJ6EbBVI,1717
82
- cosmotech/csm_data/commands/store/load_from_singlestore.py,sha256=TGmD8rJE5Q-5SLyEuM5ReebuH7eJjRFzD4F_qmoKbkU,3104
83
- cosmotech/csm_data/commands/store/reset.py,sha256=XLn3FtiD0WUHapWLxGRlCrT7hFbrYi5Ak4FbcFvhM4c,1237
84
- cosmotech/csm_data/commands/store/store.py,sha256=-tlkGOb4yagP1IrSLz4JP5pVcgBBz-j_V7C7_0soUJc,1740
77
+ cosmotech/csm_data/commands/store/dump_to_azure.py,sha256=5nnK7LUATRTlfX8tmFRLBmkD15bgG37Lyn7fEuPJiNE,3313
78
+ cosmotech/csm_data/commands/store/dump_to_postgresql.py,sha256=3ZfIwIfLXYeBb6SwBSV6-CiWdid8Udht4ILWeZNdLWM,3596
79
+ cosmotech/csm_data/commands/store/dump_to_s3.py,sha256=TUOTtIsx-n8c2hHglQ8yr6diqpS-LYKF41a8RzW_qkc,5248
80
+ cosmotech/csm_data/commands/store/list_tables.py,sha256=epgVJAaP8QfSsEuL9n5S8smsfIxK-Cr0bLv88FAnkWw,1860
81
+ cosmotech/csm_data/commands/store/load_csv_folder.py,sha256=gDKCxWIpXqhtRvlvRMM7SmyJ9_YHQ1UZHuA6NYdPTZA,1717
82
+ cosmotech/csm_data/commands/store/load_from_singlestore.py,sha256=dWZ4jIKl8wsnOX_6qqtyQmkFQhLgjUAOZWab-sGzQ2g,3104
83
+ cosmotech/csm_data/commands/store/reset.py,sha256=3B0E0m0nCy3vwai_D5sWWddMZWuWkWnaL1tvgR6L5Ow,1237
84
+ cosmotech/csm_data/commands/store/store.py,sha256=_DA4QwQhfTs8bGmbLDHX_8cZZEv4FzeECuTE7d59iUc,1746
85
85
  cosmotech/csm_data/utils/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
86
86
  cosmotech/csm_data/utils/click.py,sha256=S_85cbKh3R86-FZVjTK7IXZnmp4ETjKo6K8gbK3HCgs,848
87
- cosmotech/csm_data/utils/decorators.py,sha256=QTxnOSPqIDHTlI2UZ5dXjGGseguIDeK42syFRtg6zEk,2450
87
+ cosmotech/csm_data/utils/decorators.py,sha256=dTcPRTYqY18mc8Ql4Qwd3gU7BxbNxfeKskQdVIsE3-g,2504
88
88
  cosmotech/orchestrator_plugins/csm-data/__init__.py,sha256=UPzNgaNBMoBaxSlnofxl988dAswMp_tv8DzaR_IxkiE,519
89
89
  cosmotech/orchestrator_plugins/csm-data/templates/api/postgres_send_runner_metadata.json,sha256=alXzvOa985PvN5nf3uoTsFXgY29EJWeK94CcBjoLFUk,1085
90
90
  cosmotech/orchestrator_plugins/csm-data/templates/api/rds_load_csv.json,sha256=nM2hVFqE6Mja6u6becVStJTD8POcu76Ys0oW-mU6-TU,819
@@ -132,10 +132,38 @@ cosmotech/translation/coal/en-US/coal/services/dataset.yml,sha256=J-lP802jTb7J6C
132
132
  cosmotech/translation/coal/en-US/coal/services/postgresql.yml,sha256=tRGNTTayyoxEHVyM-nzudEFdQ5HUeRIHPWIuvFmJGfM,1774
133
133
  cosmotech/translation/coal/en-US/coal/services/s3.yml,sha256=362wt7SdOu-MyMj9MgjQNTNWzIq-RJ9rUqc2VKljGFE,482
134
134
  cosmotech/translation/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
135
- cosmotech/translation/csm_data/en-US/csm-data.yml,sha256=-JBxRtO24_XeozLBm3VSwYcfgzeZOiwT-5Fh_-dDLEw,20450
136
- cosmotech_acceleration_library-1.0.0.dist-info/licenses/LICENSE,sha256=JXKHOQtyObmafNbQlfPYc4HkKjU9FzAP27b2qRTXNM8,1195
137
- cosmotech_acceleration_library-1.0.0.dist-info/METADATA,sha256=TtBM5HI7Gf9Y3ntDIotVX-HMTBbAVxYuj_E_tfwypJg,9493
138
- cosmotech_acceleration_library-1.0.0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
139
- cosmotech_acceleration_library-1.0.0.dist-info/entry_points.txt,sha256=HWRqJurKuBUgqFe4jmjIAQrs768Nbb8ZTdRDLbuKM5Q,58
140
- cosmotech_acceleration_library-1.0.0.dist-info/top_level.txt,sha256=t2pzb8mpMUfHTa9l2SjWP0rRB8XVRjBdQK5nLx9XDDo,10
141
- cosmotech_acceleration_library-1.0.0.dist-info/RECORD,,
135
+ cosmotech/translation/csm_data/en-US/csm_data/commands/main.yml,sha256=3XbXR5_Uo7PxJOWzm7XRMvPVxK-fzOL4FxWWY7rX3eg,396
136
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/api.yml,sha256=eMT4s1H9LuNUh_sAlnEtg7Co4ie3bFfB1vkwnLW28dQ,340
137
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/postgres_send_runner_metadata.yml,sha256=avckcrp2aYz7rzGCKEdL81hwHDVbcUn2csQ_krKLcaM,844
138
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_load_csv.yml,sha256=jaCmdHY0fJp9Sh2PcOizMyPIdvZU2iTIoSLNdfuLCXE,668
139
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_csv.yml,sha256=0I9MAGgdCmNHGN3sdRVSWzEobAABFsb9qVG_l0Vk7Sg,580
140
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_store.yml,sha256=9vRnrqYYzSYMPNzR-Q7Gw5G7LOWlEd5GWepSyzg49i4,574
141
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/run_load_data.yml,sha256=k5J3HTA8vCmI_7CFHvMP51EAbmefubuoEhXZf2V3XDo,765
142
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/runtemplate_load_handler.yml,sha256=9jvMa6fb99CPzTMx7nnuoNNzJw7_7rapee7P80Plxjs,353
143
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_load_files.yml,sha256=ko4Nw96w6vBhE-68swd9h4edWgXCWIfMGqYc8Fvh2LM,569
144
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_send_files.yml,sha256=13eacNdU6i92XemHyx-bzIdXbQUIs6eg2YiT3SxivyM,836
145
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_load_file.yml,sha256=cnR_0PMkbrj8GROgvIUyeLXiB90IBbkcTvM9WJDEM0k,511
146
+ cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_send_file.yml,sha256=yvsD364GND1jLe_SJxuNXjDgGZFGlJlC5xUTRqV0fr0,632
147
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_data.yml,sha256=oNQMHhHMRTl7EfFLuEy5agctzgwGHsyKzAu6hlSUyU4,448
148
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_runnerdata.yml,sha256=_IAZO1VVc2eVznA2VLb0_o3sEc8cSO-xw3H90pUTVGg,884
149
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/az_storage_upload.yml,sha256=KmVGI1RwFfFQnMUPAlRTJ6K3OXAYTy7GAitZfcWKdrw,473
150
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_delete.yml,sha256=GUCNXpiRui-BRwP8A7M4dXGr3LMBJw99z-b1ToFuESY,792
151
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_download.yml,sha256=GQPNFcdB0hIldX0kDBFNzHs11RckPBAA697BAJugZx8,872
152
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_upload.yml,sha256=jIrdisG9FcvTrCM5jvTaCYccKKXtah7huSvXDK8bdEA,1100
153
+ cosmotech/translation/csm_data/en-US/csm_data/commands/storage/storage.yml,sha256=NZrRzfnOpXrX5wBpEqr40CCmNGP5MXJ-aO7ks1YM58s,144
154
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_azure.yml,sha256=JqT9Cu1m4CLmZWvXTHAIS3xS8rK_BeKL041OEliBbn8,1299
155
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_postgresql.yml,sha256=QEQVHuXrSMsT2uOkiF-oMYlir1mINXXL-Irro_Ra3RM,900
156
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_s3.yml,sha256=7pbLObdjZjcKeSfYI_3oAzp9AZOrwT5WiMcLOTj5rCc,1268
157
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/list_tables.yml,sha256=-x8zwCjAHILFaJv7VLPskipSoQTwmI7jUsxlx6_OKlc,195
158
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_csv_folder.yml,sha256=9HjW9tOq5o31jmADp_QIync7G74c6XGiPqofXh8pvv8,228
159
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_from_singlestore.yml,sha256=_OUXlxC_wi-GPgHU7EVdU9g0WIdblVpEA4WIzw4aQcQ,824
160
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/reset.yml,sha256=JMspZ25Q2HDpH8MYqUaQcveUnCgdH21RmfTCrPf2gW8,139
161
+ cosmotech/translation/csm_data/en-US/csm_data/commands/store/store.yml,sha256=N1Q8483gqJADaCe30S1M3Rj0tMJiuQiJH70-VK2x2m4,134
162
+ cosmotech/translation/csm_data/en-US/csm_data/commons/decorators.yml,sha256=Iu59NWMfYlZZf9uUhOiLkIEGa4GY5p0nZ6vG06Xvu7k,51
163
+ cosmotech/translation/csm_data/en-US/csm_data/commons/version.yml,sha256=7jtCV3O1S6pGjiJa63XpgPDTafjfBS0xmEVRpYNvfDg,86
164
+ cosmotech_acceleration_library-1.0.1.dist-info/licenses/LICENSE,sha256=JXKHOQtyObmafNbQlfPYc4HkKjU9FzAP27b2qRTXNM8,1195
165
+ cosmotech_acceleration_library-1.0.1.dist-info/METADATA,sha256=94bKFXrsdSrP6ZBfdcJeAayVOvWpZBE1OIOw072fObc,9360
166
+ cosmotech_acceleration_library-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
167
+ cosmotech_acceleration_library-1.0.1.dist-info/entry_points.txt,sha256=HWRqJurKuBUgqFe4jmjIAQrs768Nbb8ZTdRDLbuKM5Q,58
168
+ cosmotech_acceleration_library-1.0.1.dist-info/top_level.txt,sha256=t2pzb8mpMUfHTa9l2SjWP0rRB8XVRjBdQK5nLx9XDDo,10
169
+ cosmotech_acceleration_library-1.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5