cosmotech-acceleration-library 1.1.0__py3-none-any.whl → 2.1.0rc1__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 (120) hide show
  1. cosmotech/coal/__init__.py +1 -1
  2. cosmotech/coal/aws/__init__.py +1 -9
  3. cosmotech/coal/aws/s3.py +181 -214
  4. cosmotech/coal/azure/__init__.py +5 -5
  5. cosmotech/coal/azure/adx/__init__.py +24 -10
  6. cosmotech/coal/azure/adx/auth.py +2 -2
  7. cosmotech/coal/azure/adx/ingestion.py +10 -14
  8. cosmotech/coal/azure/adx/query.py +1 -1
  9. cosmotech/coal/azure/adx/runner.py +13 -14
  10. cosmotech/coal/azure/adx/store.py +5 -86
  11. cosmotech/coal/azure/adx/tables.py +2 -2
  12. cosmotech/coal/azure/adx/utils.py +2 -2
  13. cosmotech/coal/azure/blob.py +20 -26
  14. cosmotech/coal/azure/storage.py +3 -3
  15. cosmotech/coal/cosmotech_api/__init__.py +0 -28
  16. cosmotech/coal/cosmotech_api/apis/__init__.py +14 -0
  17. cosmotech/coal/cosmotech_api/apis/dataset.py +222 -0
  18. cosmotech/coal/cosmotech_api/apis/meta.py +25 -0
  19. cosmotech/coal/cosmotech_api/apis/organization.py +24 -0
  20. cosmotech/coal/cosmotech_api/apis/run.py +38 -0
  21. cosmotech/coal/cosmotech_api/apis/runner.py +75 -0
  22. cosmotech/coal/cosmotech_api/apis/solution.py +23 -0
  23. cosmotech/coal/cosmotech_api/apis/workspace.py +108 -0
  24. cosmotech/coal/cosmotech_api/objects/__init__.py +9 -0
  25. cosmotech/coal/cosmotech_api/objects/connection.py +125 -0
  26. cosmotech/coal/cosmotech_api/objects/parameters.py +127 -0
  27. cosmotech/coal/postgresql/runner.py +58 -41
  28. cosmotech/coal/postgresql/store.py +56 -15
  29. cosmotech/coal/postgresql/utils.py +255 -0
  30. cosmotech/coal/singlestore/store.py +3 -2
  31. cosmotech/coal/store/__init__.py +16 -13
  32. cosmotech/coal/store/output/__init__.py +0 -0
  33. cosmotech/coal/store/output/aws_channel.py +74 -0
  34. cosmotech/coal/store/output/az_storage_channel.py +33 -0
  35. cosmotech/coal/store/output/channel_interface.py +38 -0
  36. cosmotech/coal/store/output/channel_spliter.py +61 -0
  37. cosmotech/coal/store/output/postgres_channel.py +37 -0
  38. cosmotech/coal/store/pandas.py +1 -1
  39. cosmotech/coal/store/pyarrow.py +2 -2
  40. cosmotech/coal/store/store.py +4 -7
  41. cosmotech/coal/utils/configuration.py +197 -0
  42. cosmotech/coal/utils/decorator.py +4 -7
  43. cosmotech/csm_data/commands/adx_send_data.py +1 -1
  44. cosmotech/csm_data/commands/adx_send_runnerdata.py +3 -2
  45. cosmotech/csm_data/commands/api/api.py +6 -19
  46. cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py +20 -16
  47. cosmotech/csm_data/commands/api/run_load_data.py +15 -52
  48. cosmotech/csm_data/commands/api/wsf_load_file.py +13 -16
  49. cosmotech/csm_data/commands/api/wsf_send_file.py +11 -14
  50. cosmotech/csm_data/commands/az_storage_upload.py +3 -2
  51. cosmotech/csm_data/commands/s3_bucket_delete.py +16 -15
  52. cosmotech/csm_data/commands/s3_bucket_download.py +16 -16
  53. cosmotech/csm_data/commands/s3_bucket_upload.py +16 -14
  54. cosmotech/csm_data/commands/store/dump_to_azure.py +3 -2
  55. cosmotech/csm_data/commands/store/dump_to_postgresql.py +3 -2
  56. cosmotech/csm_data/commands/store/dump_to_s3.py +18 -16
  57. cosmotech/csm_data/commands/store/list_tables.py +3 -2
  58. cosmotech/csm_data/commands/store/load_csv_folder.py +10 -4
  59. cosmotech/csm_data/commands/store/load_from_singlestore.py +3 -2
  60. cosmotech/csm_data/commands/store/output.py +35 -0
  61. cosmotech/csm_data/commands/store/reset.py +8 -3
  62. cosmotech/csm_data/commands/store/store.py +3 -3
  63. cosmotech/csm_data/main.py +4 -4
  64. cosmotech/csm_data/utils/decorators.py +4 -3
  65. cosmotech/translation/coal/en-US/coal/cosmotech_api/initialization.yml +8 -0
  66. cosmotech/translation/coal/en-US/coal/services/dataset.yml +10 -14
  67. cosmotech/translation/coal/en-US/coal/store/output/data_interface.yml +1 -0
  68. cosmotech/translation/coal/en-US/coal/store/output/split.yml +6 -0
  69. cosmotech/translation/coal/en-US/coal/utils/configuration.yml +2 -0
  70. cosmotech/translation/csm_data/en-US/csm_data/commands/store/output.yml +7 -0
  71. {cosmotech_acceleration_library-1.1.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/METADATA +29 -33
  72. cosmotech_acceleration_library-2.1.0rc1.dist-info/RECORD +153 -0
  73. {cosmotech_acceleration_library-1.1.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/WHEEL +1 -1
  74. cosmotech/coal/azure/functions.py +0 -72
  75. cosmotech/coal/cosmotech_api/connection.py +0 -96
  76. cosmotech/coal/cosmotech_api/dataset/__init__.py +0 -26
  77. cosmotech/coal/cosmotech_api/dataset/converters.py +0 -164
  78. cosmotech/coal/cosmotech_api/dataset/download/__init__.py +0 -19
  79. cosmotech/coal/cosmotech_api/dataset/download/adt.py +0 -119
  80. cosmotech/coal/cosmotech_api/dataset/download/common.py +0 -140
  81. cosmotech/coal/cosmotech_api/dataset/download/file.py +0 -229
  82. cosmotech/coal/cosmotech_api/dataset/download/twingraph.py +0 -185
  83. cosmotech/coal/cosmotech_api/dataset/upload.py +0 -41
  84. cosmotech/coal/cosmotech_api/dataset/utils.py +0 -132
  85. cosmotech/coal/cosmotech_api/parameters.py +0 -48
  86. cosmotech/coal/cosmotech_api/run.py +0 -25
  87. cosmotech/coal/cosmotech_api/run_data.py +0 -173
  88. cosmotech/coal/cosmotech_api/run_template.py +0 -108
  89. cosmotech/coal/cosmotech_api/runner/__init__.py +0 -28
  90. cosmotech/coal/cosmotech_api/runner/data.py +0 -38
  91. cosmotech/coal/cosmotech_api/runner/datasets.py +0 -416
  92. cosmotech/coal/cosmotech_api/runner/download.py +0 -135
  93. cosmotech/coal/cosmotech_api/runner/metadata.py +0 -42
  94. cosmotech/coal/cosmotech_api/runner/parameters.py +0 -157
  95. cosmotech/coal/cosmotech_api/twin_data_layer.py +0 -512
  96. cosmotech/coal/cosmotech_api/workspace.py +0 -127
  97. cosmotech/coal/utils/postgresql.py +0 -236
  98. cosmotech/coal/utils/semver.py +0 -6
  99. cosmotech/csm_data/commands/api/rds_load_csv.py +0 -90
  100. cosmotech/csm_data/commands/api/rds_send_csv.py +0 -74
  101. cosmotech/csm_data/commands/api/rds_send_store.py +0 -74
  102. cosmotech/csm_data/commands/api/runtemplate_load_handler.py +0 -66
  103. cosmotech/csm_data/commands/api/tdl_load_files.py +0 -76
  104. cosmotech/csm_data/commands/api/tdl_send_files.py +0 -82
  105. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_load_csv.json +0 -27
  106. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_csv.json +0 -27
  107. cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_store.json +0 -27
  108. cosmotech/orchestrator_plugins/csm-data/templates/api/runtemplate_load_handler.json +0 -27
  109. cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_load_files.json +0 -32
  110. cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_send_files.json +0 -27
  111. cosmotech/translation/coal/en-US/coal/cosmotech_api/run_data.yml +0 -2
  112. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_load_csv.yml +0 -13
  113. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_csv.yml +0 -12
  114. cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_store.yml +0 -12
  115. cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_load_files.yml +0 -14
  116. cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_send_files.yml +0 -18
  117. cosmotech_acceleration_library-1.1.0.dist-info/RECORD +0 -171
  118. {cosmotech_acceleration_library-1.1.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/entry_points.txt +0 -0
  119. {cosmotech_acceleration_library-1.1.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/licenses/LICENSE +0 -0
  120. {cosmotech_acceleration_library-1.1.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/top_level.txt +0 -0
@@ -1,76 +0,0 @@
1
- # Copyright (C) - 2023 - 2025 - Cosmo Tech
2
- # This document and all information contained herein is the exclusive property -
3
- # including all intellectual property rights pertaining thereto - of Cosmo Tech.
4
- # Any use, reproduction, translation, broadcasting, transmission, distribution,
5
- # etc., to any person is prohibited unless it has been previously and
6
- # specifically authorized by written means by Cosmo Tech.
7
-
8
- from cosmotech.csm_data.utils.click import click
9
- from cosmotech.csm_data.utils.decorators import web_help, translate_help
10
- from cosmotech.orchestrator.utils.translate import T
11
-
12
-
13
- @click.command()
14
- @click.option(
15
- "--organization-id",
16
- envvar="CSM_ORGANIZATION_ID",
17
- help=T("csm_data.commands.api.tdl_load_files.parameters.organization_id"),
18
- metavar="o-XXXXXXXX",
19
- type=str,
20
- show_envvar=True,
21
- required=True,
22
- )
23
- @click.option(
24
- "--workspace-id",
25
- envvar="CSM_WORKSPACE_ID",
26
- help=T("csm_data.commands.api.tdl_load_files.parameters.workspace_id"),
27
- metavar="w-XXXXXXXX",
28
- type=str,
29
- show_envvar=True,
30
- required=True,
31
- )
32
- @click.option(
33
- "--scenario-id",
34
- envvar="CSM_SCENARIO_ID",
35
- help=T("csm_data.commands.api.tdl_load_files.parameters.scenario_id"),
36
- metavar="s-XXXXXXXX",
37
- type=str,
38
- show_envvar=True,
39
- required=False,
40
- )
41
- @click.option(
42
- "--runner-id",
43
- envvar="CSM_RUNNER_ID",
44
- help=T("csm_data.commands.api.tdl_load_files.parameters.runner_id"),
45
- metavar="r-XXXXXXXX",
46
- type=str,
47
- show_envvar=True,
48
- required=False,
49
- )
50
- @click.option(
51
- "--dir",
52
- "directory_path",
53
- help=T("csm_data.commands.api.tdl_load_files.parameters.dir"),
54
- metavar="PATH",
55
- default="./",
56
- type=str,
57
- envvar="CSM_DATASET_ABSOLUTE_PATH",
58
- show_envvar=True,
59
- required=True,
60
- )
61
- @web_help("csm-data/api/tdl-load-file")
62
- @translate_help("csm_data.commands.api.tdl_load_files.description")
63
- def tdl_load_files(organization_id, workspace_id, scenario_id, runner_id, directory_path):
64
- # Import the function at the start of the command
65
- from cosmotech.coal.cosmotech_api import load_files_from_tdl
66
-
67
- try:
68
- load_files_from_tdl(
69
- organization_id=organization_id,
70
- workspace_id=workspace_id,
71
- directory_path=directory_path,
72
- runner_id=runner_id,
73
- scenario_id=scenario_id,
74
- )
75
- except ValueError as e:
76
- raise click.Abort() from e
@@ -1,82 +0,0 @@
1
- # Copyright (C) - 2023 - 2025 - Cosmo Tech
2
- # This document and all information contained herein is the exclusive property -
3
- # including all intellectual property rights pertaining thereto - of Cosmo Tech.
4
- # Any use, reproduction, translation, broadcasting, transmission, distribution,
5
- # etc., to any person is prohibited unless it has been previously and
6
- # specifically authorized by written means by Cosmo Tech.
7
-
8
- from cosmotech.csm_data.utils.click import click
9
- from cosmotech.csm_data.utils.decorators import web_help, translate_help
10
- from cosmotech.orchestrator.utils.translate import T
11
-
12
-
13
- @click.command()
14
- @click.option(
15
- "--api-url",
16
- envvar="CSM_API_URL",
17
- help=T("csm_data.commands.api.tdl_send_files.parameters.api_url"),
18
- metavar="URI",
19
- type=str,
20
- show_envvar=True,
21
- required=True,
22
- )
23
- @click.option(
24
- "--organization-id",
25
- envvar="CSM_ORGANIZATION_ID",
26
- help=T("csm_data.commands.api.tdl_send_files.parameters.organization_id"),
27
- metavar="o-XXXXXXXX",
28
- type=str,
29
- show_envvar=True,
30
- required=True,
31
- )
32
- @click.option(
33
- "--workspace-id",
34
- envvar="CSM_WORKSPACE_ID",
35
- help=T("csm_data.commands.api.tdl_send_files.parameters.workspace_id"),
36
- metavar="w-XXXXXXXX",
37
- type=str,
38
- show_envvar=True,
39
- required=True,
40
- )
41
- @click.option(
42
- "--runner-id",
43
- envvar="CSM_RUNNER_ID",
44
- help=T("csm_data.commands.api.tdl_send_files.parameters.runner_id"),
45
- metavar="r-XXXXXXXX",
46
- type=str,
47
- show_envvar=True,
48
- required=True,
49
- )
50
- @click.option(
51
- "--dir",
52
- "directory_path",
53
- help=T("csm_data.commands.api.tdl_send_files.parameters.dir"),
54
- metavar="PATH",
55
- default="./",
56
- type=str,
57
- envvar="CSM_DATASET_ABSOLUTE_PATH",
58
- show_envvar=True,
59
- required=True,
60
- )
61
- @click.option(
62
- "--clear/--keep",
63
- help=T("csm_data.commands.api.tdl_send_files.parameters.clear"),
64
- is_flag=True,
65
- default=True,
66
- show_default=True,
67
- type=bool,
68
- )
69
- @web_help("csm-data/api/tdl-send-files")
70
- @translate_help("csm_data.commands.api.tdl_send_files.description")
71
- def tdl_send_files(api_url, organization_id, workspace_id, runner_id, directory_path, clear: bool):
72
- # Import the function at the start of the command
73
- from cosmotech.coal.cosmotech_api import send_files_to_tdl
74
-
75
- send_files_to_tdl(
76
- api_url=api_url,
77
- organization_id=organization_id,
78
- workspace_id=workspace_id,
79
- runner_id=runner_id,
80
- directory_path=directory_path,
81
- clear=clear,
82
- )
@@ -1,27 +0,0 @@
1
- {
2
- "id": "csm-data rds-load-csv",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "rds-load-csv"
7
- ],
8
- "description": "Use csm-data to query the results api and store it in a csv file, you need to add your arguments for filename and query while using this template",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_DATASET_ABSOLUTE_PATH": {
12
- "description": "Target folder in which to write the resulting CSV file"
13
- },
14
- "CSM_ORGANIZATION_ID": {
15
- "description": "An organization id for the Cosmo Tech API"
16
- },
17
- "CSM_WORKSPACE_ID": {
18
- "description": "A workspace id for the Cosmo Tech API"
19
- },
20
- "CSM_RUNNER_ID": {
21
- "description": "A runner id for the Cosmo Tech API"
22
- },
23
- "CSM_RUN_ID": {
24
- "description": "A run id for the Cosmo Tech API"
25
- }
26
- }
27
- }
@@ -1,27 +0,0 @@
1
- {
2
- "id": "csm-data rds-send-csv",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "rds-send-csv"
7
- ],
8
- "description": "Use csm-data to send the content of all csv of a folder to the Cosmo Tech API as custom results data",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_DATASET_ABSOLUTE_PATH": {
12
- "description": "Target folder in which to find CSV files to send to the Cosmo Tech API"
13
- },
14
- "CSM_ORGANIZATION_ID": {
15
- "description": "An organization id for the Cosmo Tech API"
16
- },
17
- "CSM_WORKSPACE_ID": {
18
- "description": "A workspace id for the Cosmo Tech API"
19
- },
20
- "CSM_RUNNER_ID": {
21
- "description": "A runner id for the Cosmo Tech API"
22
- },
23
- "CSM_RUN_ID": {
24
- "description": "A run id for the Cosmo Tech API"
25
- }
26
- }
27
- }
@@ -1,27 +0,0 @@
1
- {
2
- "id": "csm-data rds-send-store",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "rds-send-store"
7
- ],
8
- "description": "Use csm-data to send the content of a store to the Cosmo Tech API as custom results data",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_PARAMETERS_ABSOLUTE_PATH": {
12
- "description": "Folder containing the store to send to the Cosmo Tech API"
13
- },
14
- "CSM_ORGANIZATION_ID": {
15
- "description": "An organization id for the Cosmo Tech API"
16
- },
17
- "CSM_WORKSPACE_ID": {
18
- "description": "A workspace id for the Cosmo Tech API"
19
- },
20
- "CSM_RUNNER_ID": {
21
- "description": "A runner id for the Cosmo Tech API"
22
- },
23
- "CSM_RUN_ID": {
24
- "description": "A run id for the Cosmo Tech API"
25
- }
26
- }
27
- }
@@ -1,27 +0,0 @@
1
- {
2
- "id": "csm-data runtemplate-load-handler",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "runtemplate-load-handler"
7
- ],
8
- "description": "Use csm-data to load run template handlers from the Cosmo Tech API",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_ORGANIZATION_ID": {
12
- "description": "An organization id for the Cosmo Tech API"
13
- },
14
- "CSM_WORKSPACE_ID": {
15
- "description": "A workspace id for the Cosmo Tech API"
16
- },
17
- "CSM_RUN_TEMPLATE_ID": {
18
- "description": "A run template id for the Cosmo Tech API"
19
- },
20
- "CSM_CONTAINER_MODE": {
21
- "description": "Comma-separated list of handlers to load"
22
- },
23
- "CSM_API_URL": {
24
- "description": "The URL to a Cosmo Tech API instance"
25
- }
26
- }
27
- }
@@ -1,32 +0,0 @@
1
- {
2
- "id": "csm-data tdl-load-files",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "tdl-load-files"
7
- ],
8
- "description": "Use csm-data to query a twingraph and loads all the data from it",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_DATASET_ABSOLUTE_PATH": {
12
- "description": "Target folder in which to write the resulting CSV files"
13
- },
14
- "CSM_API_URL": {
15
- "description": "The URL to a Cosmo Tech API instance"
16
- },
17
- "CSM_ORGANIZATION_ID": {
18
- "description": "An organization id for the Cosmo Tech API"
19
- },
20
- "CSM_WORKSPACE_ID": {
21
- "description": "A workspace id for the Cosmo Tech API"
22
- },
23
- "CSM_SCENARIO_ID": {
24
- "description": "A scenario id for the Cosmo Tech API",
25
- "optional": true
26
- },
27
- "CSM_RUNNER_ID": {
28
- "description": "A runner id for the Cosmo Tech API",
29
- "optional": true
30
- }
31
- }
32
- }
@@ -1,27 +0,0 @@
1
- {
2
- "id": "csm-data tdl-send-files",
3
- "command": "csm-data",
4
- "arguments": [
5
- "api",
6
- "tdl-send-files"
7
- ],
8
- "description": "Use csm-data to send a folder content to the Cosmo Tech API as a Twin Graph",
9
- "useSystemEnvironment": true,
10
- "environment": {
11
- "CSM_DATASET_ABSOLUTE_PATH": {
12
- "description": "Folder containing the files to send to the API"
13
- },
14
- "CSM_API_URL": {
15
- "description": "The URL to a Cosmo Tech API instance"
16
- },
17
- "CSM_ORGANIZATION_ID": {
18
- "description": "An organization id for the Cosmo Tech API"
19
- },
20
- "CSM_WORKSPACE_ID": {
21
- "description": "A workspace id for the Cosmo Tech API"
22
- },
23
- "CSM_RUNNER_ID": {
24
- "description": "A runner id for the Cosmo Tech API"
25
- }
26
- }
27
- }
@@ -1,2 +0,0 @@
1
- # Run Data-specific messages
2
- sending_to_table: "Sending data to table {table_name}"
@@ -1,13 +0,0 @@
1
- description: |
2
- Load data from a runner's RDS database into a CSV file.
3
-
4
- Executes a SQL query against the runner's RDS database and saves the results to a CSV file.
5
- By default, it will list all tables in the public schema if no specific query is provided.
6
- parameters:
7
- target_folder: The folder where the csv will be written
8
- organization_id: An organization id for the Cosmo Tech API
9
- workspace_id: A workspace id for the Cosmo Tech API
10
- runner_id: A runner id for the Cosmo Tech API
11
- run_id: A run id for the Cosmo Tech API
12
- file_name: A file name to write the query results
13
- query: SQL query to execute (defaults to listing all tables in public schema)
@@ -1,12 +0,0 @@
1
- description: |
2
- Send CSV files to a runner's RDS database.
3
-
4
- Takes all CSV files from a source folder and sends their content to the runner's RDS database.
5
- Each CSV file will be sent to a table named after the file (without the .csv extension).
6
- The table name will be prefixed with "CD_" in the database.
7
- parameters:
8
- source_folder: The folder containing csvs to send
9
- organization_id: An organization id for the Cosmo Tech API
10
- workspace_id: A workspace id for the Cosmo Tech API
11
- runner_id: A runner id for the Cosmo Tech API
12
- run_id: A run id for the Cosmo Tech API
@@ -1,12 +0,0 @@
1
- description: |
2
- Send data from a store to a runner's RDS database.
3
-
4
- Takes all tables from a store and sends their content to the runner's RDS database.
5
- Each table will be sent to a table with the same name, prefixed with "CD_" in the database.
6
- Null values in rows will be removed before sending.
7
- parameters:
8
- store_folder: The folder containing the store files
9
- organization_id: An organization id for the Cosmo Tech API
10
- workspace_id: A workspace id for the Cosmo Tech API
11
- runner_id: A runner id for the Cosmo Tech API
12
- run_id: A run id for the Cosmo Tech API
@@ -1,14 +0,0 @@
1
- description: |
2
- Query a twingraph and loads all the data from it
3
-
4
- Will create 1 csv file per node type / relationship type
5
-
6
- The twingraph must have been populated using the "tdl-send-files" command for this to work correctly
7
-
8
- Requires a valid connection to the API to send the data
9
- parameters:
10
- organization_id: An organization id for the Cosmo Tech API
11
- workspace_id: A workspace id for the Cosmo Tech API
12
- runner_id: A runner id for the Cosmo Tech API
13
- scenario_id: A scenario id for the Cosmo Tech API
14
- dir: Path to the directory to write the results to
@@ -1,18 +0,0 @@
1
- description: |
2
- Reads a folder CSVs and send those to the Cosmo Tech API as a Dataset
3
-
4
- CSVs must follow a given format:
5
- - Nodes files must have an id column
6
- - Relationship files must have id, src and dest columns
7
-
8
- Non-existing relationship (aka dest or src does not point to existing node) won't trigger an error,
9
- the relationship will not be created instead.
10
-
11
- Requires a valid connection to the API to send the data
12
- parameters:
13
- api_url: The URI to a Cosmo Tech API instance
14
- organization_id: An organization id for the Cosmo Tech API
15
- workspace_id: A workspace id for the Cosmo Tech API
16
- runner_id: A runner id for the Cosmo Tech API
17
- dir: Path to the directory containing csvs to send
18
- clear: Flag to clear the target dataset first (if set to True will clear the dataset before sending anything, irreversibly)
@@ -1,171 +0,0 @@
1
- cosmotech/coal/__init__.py,sha256=fEmLxOs06MCBlBFoKsBUQ_ZE5aLJgmdNfzVP0Xx_Qds,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=FDrVaf-KDqHunPIQ7nUt57_-9pLPWXleNREgdHn9qeI,8333
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=ufYjA_WF0CNpU63jGlPqtY1kWiLu6Qj7TNVHbRk8n0A,1320
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/upload.py,sha256=Fmwx9zg5FPQcSd72YXeClB6ZCCi6IUlkAgGVs11Fvn4,1458
27
- cosmotech/coal/cosmotech_api/dataset/utils.py,sha256=Pb6Lh3WNZHvbM8P6RdYjVQY8Ymfcxp35YmbBX_KKdWM,4438
28
- cosmotech/coal/cosmotech_api/dataset/download/__init__.py,sha256=kzIe46X9cmdg83y4JBjqAasY624BTXNL1yCADQkoyR4,886
29
- cosmotech/coal/cosmotech_api/dataset/download/adt.py,sha256=PwfkSYTCizkE81Huh5J8BShOXQnrjUvebRsgT-nYZpw,4731
30
- cosmotech/coal/cosmotech_api/dataset/download/common.py,sha256=KuVEzOA_abAwtwbcdry8zmqXAuQvy-NGeg1Ot9_MMuU,5665
31
- cosmotech/coal/cosmotech_api/dataset/download/file.py,sha256=F_Y-O8W0VSXjDkmE9qEaM_fO7FRN_6jCND5dyCZpGz4,8410
32
- cosmotech/coal/cosmotech_api/dataset/download/twingraph.py,sha256=xumPNAGcB3t0ZMztvuUUnSmxoB9t-WUF3lqX8fEtWrY,7383
33
- cosmotech/coal/cosmotech_api/runner/__init__.py,sha256=hEfmv6nF0hxSWMOnWZF0Fy7PJtHexVf-_cXPsxoY7Ho,1081
34
- cosmotech/coal/cosmotech_api/runner/data.py,sha256=BtCRi_c_3aGUSBjaPt5MOajWO6WFsJdBrIrx4GMt1AE,1346
35
- cosmotech/coal/cosmotech_api/runner/datasets.py,sha256=_jrjYGepVfjL5iCNoqg29tKNwweupfbYCUwZkNE_gxo,13555
36
- cosmotech/coal/cosmotech_api/runner/download.py,sha256=G02poKQrKpYQdR_JjKesINjWeqZ95uUyl-TDulWwSN8,5254
37
- cosmotech/coal/cosmotech_api/runner/metadata.py,sha256=eZHtlVMqsQ6WO9F-mDparjIy7tFl7kU-OqguKaI44jE,1432
38
- cosmotech/coal/cosmotech_api/runner/parameters.py,sha256=mKRRBPZOD_tPOTyxUAL2o9nRy_KZ5Z687MkL2uhqvIc,4651
39
- cosmotech/coal/csm/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
40
- cosmotech/coal/csm/engine/__init__.py,sha256=EG3iArAy3OFGPmClsYXQmb77YYrEkeVC5uwPg_TbAYI,2120
41
- cosmotech/coal/postgresql/__init__.py,sha256=766LBZyWCQUI6rlzXDY_C9Yrxg551VX2L4lOuhDiS8w,786
42
- cosmotech/coal/postgresql/runner.py,sha256=lxUDrbwW-YhWgPiEBRMt_I5zR8DfDNJyvbRwzk5ixDU,3647
43
- cosmotech/coal/postgresql/store.py,sha256=uH1MooLfEDmNVO6KNQDrzUpC7YaLGzfdLt3KqBoD_Go,3643
44
- cosmotech/coal/singlestore/__init__.py,sha256=gXQaa8OAHnDcI7iHy-5zzGG7ZqNq-uOtw60qASjwu9I,651
45
- cosmotech/coal/singlestore/store.py,sha256=jF3gkg2qW_SrtbVKkBJ-SCtV6ukd2eLnFySOvMZFvMY,3577
46
- cosmotech/coal/store/__init__.py,sha256=kWGM9B-Y-M257OYbouJ-1JLES5qecQbGeUBbcgyrsEo,1307
47
- cosmotech/coal/store/csv.py,sha256=2toydK0aSs1WLhO2_mSKpCJsaMGs7aBlL7RLASNalto,1494
48
- cosmotech/coal/store/native_python.py,sha256=Mp2U7tkUjH1wT76U4WzekaW4H5nN2VHTrAKnJ4NzB8E,847
49
- cosmotech/coal/store/pandas.py,sha256=A2eWPDsAqI2fTNmIpJa0Qzwrh3vMfvSHPLuoxQ77OPM,906
50
- cosmotech/coal/store/pyarrow.py,sha256=i7f7vSd5BtOnR4oleRHTG3ff0o8NaJr4c9fRb7zgYmE,814
51
- cosmotech/coal/store/store.py,sha256=a9wSThk7K8tD1r_BJG1Zl2d4pfo23TqKUH82_u9H-tk,3353
52
- cosmotech/coal/utils/__init__.py,sha256=N2mPhli0Wj4OesuRVbt2KrzL_pgMELs4fDNIQYb_r-g,830
53
- cosmotech/coal/utils/decorator.py,sha256=j8MGkm4tgYVmBji0Veug4uq3Ed-f4OKe9XANs47_EG0,679
54
- cosmotech/coal/utils/logger.py,sha256=oYVj2BtDPji4e4J-KgaDyVcbKiewkq0xey_gQPm74Xc,506
55
- cosmotech/coal/utils/postgresql.py,sha256=6gxk3yfkZkaJQbIG-Zxcwo7J3PI29XPLn0VdQimGSH0,8562
56
- cosmotech/coal/utils/semver.py,sha256=VTjixXNBeUe6A02AK6olNxeqToOCWcKih6VZun09E7A,162
57
- cosmotech/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
58
- cosmotech/csm_data/main.py,sha256=q20Gl1x7DV0gWStnWJUVnhUrvv-TPrUhv3e-5X3TDEM,2424
59
- cosmotech/csm_data/commands/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
60
- cosmotech/csm_data/commands/adx_send_data.py,sha256=wKt30RmuS1FdnhgW0mJZVXifnI_YLRLaj4w5DYlPl7s,2638
61
- cosmotech/csm_data/commands/adx_send_runnerdata.py,sha256=SHZ0RijCnYRrAdCgdbW_YTaN3joihtNtbLzZAICCzJ4,3713
62
- cosmotech/csm_data/commands/az_storage_upload.py,sha256=7qXhFxftfil72tG23HTvHiW708t4QkM4rymcFJSPCj4,2344
63
- cosmotech/csm_data/commands/s3_bucket_delete.py,sha256=0k56xKOPp7CRP-OGL5qqETgdCmcSnx6PjiGGE5ha1Bs,3026
64
- cosmotech/csm_data/commands/s3_bucket_download.py,sha256=vyEmKA2EUbb0glBXI1IXx-GKG6Fgoqys1hZONjb_qpI,3347
65
- cosmotech/csm_data/commands/s3_bucket_upload.py,sha256=eKIQd-RDwYKjGADYsoMYuT9-I6jYT2-16BH2rVEMbuM,3563
66
- cosmotech/csm_data/commands/api/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
67
- cosmotech/csm_data/commands/api/api.py,sha256=rzxb7zX_CJCzrOUxIN75mwARmQWhCmha4ogh1r3JAmg,2479
68
- cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py,sha256=ZRcTICk_3DKyl3Gic-L6mqfWeT8hEcU5AvY6c8UQ8_E,4076
69
- cosmotech/csm_data/commands/api/rds_load_csv.py,sha256=9GMK1ViazuZIuwfuRj6SyhqMa39Oc0b0yRtX60_G0mw,2757
70
- cosmotech/csm_data/commands/api/rds_send_csv.py,sha256=_YeKCnKHEtxFluGRjRqZKdUMVn2bO3pAGBJQFYHUj7Y,2310
71
- cosmotech/csm_data/commands/api/rds_send_store.py,sha256=7_pgWtHfmFF-evuO7EOzFX6N7V5d2EsO-KG46B-F13Q,2328
72
- cosmotech/csm_data/commands/api/run_load_data.py,sha256=oRnoIj2EXPG8Q2fcvrzt69eX4LNCVCO612qejsOivBM,3725
73
- cosmotech/csm_data/commands/api/runtemplate_load_handler.py,sha256=qWS0I1fNN6VFx7lHJoOWCv30WGI2q32B9_Zyr5KpBSM,2275
74
- cosmotech/csm_data/commands/api/tdl_load_files.py,sha256=O4FsRNutyEvdDUBYElLxrzEhJcXVyO9hpOdiM6FEQ5E,2394
75
- cosmotech/csm_data/commands/api/tdl_send_files.py,sha256=QXToEHbZvEhdh88xHamXj9mPQo1Hm2UPxaMkgNEspaw,2474
76
- cosmotech/csm_data/commands/api/wsf_load_file.py,sha256=rDu8w4TAP7vmcbs8oh2eZOPVWEVKXsdgAgaYl980lfY,2321
77
- cosmotech/csm_data/commands/api/wsf_send_file.py,sha256=M8pJxf78546onU55a0jKJ4fEnaS9Cyw4x_4NpRps0TE,2201
78
- cosmotech/csm_data/commands/store/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
79
- cosmotech/csm_data/commands/store/dump_to_azure.py,sha256=5nnK7LUATRTlfX8tmFRLBmkD15bgG37Lyn7fEuPJiNE,3313
80
- cosmotech/csm_data/commands/store/dump_to_postgresql.py,sha256=3ZfIwIfLXYeBb6SwBSV6-CiWdid8Udht4ILWeZNdLWM,3596
81
- cosmotech/csm_data/commands/store/dump_to_s3.py,sha256=TUOTtIsx-n8c2hHglQ8yr6diqpS-LYKF41a8RzW_qkc,5248
82
- cosmotech/csm_data/commands/store/list_tables.py,sha256=epgVJAaP8QfSsEuL9n5S8smsfIxK-Cr0bLv88FAnkWw,1860
83
- cosmotech/csm_data/commands/store/load_csv_folder.py,sha256=gDKCxWIpXqhtRvlvRMM7SmyJ9_YHQ1UZHuA6NYdPTZA,1717
84
- cosmotech/csm_data/commands/store/load_from_singlestore.py,sha256=dWZ4jIKl8wsnOX_6qqtyQmkFQhLgjUAOZWab-sGzQ2g,3104
85
- cosmotech/csm_data/commands/store/reset.py,sha256=3B0E0m0nCy3vwai_D5sWWddMZWuWkWnaL1tvgR6L5Ow,1237
86
- cosmotech/csm_data/commands/store/store.py,sha256=JHfctOCOU2WJd_BpmBsIf805_hGAs2H6XysFt4hxQqI,1693
87
- cosmotech/csm_data/utils/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
88
- cosmotech/csm_data/utils/click.py,sha256=S_85cbKh3R86-FZVjTK7IXZnmp4ETjKo6K8gbK3HCgs,848
89
- cosmotech/csm_data/utils/decorators.py,sha256=dTcPRTYqY18mc8Ql4Qwd3gU7BxbNxfeKskQdVIsE3-g,2504
90
- cosmotech/orchestrator_plugins/csm-data/__init__.py,sha256=UPzNgaNBMoBaxSlnofxl988dAswMp_tv8DzaR_IxkiE,519
91
- cosmotech/orchestrator_plugins/csm-data/templates/api/postgres_send_runner_metadata.json,sha256=alXzvOa985PvN5nf3uoTsFXgY29EJWeK94CcBjoLFUk,1085
92
- cosmotech/orchestrator_plugins/csm-data/templates/api/rds_load_csv.json,sha256=nM2hVFqE6Mja6u6becVStJTD8POcu76Ys0oW-mU6-TU,819
93
- cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_csv.json,sha256=Z8uh4-C1TNVjGxUkuGlHCoSqRPNL4DVn-wVMZXSAOto,790
94
- cosmotech/orchestrator_plugins/csm-data/templates/api/rds_send_store.json,sha256=AutPCsUfK0gHGjojDZQdQ0pgHsfC6uLtUtQ80eSHD6o,772
95
- cosmotech/orchestrator_plugins/csm-data/templates/api/run_load_data.json,sha256=_ztHPGu5UbbdtQHUCaOuKqwtjB0DrZSZwcUePoOgS40,894
96
- cosmotech/orchestrator_plugins/csm-data/templates/api/runtemplate_load_handler.json,sha256=aL-4GIUi2dV9jh3vuRI0BkAQJdHzfbf53Sxd91Lfj_U,761
97
- cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_load_files.json,sha256=LxrwHU-UxtP0GB7FpNUw2o_HIM6VK2PBH7P928SFk_8,889
98
- cosmotech/orchestrator_plugins/csm-data/templates/api/tdl_send_files.json,sha256=A9Rt3wiiBly01ugEXGo1Qejp7UV3t8P13tLNLseqgZU,751
99
- cosmotech/orchestrator_plugins/csm-data/templates/api/try_api_connection.json,sha256=ApkzR0HQc0J6sxxTh91_DHPRI2cCtx_-qjpYFKGkGVw,215
100
- cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_load_file.json,sha256=yX7yUrq7epQTp0PaQElFC-elof8W6jaMtek6uQ0V6Og,1142
101
- cosmotech/orchestrator_plugins/csm-data/templates/api/wsf_send_file.json,sha256=7pyYOUPg_lvD4kw3sqd_zBonru7g-DVatQmu4EJw0Ps,1120
102
- cosmotech/orchestrator_plugins/csm-data/templates/main/adx_send_runnerdata.json,sha256=thIyXyOqtnJFh-JWHijPytp_X5CG4194PS3Q_WgMbd4,1009
103
- cosmotech/orchestrator_plugins/csm-data/templates/main/az_storage_upload.json,sha256=WS0MuXq5AbxkpOPUShmnBS1rHA3clfjXpTsdhooWMfk,804
104
- cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_delete.json,sha256=iVgLJVDLiI44fLL6ejId-Du3T38bEPnS_j0ZWDSp1OY,1017
105
- cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_download.json,sha256=aaFO8tWcN_x4ZMugC0peUxSEbarGOHnODh4vbbCXgCA,1131
106
- cosmotech/orchestrator_plugins/csm-data/templates/main/s3_bucket_upload.json,sha256=pndJLHV-_QWAu0WEvsAs5TJf7G9f_oC-iOLNQsSjYEY,1129
107
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_azure.json,sha256=iO3rSR80YiOb7xH1yl36jGzF65-qOp4NB9hdcYxKsX4,907
108
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_postgresql.json,sha256=g0uG8FfxtLfjadolncbpUw-ZdQVY7uavpEj_DkPzqm8,898
109
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_dump_to_s3.json,sha256=4r9i4HEGgcAO0r8rlKJq7x6hTtt7dSO2cFeW74-BQbk,1050
110
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_list_tables.json,sha256=1xbjPqR6B-5o6lEQ6MXSPxuKy-px-85qhnRRYOcUXcQ,349
111
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_csv_folder.json,sha256=Vwgho85XordZV_RhAAhclJDgD727f7t9yQs0gn-MDPs,495
112
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_load_from_singlestore.json,sha256=AOWnKQ1C6p8hf6HNQ712N59h5xZCVaaqEL2QdhV3vj4,937
113
- cosmotech/orchestrator_plugins/csm-data/templates/store/store_reset.json,sha256=jWKRDVW9HrUXHPG-MgVU_PljLyJkeYf6Tzi9wmL8yGc,337
114
- cosmotech/translation/coal/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
115
- cosmotech/translation/coal/en-US/coal/solution.yml,sha256=gHf26F5XX3BEiHvvV0bUFjje9dwlTZsl9KWm1M0brkU,141
116
- cosmotech/translation/coal/en-US/coal/web.yml,sha256=I4Hu_zBm55cUsJVSSGQ0sk5KfX6GZPMmaXsLd2rG9u0,78
117
- cosmotech/translation/coal/en-US/coal/common/data_transfer.yml,sha256=dSoheA2bEpaO5nRXhlg8XSQOJsfa9A7AGHCg6nQ82cM,299
118
- cosmotech/translation/coal/en-US/coal/common/errors.yml,sha256=l1fiCZdTjff4R55PFLhj3hHx61u52DxHaKzJzc5ddA4,535
119
- cosmotech/translation/coal/en-US/coal/common/file_operations.yml,sha256=DxggJM431fnFveUemHRM0Y18GPn_Vgv-LRSZXVRNCaI,278
120
- cosmotech/translation/coal/en-US/coal/common/progress.yml,sha256=G_BTYgAYVD_JqU3rJ5fVTySQa0HtUcLNFoHRjSnBCwk,272
121
- cosmotech/translation/coal/en-US/coal/common/timing.yml,sha256=YtxIT8EKZDWD4hJ0tJOwkReUsrOY67Wq0MFkEZjzANE,274
122
- cosmotech/translation/coal/en-US/coal/common/validation.yml,sha256=OAHeXrvMo2_S-D0z-ESIS--U7bU0z1i0wta4ibaqk3c,528
123
- cosmotech/translation/coal/en-US/coal/cosmotech_api/connection.yml,sha256=2Om0DZmOI8u0hzlWWhWnGx-o0mzMk_vgE3hGRBNaWWU,518
124
- cosmotech/translation/coal/en-US/coal/cosmotech_api/run_data.yml,sha256=HogZqb_Mhu4yyJmklBzb44Uk0cDnM5ssb8NZMWQMw6c,84
125
- cosmotech/translation/coal/en-US/coal/cosmotech_api/run_template.yml,sha256=JIQ0S-9_YhchAPVFkcMpJTVUBlhPo4yS-nBoMysus5o,441
126
- cosmotech/translation/coal/en-US/coal/cosmotech_api/runner.yml,sha256=fSoFiJFJcowXwBVgfAkZKL8j3iKzyVDLWm48cFpiYMA,804
127
- cosmotech/translation/coal/en-US/coal/cosmotech_api/solution.yml,sha256=dKOTcv8bBYl3ZxyvKsQ8msO--PyLTfEOodb4rHl2bq4,216
128
- cosmotech/translation/coal/en-US/coal/cosmotech_api/workspace.yml,sha256=4RHIHZi_ziSYB_U-YoLxNTm3jD67yN1Cxr14W9XoTok,307
129
- cosmotech/translation/coal/en-US/coal/services/adx.yml,sha256=9yxR0qYKyA5mqgW-pX2J65JkkMcGFC3cPJChGmikJso,3502
130
- cosmotech/translation/coal/en-US/coal/services/api.yml,sha256=HPyKJaZrS41Qo9upRvPsLdn29QgS1xw3S-bgipHeO4s,342
131
- cosmotech/translation/coal/en-US/coal/services/azure_storage.yml,sha256=p0alxlJA_-NH9MxKXRKGgiLbBvHuQdCROhJKiqvuX0c,595
132
- cosmotech/translation/coal/en-US/coal/services/database.yml,sha256=S1pAu4OrVd9nAVb3oYSAurzA4cgD43UDlwK4qWhy2g4,860
133
- cosmotech/translation/coal/en-US/coal/services/dataset.yml,sha256=J-lP802jTb7J6CYBQ5iUXSFF44yd7P230NosQz9tnzk,3752
134
- cosmotech/translation/coal/en-US/coal/services/postgresql.yml,sha256=tRGNTTayyoxEHVyM-nzudEFdQ5HUeRIHPWIuvFmJGfM,1774
135
- cosmotech/translation/coal/en-US/coal/services/s3.yml,sha256=362wt7SdOu-MyMj9MgjQNTNWzIq-RJ9rUqc2VKljGFE,482
136
- cosmotech/translation/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
137
- cosmotech/translation/csm_data/en-US/csm_data/commands/main.yml,sha256=3XbXR5_Uo7PxJOWzm7XRMvPVxK-fzOL4FxWWY7rX3eg,396
138
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/api.yml,sha256=eMT4s1H9LuNUh_sAlnEtg7Co4ie3bFfB1vkwnLW28dQ,340
139
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/postgres_send_runner_metadata.yml,sha256=avckcrp2aYz7rzGCKEdL81hwHDVbcUn2csQ_krKLcaM,844
140
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_load_csv.yml,sha256=jaCmdHY0fJp9Sh2PcOizMyPIdvZU2iTIoSLNdfuLCXE,668
141
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_csv.yml,sha256=0I9MAGgdCmNHGN3sdRVSWzEobAABFsb9qVG_l0Vk7Sg,580
142
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/rds_send_store.yml,sha256=9vRnrqYYzSYMPNzR-Q7Gw5G7LOWlEd5GWepSyzg49i4,574
143
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/run_load_data.yml,sha256=k5J3HTA8vCmI_7CFHvMP51EAbmefubuoEhXZf2V3XDo,765
144
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/runtemplate_load_handler.yml,sha256=9jvMa6fb99CPzTMx7nnuoNNzJw7_7rapee7P80Plxjs,353
145
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_load_files.yml,sha256=ko4Nw96w6vBhE-68swd9h4edWgXCWIfMGqYc8Fvh2LM,569
146
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/tdl_send_files.yml,sha256=13eacNdU6i92XemHyx-bzIdXbQUIs6eg2YiT3SxivyM,836
147
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_load_file.yml,sha256=cnR_0PMkbrj8GROgvIUyeLXiB90IBbkcTvM9WJDEM0k,511
148
- cosmotech/translation/csm_data/en-US/csm_data/commands/api/wsf_send_file.yml,sha256=yvsD364GND1jLe_SJxuNXjDgGZFGlJlC5xUTRqV0fr0,632
149
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_data.yml,sha256=oNQMHhHMRTl7EfFLuEy5agctzgwGHsyKzAu6hlSUyU4,448
150
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/adx_send_runnerdata.yml,sha256=_IAZO1VVc2eVznA2VLb0_o3sEc8cSO-xw3H90pUTVGg,884
151
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/az_storage_upload.yml,sha256=KmVGI1RwFfFQnMUPAlRTJ6K3OXAYTy7GAitZfcWKdrw,473
152
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_delete.yml,sha256=GUCNXpiRui-BRwP8A7M4dXGr3LMBJw99z-b1ToFuESY,792
153
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_download.yml,sha256=GQPNFcdB0hIldX0kDBFNzHs11RckPBAA697BAJugZx8,872
154
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/s3_bucket_upload.yml,sha256=jIrdisG9FcvTrCM5jvTaCYccKKXtah7huSvXDK8bdEA,1100
155
- cosmotech/translation/csm_data/en-US/csm_data/commands/storage/storage.yml,sha256=NZrRzfnOpXrX5wBpEqr40CCmNGP5MXJ-aO7ks1YM58s,144
156
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_azure.yml,sha256=JqT9Cu1m4CLmZWvXTHAIS3xS8rK_BeKL041OEliBbn8,1299
157
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_postgresql.yml,sha256=QEQVHuXrSMsT2uOkiF-oMYlir1mINXXL-Irro_Ra3RM,900
158
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/dump_to_s3.yml,sha256=7pbLObdjZjcKeSfYI_3oAzp9AZOrwT5WiMcLOTj5rCc,1268
159
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/list_tables.yml,sha256=-x8zwCjAHILFaJv7VLPskipSoQTwmI7jUsxlx6_OKlc,195
160
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_csv_folder.yml,sha256=9HjW9tOq5o31jmADp_QIync7G74c6XGiPqofXh8pvv8,228
161
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/load_from_singlestore.yml,sha256=_OUXlxC_wi-GPgHU7EVdU9g0WIdblVpEA4WIzw4aQcQ,824
162
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/reset.yml,sha256=JMspZ25Q2HDpH8MYqUaQcveUnCgdH21RmfTCrPf2gW8,139
163
- cosmotech/translation/csm_data/en-US/csm_data/commands/store/store.yml,sha256=N1Q8483gqJADaCe30S1M3Rj0tMJiuQiJH70-VK2x2m4,134
164
- cosmotech/translation/csm_data/en-US/csm_data/commons/decorators.yml,sha256=Iu59NWMfYlZZf9uUhOiLkIEGa4GY5p0nZ6vG06Xvu7k,51
165
- cosmotech/translation/csm_data/en-US/csm_data/commons/version.yml,sha256=7jtCV3O1S6pGjiJa63XpgPDTafjfBS0xmEVRpYNvfDg,86
166
- cosmotech_acceleration_library-1.1.0.dist-info/licenses/LICENSE,sha256=JXKHOQtyObmafNbQlfPYc4HkKjU9FzAP27b2qRTXNM8,1195
167
- cosmotech_acceleration_library-1.1.0.dist-info/METADATA,sha256=0vbzAbv9QAqsAupcJkidNhiKPxpcST4kfalLmzOTm9g,9432
168
- cosmotech_acceleration_library-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
169
- cosmotech_acceleration_library-1.1.0.dist-info/entry_points.txt,sha256=HWRqJurKuBUgqFe4jmjIAQrs768Nbb8ZTdRDLbuKM5Q,58
170
- cosmotech_acceleration_library-1.1.0.dist-info/top_level.txt,sha256=t2pzb8mpMUfHTa9l2SjWP0rRB8XVRjBdQK5nLx9XDDo,10
171
- cosmotech_acceleration_library-1.1.0.dist-info/RECORD,,