cosmotech-acceleration-library 1.0.0__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 (141) hide show
  1. cosmotech/coal/__init__.py +8 -0
  2. cosmotech/coal/aws/__init__.py +23 -0
  3. cosmotech/coal/aws/s3.py +235 -0
  4. cosmotech/coal/azure/__init__.py +23 -0
  5. cosmotech/coal/azure/adx/__init__.py +26 -0
  6. cosmotech/coal/azure/adx/auth.py +125 -0
  7. cosmotech/coal/azure/adx/ingestion.py +329 -0
  8. cosmotech/coal/azure/adx/query.py +56 -0
  9. cosmotech/coal/azure/adx/runner.py +217 -0
  10. cosmotech/coal/azure/adx/store.py +255 -0
  11. cosmotech/coal/azure/adx/tables.py +118 -0
  12. cosmotech/coal/azure/adx/utils.py +71 -0
  13. cosmotech/coal/azure/blob.py +109 -0
  14. cosmotech/coal/azure/functions.py +72 -0
  15. cosmotech/coal/azure/storage.py +74 -0
  16. cosmotech/coal/cosmotech_api/__init__.py +36 -0
  17. cosmotech/coal/cosmotech_api/connection.py +96 -0
  18. cosmotech/coal/cosmotech_api/dataset/__init__.py +26 -0
  19. cosmotech/coal/cosmotech_api/dataset/converters.py +164 -0
  20. cosmotech/coal/cosmotech_api/dataset/download/__init__.py +19 -0
  21. cosmotech/coal/cosmotech_api/dataset/download/adt.py +119 -0
  22. cosmotech/coal/cosmotech_api/dataset/download/common.py +140 -0
  23. cosmotech/coal/cosmotech_api/dataset/download/file.py +216 -0
  24. cosmotech/coal/cosmotech_api/dataset/download/twingraph.py +188 -0
  25. cosmotech/coal/cosmotech_api/dataset/utils.py +132 -0
  26. cosmotech/coal/cosmotech_api/parameters.py +48 -0
  27. cosmotech/coal/cosmotech_api/run.py +25 -0
  28. cosmotech/coal/cosmotech_api/run_data.py +173 -0
  29. cosmotech/coal/cosmotech_api/run_template.py +108 -0
  30. cosmotech/coal/cosmotech_api/runner/__init__.py +28 -0
  31. cosmotech/coal/cosmotech_api/runner/data.py +38 -0
  32. cosmotech/coal/cosmotech_api/runner/datasets.py +364 -0
  33. cosmotech/coal/cosmotech_api/runner/download.py +146 -0
  34. cosmotech/coal/cosmotech_api/runner/metadata.py +42 -0
  35. cosmotech/coal/cosmotech_api/runner/parameters.py +157 -0
  36. cosmotech/coal/cosmotech_api/twin_data_layer.py +512 -0
  37. cosmotech/coal/cosmotech_api/workspace.py +127 -0
  38. cosmotech/coal/csm/__init__.py +6 -0
  39. cosmotech/coal/csm/engine/__init__.py +47 -0
  40. cosmotech/coal/postgresql/__init__.py +22 -0
  41. cosmotech/coal/postgresql/runner.py +93 -0
  42. cosmotech/coal/postgresql/store.py +98 -0
  43. cosmotech/coal/singlestore/__init__.py +17 -0
  44. cosmotech/coal/singlestore/store.py +100 -0
  45. cosmotech/coal/store/__init__.py +42 -0
  46. cosmotech/coal/store/csv.py +44 -0
  47. cosmotech/coal/store/native_python.py +25 -0
  48. cosmotech/coal/store/pandas.py +26 -0
  49. cosmotech/coal/store/pyarrow.py +23 -0
  50. cosmotech/coal/store/store.py +79 -0
  51. cosmotech/coal/utils/__init__.py +18 -0
  52. cosmotech/coal/utils/api.py +68 -0
  53. cosmotech/coal/utils/logger.py +10 -0
  54. cosmotech/coal/utils/postgresql.py +236 -0
  55. cosmotech/csm_data/__init__.py +6 -0
  56. cosmotech/csm_data/commands/__init__.py +6 -0
  57. cosmotech/csm_data/commands/adx_send_data.py +92 -0
  58. cosmotech/csm_data/commands/adx_send_runnerdata.py +119 -0
  59. cosmotech/csm_data/commands/api/__init__.py +6 -0
  60. cosmotech/csm_data/commands/api/api.py +50 -0
  61. cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py +119 -0
  62. cosmotech/csm_data/commands/api/rds_load_csv.py +90 -0
  63. cosmotech/csm_data/commands/api/rds_send_csv.py +74 -0
  64. cosmotech/csm_data/commands/api/rds_send_store.py +74 -0
  65. cosmotech/csm_data/commands/api/run_load_data.py +120 -0
  66. cosmotech/csm_data/commands/api/runtemplate_load_handler.py +66 -0
  67. cosmotech/csm_data/commands/api/tdl_load_files.py +76 -0
  68. cosmotech/csm_data/commands/api/tdl_send_files.py +82 -0
  69. cosmotech/csm_data/commands/api/wsf_load_file.py +66 -0
  70. cosmotech/csm_data/commands/api/wsf_send_file.py +68 -0
  71. cosmotech/csm_data/commands/az_storage_upload.py +76 -0
  72. cosmotech/csm_data/commands/s3_bucket_delete.py +107 -0
  73. cosmotech/csm_data/commands/s3_bucket_download.py +118 -0
  74. cosmotech/csm_data/commands/s3_bucket_upload.py +128 -0
  75. cosmotech/csm_data/commands/store/__init__.py +6 -0
  76. cosmotech/csm_data/commands/store/dump_to_azure.py +120 -0
  77. cosmotech/csm_data/commands/store/dump_to_postgresql.py +107 -0
  78. cosmotech/csm_data/commands/store/dump_to_s3.py +169 -0
  79. cosmotech/csm_data/commands/store/list_tables.py +48 -0
  80. cosmotech/csm_data/commands/store/load_csv_folder.py +43 -0
  81. cosmotech/csm_data/commands/store/load_from_singlestore.py +96 -0
  82. cosmotech/csm_data/commands/store/reset.py +31 -0
  83. cosmotech/csm_data/commands/store/store.py +37 -0
  84. cosmotech/csm_data/main.py +57 -0
  85. cosmotech/csm_data/utils/__init__.py +6 -0
  86. cosmotech/csm_data/utils/click.py +18 -0
  87. cosmotech/csm_data/utils/decorators.py +75 -0
  88. cosmotech/orchestrator_plugins/csm-data/__init__.py +11 -0
  89. cosmotech/orchestrator_plugins/csm-data/templates/api/postgres_send_runner_metadata.json +40 -0
  90. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_load_csv.json +27 -0
  91. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_csv.json +27 -0
  92. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_store.json +27 -0
  93. cosmotech/orchestrator_plugins/csm-data/templates/api/run_load_data.json +30 -0
  94. cosmotech/orchestrator_plugins/csm-data/templates/api/runtemplate_load_handler.json +27 -0
  95. cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_load_files.json +32 -0
  96. cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_send_files.json +27 -0
  97. cosmotech/orchestrator_plugins/csm-data/templates/api/try_api_connection.json +9 -0
  98. cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_load_file.json +36 -0
  99. cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_send_file.json +36 -0
  100. cosmotech/orchestrator_plugins/csm-data/templates/main/adx_send_runnerdata.json +29 -0
  101. cosmotech/orchestrator_plugins/csm-data/templates/main/az_storage_upload.json +25 -0
  102. cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_delete.json +31 -0
  103. cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_download.json +34 -0
  104. cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_upload.json +35 -0
  105. cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_azure.json +35 -0
  106. cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_postgresql.json +34 -0
  107. cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_s3.json +36 -0
  108. cosmotech/orchestrator_plugins/csm-data/templates/store/store_list_tables.json +15 -0
  109. cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_csv_folder.json +18 -0
  110. cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_from_singlestore.json +34 -0
  111. cosmotech/orchestrator_plugins/csm-data/templates/store/store_reset.json +15 -0
  112. cosmotech/translation/coal/__init__.py +6 -0
  113. cosmotech/translation/coal/en-US/coal/common/data_transfer.yml +6 -0
  114. cosmotech/translation/coal/en-US/coal/common/errors.yml +9 -0
  115. cosmotech/translation/coal/en-US/coal/common/file_operations.yml +6 -0
  116. cosmotech/translation/coal/en-US/coal/common/progress.yml +6 -0
  117. cosmotech/translation/coal/en-US/coal/common/timing.yml +5 -0
  118. cosmotech/translation/coal/en-US/coal/common/validation.yml +8 -0
  119. cosmotech/translation/coal/en-US/coal/cosmotech_api/connection.yml +10 -0
  120. cosmotech/translation/coal/en-US/coal/cosmotech_api/run_data.yml +2 -0
  121. cosmotech/translation/coal/en-US/coal/cosmotech_api/run_template.yml +8 -0
  122. cosmotech/translation/coal/en-US/coal/cosmotech_api/runner.yml +16 -0
  123. cosmotech/translation/coal/en-US/coal/cosmotech_api/solution.yml +5 -0
  124. cosmotech/translation/coal/en-US/coal/cosmotech_api/workspace.yml +7 -0
  125. cosmotech/translation/coal/en-US/coal/services/adx.yml +59 -0
  126. cosmotech/translation/coal/en-US/coal/services/api.yml +8 -0
  127. cosmotech/translation/coal/en-US/coal/services/azure_storage.yml +14 -0
  128. cosmotech/translation/coal/en-US/coal/services/database.yml +19 -0
  129. cosmotech/translation/coal/en-US/coal/services/dataset.yml +68 -0
  130. cosmotech/translation/coal/en-US/coal/services/postgresql.yml +28 -0
  131. cosmotech/translation/coal/en-US/coal/services/s3.yml +9 -0
  132. cosmotech/translation/coal/en-US/coal/solution.yml +3 -0
  133. cosmotech/translation/coal/en-US/coal/web.yml +2 -0
  134. cosmotech/translation/csm_data/__init__.py +6 -0
  135. cosmotech/translation/csm_data/en-US/csm-data.yml +434 -0
  136. cosmotech_acceleration_library-1.0.0.dist-info/METADATA +255 -0
  137. cosmotech_acceleration_library-1.0.0.dist-info/RECORD +141 -0
  138. cosmotech_acceleration_library-1.0.0.dist-info/WHEEL +5 -0
  139. cosmotech_acceleration_library-1.0.0.dist-info/entry_points.txt +2 -0
  140. cosmotech_acceleration_library-1.0.0.dist-info/licenses/LICENSE +17 -0
  141. cosmotech_acceleration_library-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,141 @@
1
+ cosmotech/coal/__init__.py,sha256=Y_aKMmuWT_V738Am-MUQxSx7LLE4tW980MSeC1ul0ro,436
2
+ cosmotech/coal/aws/__init__.py,sha256=DtkCZ8Y7q5HIKui9YXCV1JXO8rRMitd0uieiW2InuXY,761
3
+ cosmotech/coal/aws/s3.py,sha256=oq1Sl_6kk_u0Jai55p7XRfKYAK0I6y3va4IfeWNhpEE,7820
4
+ cosmotech/coal/azure/__init__.py,sha256=1SmwP1y7quGq9cWqiWxJy1XDjWM8sAc3f63ztBnYujQ,796
5
+ cosmotech/coal/azure/blob.py,sha256=O6UwQ9AKns53yM5AqkxgZQX7k-I4dM6yRPL-3RzOm9s,4002
6
+ cosmotech/coal/azure/functions.py,sha256=HPxKslag2ANeDyd5y5AVk-pQLZkUffGMGoIh-5C4dvU,2901
7
+ cosmotech/coal/azure/storage.py,sha256=JocO3YJ4WnXouHja6Ipra0d06tcKu_ecoQfqNV8WTU8,2795
8
+ cosmotech/coal/azure/adx/__init__.py,sha256=zRYssRscq30jJ1q1CPUK6S3Sq4EBqZ_uL0M1ju3vktw,1227
9
+ cosmotech/coal/azure/adx/auth.py,sha256=BafFyLaHuiC3M0Mzp4ZcVAzzG1GUDsnOGn1Chf_vVMk,4755
10
+ cosmotech/coal/azure/adx/ingestion.py,sha256=--hOB5iUWe-RwXpFC5EaBDmWbJrIAtYula59wrUzCM8,11455
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
13
+ cosmotech/coal/azure/adx/store.py,sha256=IFQIi4tCmxL0NyFJhyJnUqbTt3Vwgb77900xcKprGzY,9096
14
+ cosmotech/coal/azure/adx/tables.py,sha256=hwmiQI8OccNf3Npf8jd2wOF5hL8I2s4IkgTx8jqtSCU,4292
15
+ cosmotech/coal/azure/adx/utils.py,sha256=nOq4WLTMDs95da-jsWJVYcv2MRcwUMvARv5Z0ivIVUo,2205
16
+ cosmotech/coal/cosmotech_api/__init__.py,sha256=sXA-WNRBWaXZdTwOR0-sD_HOkYvDaZYoHrzBz_o5-d0,1178
17
+ cosmotech/coal/cosmotech_api/connection.py,sha256=dMI0vSv7ic1hEgtsIN92t008QI0bQrq8kmbMgqg3EF4,3953
18
+ cosmotech/coal/cosmotech_api/parameters.py,sha256=2_ynoXfyK2pUtuZsYEamOKwfs0N6Kw2s-YE4zuPKkgM,1892
19
+ cosmotech/coal/cosmotech_api/run.py,sha256=6Fnd3aUbWg4S-KqVG0abRfnorlNzGHY89AkheKNHprs,1001
20
+ cosmotech/coal/cosmotech_api/run_data.py,sha256=W_egpjnic8aZ4R25JzQIEzMDOALm1tpTFnnvOfa17-8,6375
21
+ cosmotech/coal/cosmotech_api/run_template.py,sha256=UJAa3WpxQqiBb4OokOHsGeHIEQzAcphVMXv0eMgGfSA,4359
22
+ cosmotech/coal/cosmotech_api/twin_data_layer.py,sha256=haJPx0hE84Q5pwEZlXlnrB-3ugMJ9S66Iix3D19WxUs,18104
23
+ cosmotech/coal/cosmotech_api/workspace.py,sha256=0qPf8h23z57AUVxRoSxD9lW_dSvfsq_pawcqFYaaaok,5488
24
+ cosmotech/coal/cosmotech_api/dataset/__init__.py,sha256=UqRrDC2AFWImJu-wTAIzj7hIhc826n_57kTtBzCDWp0,972
25
+ cosmotech/coal/cosmotech_api/dataset/converters.py,sha256=uTqaEzXMvIH7rTBqQA5if2GML32nsiohEP3eFIVPmLc,6151
26
+ cosmotech/coal/cosmotech_api/dataset/utils.py,sha256=Pb6Lh3WNZHvbM8P6RdYjVQY8Ymfcxp35YmbBX_KKdWM,4438
27
+ cosmotech/coal/cosmotech_api/dataset/download/__init__.py,sha256=kzIe46X9cmdg83y4JBjqAasY624BTXNL1yCADQkoyR4,886
28
+ cosmotech/coal/cosmotech_api/dataset/download/adt.py,sha256=PwfkSYTCizkE81Huh5J8BShOXQnrjUvebRsgT-nYZpw,4731
29
+ cosmotech/coal/cosmotech_api/dataset/download/common.py,sha256=KuVEzOA_abAwtwbcdry8zmqXAuQvy-NGeg1Ot9_MMuU,5665
30
+ cosmotech/coal/cosmotech_api/dataset/download/file.py,sha256=X4ZNVjzl9ZC8J02CjRQeptZT6FPYBuxPsw-XPssP8YE,8914
31
+ cosmotech/coal/cosmotech_api/dataset/download/twingraph.py,sha256=iHDvsm7odQQ5gyT7a3LcvcdNA6nHTIaWJUCFb9ryjr0,7373
32
+ cosmotech/coal/cosmotech_api/runner/__init__.py,sha256=hEfmv6nF0hxSWMOnWZF0Fy7PJtHexVf-_cXPsxoY7Ho,1081
33
+ cosmotech/coal/cosmotech_api/runner/data.py,sha256=BtCRi_c_3aGUSBjaPt5MOajWO6WFsJdBrIrx4GMt1AE,1346
34
+ cosmotech/coal/cosmotech_api/runner/datasets.py,sha256=ojDkHGrobsygLr2CRYROetqm9zeWv1S1Bc_4Az4z874,12271
35
+ cosmotech/coal/cosmotech_api/runner/download.py,sha256=YZRmhsX9TVjvhtgFhY4uvsJ3If0G43OiiERkCdoOKHE,5655
36
+ cosmotech/coal/cosmotech_api/runner/metadata.py,sha256=eZHtlVMqsQ6WO9F-mDparjIy7tFl7kU-OqguKaI44jE,1432
37
+ cosmotech/coal/cosmotech_api/runner/parameters.py,sha256=mKRRBPZOD_tPOTyxUAL2o9nRy_KZ5Z687MkL2uhqvIc,4651
38
+ cosmotech/coal/csm/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
39
+ cosmotech/coal/csm/engine/__init__.py,sha256=EG3iArAy3OFGPmClsYXQmb77YYrEkeVC5uwPg_TbAYI,2120
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
43
+ cosmotech/coal/singlestore/__init__.py,sha256=gXQaa8OAHnDcI7iHy-5zzGG7ZqNq-uOtw60qASjwu9I,651
44
+ cosmotech/coal/singlestore/store.py,sha256=jF3gkg2qW_SrtbVKkBJ-SCtV6ukd2eLnFySOvMZFvMY,3577
45
+ cosmotech/coal/store/__init__.py,sha256=kWGM9B-Y-M257OYbouJ-1JLES5qecQbGeUBbcgyrsEo,1307
46
+ cosmotech/coal/store/csv.py,sha256=2toydK0aSs1WLhO2_mSKpCJsaMGs7aBlL7RLASNalto,1494
47
+ cosmotech/coal/store/native_python.py,sha256=Mp2U7tkUjH1wT76U4WzekaW4H5nN2VHTrAKnJ4NzB8E,847
48
+ cosmotech/coal/store/pandas.py,sha256=A2eWPDsAqI2fTNmIpJa0Qzwrh3vMfvSHPLuoxQ77OPM,906
49
+ cosmotech/coal/store/pyarrow.py,sha256=i7f7vSd5BtOnR4oleRHTG3ff0o8NaJr4c9fRb7zgYmE,814
50
+ cosmotech/coal/store/store.py,sha256=a9wSThk7K8tD1r_BJG1Zl2d4pfo23TqKUH82_u9H-tk,3353
51
+ cosmotech/coal/utils/__init__.py,sha256=N2mPhli0Wj4OesuRVbt2KrzL_pgMELs4fDNIQYb_r-g,830
52
+ cosmotech/coal/utils/api.py,sha256=OhuATEWIih4N0t6LH6dsLZHTMkV-Ko7KAk8tyKDxYfo,2777
53
+ cosmotech/coal/utils/logger.py,sha256=oYVj2BtDPji4e4J-KgaDyVcbKiewkq0xey_gQPm74Xc,506
54
+ cosmotech/coal/utils/postgresql.py,sha256=6gxk3yfkZkaJQbIG-Zxcwo7J3PI29XPLn0VdQimGSH0,8562
55
+ cosmotech/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
56
+ cosmotech/csm_data/main.py,sha256=rbfD_3RLSQFC5xXwV0W1wNiw2mlRO91xShLTpqrUEIg,2251
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
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
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
85
+ cosmotech/csm_data/utils/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
86
+ cosmotech/csm_data/utils/click.py,sha256=S_85cbKh3R86-FZVjTK7IXZnmp4ETjKo6K8gbK3HCgs,848
87
+ cosmotech/csm_data/utils/decorators.py,sha256=QTxnOSPqIDHTlI2UZ5dXjGGseguIDeK42syFRtg6zEk,2450
88
+ cosmotech/orchestrator_plugins/csm-data/__init__.py,sha256=UPzNgaNBMoBaxSlnofxl988dAswMp_tv8DzaR_IxkiE,519
89
+ cosmotech/orchestrator_plugins/csm-data/templates/api/postgres_send_runner_metadata.json,sha256=alXzvOa985PvN5nf3uoTsFXgY29EJWeK94CcBjoLFUk,1085
90
+ cosmotech/orchestrator_plugins/csm-data/templates/api/rds_load_csv.json,sha256=nM2hVFqE6Mja6u6becVStJTD8POcu76Ys0oW-mU6-TU,819
91
+ cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_csv.json,sha256=Z8uh4-C1TNVjGxUkuGlHCoSqRPNL4DVn-wVMZXSAOto,790
92
+ cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_store.json,sha256=AutPCsUfK0gHGjojDZQdQ0pgHsfC6uLtUtQ80eSHD6o,772
93
+ cosmotech/orchestrator_plugins/csm-data/templates/api/run_load_data.json,sha256=_ztHPGu5UbbdtQHUCaOuKqwtjB0DrZSZwcUePoOgS40,894
94
+ cosmotech/orchestrator_plugins/csm-data/templates/api/runtemplate_load_handler.json,sha256=aL-4GIUi2dV9jh3vuRI0BkAQJdHzfbf53Sxd91Lfj_U,761
95
+ cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_load_files.json,sha256=LxrwHU-UxtP0GB7FpNUw2o_HIM6VK2PBH7P928SFk_8,889
96
+ cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_send_files.json,sha256=A9Rt3wiiBly01ugEXGo1Qejp7UV3t8P13tLNLseqgZU,751
97
+ cosmotech/orchestrator_plugins/csm-data/templates/api/try_api_connection.json,sha256=ApkzR0HQc0J6sxxTh91_DHPRI2cCtx_-qjpYFKGkGVw,215
98
+ cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_load_file.json,sha256=yX7yUrq7epQTp0PaQElFC-elof8W6jaMtek6uQ0V6Og,1142
99
+ cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_send_file.json,sha256=7pyYOUPg_lvD4kw3sqd_zBonru7g-DVatQmu4EJw0Ps,1120
100
+ cosmotech/orchestrator_plugins/csm-data/templates/main/adx_send_runnerdata.json,sha256=thIyXyOqtnJFh-JWHijPytp_X5CG4194PS3Q_WgMbd4,1009
101
+ cosmotech/orchestrator_plugins/csm-data/templates/main/az_storage_upload.json,sha256=WS0MuXq5AbxkpOPUShmnBS1rHA3clfjXpTsdhooWMfk,804
102
+ cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_delete.json,sha256=iVgLJVDLiI44fLL6ejId-Du3T38bEPnS_j0ZWDSp1OY,1017
103
+ cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_download.json,sha256=aaFO8tWcN_x4ZMugC0peUxSEbarGOHnODh4vbbCXgCA,1131
104
+ cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_upload.json,sha256=pndJLHV-_QWAu0WEvsAs5TJf7G9f_oC-iOLNQsSjYEY,1129
105
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_azure.json,sha256=iO3rSR80YiOb7xH1yl36jGzF65-qOp4NB9hdcYxKsX4,907
106
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_postgresql.json,sha256=g0uG8FfxtLfjadolncbpUw-ZdQVY7uavpEj_DkPzqm8,898
107
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_s3.json,sha256=4r9i4HEGgcAO0r8rlKJq7x6hTtt7dSO2cFeW74-BQbk,1050
108
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_list_tables.json,sha256=1xbjPqR6B-5o6lEQ6MXSPxuKy-px-85qhnRRYOcUXcQ,349
109
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_csv_folder.json,sha256=Vwgho85XordZV_RhAAhclJDgD727f7t9yQs0gn-MDPs,495
110
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_from_singlestore.json,sha256=AOWnKQ1C6p8hf6HNQ712N59h5xZCVaaqEL2QdhV3vj4,937
111
+ cosmotech/orchestrator_plugins/csm-data/templates/store/store_reset.json,sha256=jWKRDVW9HrUXHPG-MgVU_PljLyJkeYf6Tzi9wmL8yGc,337
112
+ cosmotech/translation/coal/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
113
+ cosmotech/translation/coal/en-US/coal/solution.yml,sha256=gHf26F5XX3BEiHvvV0bUFjje9dwlTZsl9KWm1M0brkU,141
114
+ cosmotech/translation/coal/en-US/coal/web.yml,sha256=I4Hu_zBm55cUsJVSSGQ0sk5KfX6GZPMmaXsLd2rG9u0,78
115
+ cosmotech/translation/coal/en-US/coal/common/data_transfer.yml,sha256=dSoheA2bEpaO5nRXhlg8XSQOJsfa9A7AGHCg6nQ82cM,299
116
+ cosmotech/translation/coal/en-US/coal/common/errors.yml,sha256=l1fiCZdTjff4R55PFLhj3hHx61u52DxHaKzJzc5ddA4,535
117
+ cosmotech/translation/coal/en-US/coal/common/file_operations.yml,sha256=DxggJM431fnFveUemHRM0Y18GPn_Vgv-LRSZXVRNCaI,278
118
+ cosmotech/translation/coal/en-US/coal/common/progress.yml,sha256=G_BTYgAYVD_JqU3rJ5fVTySQa0HtUcLNFoHRjSnBCwk,272
119
+ cosmotech/translation/coal/en-US/coal/common/timing.yml,sha256=YtxIT8EKZDWD4hJ0tJOwkReUsrOY67Wq0MFkEZjzANE,274
120
+ cosmotech/translation/coal/en-US/coal/common/validation.yml,sha256=OAHeXrvMo2_S-D0z-ESIS--U7bU0z1i0wta4ibaqk3c,528
121
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/connection.yml,sha256=2Om0DZmOI8u0hzlWWhWnGx-o0mzMk_vgE3hGRBNaWWU,518
122
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/run_data.yml,sha256=HogZqb_Mhu4yyJmklBzb44Uk0cDnM5ssb8NZMWQMw6c,84
123
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/run_template.yml,sha256=JIQ0S-9_YhchAPVFkcMpJTVUBlhPo4yS-nBoMysus5o,441
124
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/runner.yml,sha256=fSoFiJFJcowXwBVgfAkZKL8j3iKzyVDLWm48cFpiYMA,804
125
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/solution.yml,sha256=dKOTcv8bBYl3ZxyvKsQ8msO--PyLTfEOodb4rHl2bq4,216
126
+ cosmotech/translation/coal/en-US/coal/cosmotech_api/workspace.yml,sha256=4RHIHZi_ziSYB_U-YoLxNTm3jD67yN1Cxr14W9XoTok,307
127
+ cosmotech/translation/coal/en-US/coal/services/adx.yml,sha256=9yxR0qYKyA5mqgW-pX2J65JkkMcGFC3cPJChGmikJso,3502
128
+ cosmotech/translation/coal/en-US/coal/services/api.yml,sha256=HPyKJaZrS41Qo9upRvPsLdn29QgS1xw3S-bgipHeO4s,342
129
+ cosmotech/translation/coal/en-US/coal/services/azure_storage.yml,sha256=p0alxlJA_-NH9MxKXRKGgiLbBvHuQdCROhJKiqvuX0c,595
130
+ cosmotech/translation/coal/en-US/coal/services/database.yml,sha256=S1pAu4OrVd9nAVb3oYSAurzA4cgD43UDlwK4qWhy2g4,860
131
+ cosmotech/translation/coal/en-US/coal/services/dataset.yml,sha256=J-lP802jTb7J6CYBQ5iUXSFF44yd7P230NosQz9tnzk,3752
132
+ cosmotech/translation/coal/en-US/coal/services/postgresql.yml,sha256=tRGNTTayyoxEHVyM-nzudEFdQ5HUeRIHPWIuvFmJGfM,1774
133
+ cosmotech/translation/coal/en-US/coal/services/s3.yml,sha256=362wt7SdOu-MyMj9MgjQNTNWzIq-RJ9rUqc2VKljGFE,482
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,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (79.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ csm-data = cosmotech.csm_data.main:main
@@ -0,0 +1,17 @@
1
+ LICENSE
2
+ =======
3
+
4
+ Copyright 2021-2023 Cosmo Tech
5
+
6
+ You are authorized to use this software following the execution of a specific agreement with Cosmo Tech or with an authorized licensee of Cosmo Tech.
7
+
8
+ Accordingly you should refer to this specific agreement for the purpose of the extent of the use that is permitted. This use shall mainly consist in using, displaying and executing the software for your own needs.
9
+
10
+ Except otherwise provided in the above-mentioned specific agreement:
11
+ - you are not allowed to use this software for commercial purpose or to redistribute it without prior authorization from Cosmo Tech;
12
+ - you are not allowed to copy, duplicate, modify, adapt and translate this software except as authorized under section L122-6-1 of the French Intellectual Property Code or specifically under the specific agreement with Cosmo Tech;
13
+ - you must not removed this notice or any mention related to the copyright of Cosmo Tech;
14
+
15
+ This software is provided 'as is', without any express or implied warranty towards the users.
16
+
17
+ Any Software generated through the use of the software shall be your own property to the extent this Software does not contain any part of software source code.