cosmotech-acceleration-library 2.0.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 (42) hide show
  1. cosmotech/coal/__init__.py +1 -1
  2. cosmotech/coal/azure/__init__.py +5 -5
  3. cosmotech/coal/azure/adx/__init__.py +24 -10
  4. cosmotech/coal/azure/adx/ingestion.py +10 -14
  5. cosmotech/coal/azure/adx/query.py +1 -1
  6. cosmotech/coal/azure/adx/utils.py +2 -2
  7. cosmotech/coal/azure/blob.py +14 -20
  8. cosmotech/coal/cosmotech_api/apis/dataset.py +135 -16
  9. cosmotech/coal/cosmotech_api/apis/runner.py +23 -19
  10. cosmotech/coal/postgresql/runner.py +8 -11
  11. cosmotech/coal/postgresql/store.py +20 -25
  12. cosmotech/coal/postgresql/utils.py +2 -1
  13. cosmotech/coal/singlestore/store.py +3 -2
  14. cosmotech/coal/store/__init__.py +16 -13
  15. cosmotech/coal/store/output/aws_channel.py +12 -11
  16. cosmotech/coal/store/output/az_storage_channel.py +9 -18
  17. cosmotech/coal/store/output/channel_interface.py +15 -0
  18. cosmotech/coal/store/output/channel_spliter.py +11 -5
  19. cosmotech/coal/store/output/postgres_channel.py +7 -10
  20. cosmotech/coal/store/pandas.py +1 -1
  21. cosmotech/coal/store/pyarrow.py +2 -2
  22. cosmotech/coal/store/store.py +4 -7
  23. cosmotech/coal/utils/configuration.py +76 -48
  24. cosmotech/csm_data/commands/adx_send_data.py +1 -1
  25. cosmotech/csm_data/commands/adx_send_runnerdata.py +3 -2
  26. cosmotech/csm_data/commands/api/run_load_data.py +10 -8
  27. cosmotech/csm_data/commands/az_storage_upload.py +3 -2
  28. cosmotech/csm_data/commands/store/dump_to_azure.py +3 -2
  29. cosmotech/csm_data/commands/store/dump_to_postgresql.py +3 -2
  30. cosmotech/csm_data/commands/store/list_tables.py +3 -2
  31. cosmotech/csm_data/commands/store/load_csv_folder.py +10 -4
  32. cosmotech/csm_data/commands/store/load_from_singlestore.py +3 -2
  33. cosmotech/csm_data/commands/store/reset.py +8 -3
  34. cosmotech/csm_data/main.py +4 -4
  35. cosmotech/csm_data/utils/decorators.py +4 -3
  36. cosmotech/translation/coal/en-US/coal/services/dataset.yml +6 -0
  37. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/METADATA +26 -27
  38. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/RECORD +42 -42
  39. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/WHEEL +1 -1
  40. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/entry_points.txt +0 -0
  41. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/licenses/LICENSE +0 -0
  42. {cosmotech_acceleration_library-2.0.0.dist-info → cosmotech_acceleration_library-2.1.0rc1.dist-info}/top_level.txt +0 -0
@@ -4,10 +4,10 @@
4
4
  # Any use, reproduction, translation, broadcasting, transmission, distribution,
5
5
  # etc., to any person is prohibited unless it has been previously and
6
6
  # specifically authorized by written means by Cosmo Tech.
7
+ from cosmotech.orchestrator.utils.translate import T
7
8
 
8
9
  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
10
+ from cosmotech.csm_data.utils.decorators import translate_help, web_help
11
11
 
12
12
 
13
13
  @click.command()
@@ -24,7 +24,7 @@ from cosmotech.orchestrator.utils.translate import T
24
24
  )
25
25
  @click.option(
26
26
  "--csv-folder",
27
- envvar="CSM_DATASET_ABSOLUTE_PATH",
27
+ envvar="CSM_OUTPUT_ABSOLUTE_PATH",
28
28
  help=T("csm_data.commands.store.load_csv_folder.parameters.csv_folder"),
29
29
  metavar="PATH",
30
30
  type=str,
@@ -34,10 +34,16 @@ from cosmotech.orchestrator.utils.translate import T
34
34
  def load_csv_folder(store_folder, csv_folder):
35
35
  # Import the modules and functions at the start of the command
36
36
  import pathlib
37
+
37
38
  from cosmotech.coal.store.csv import store_csv_file
38
39
  from cosmotech.coal.store.store import Store
40
+ from cosmotech.coal.utils.configuration import Configuration
39
41
  from cosmotech.coal.utils.logger import LOGGER
40
42
 
43
+ _conf = Configuration()
44
+
45
+ _conf.coal.store = store_folder
46
+
41
47
  for csv_path in pathlib.Path(csv_folder).glob("*.csv"):
42
48
  LOGGER.info(T("coal.services.azure_storage.found_file").format(file=csv_path.name))
43
- store_csv_file(csv_path.name[:-4], csv_path, store=Store(False, store_folder))
49
+ store_csv_file(csv_path.name[:-4], csv_path, store=Store(False, _conf))
@@ -5,10 +5,11 @@
5
5
  # etc., to any person is prohibited unless it has been previously and
6
6
  # specifically authorized by written means by Cosmo Tech.
7
7
 
8
- from cosmotech.csm_data.utils.click import click
9
- from cosmotech.csm_data.utils.decorators import web_help, translate_help
10
8
  from cosmotech.orchestrator.utils.translate import T
11
9
 
10
+ from cosmotech.csm_data.utils.click import click
11
+ from cosmotech.csm_data.utils.decorators import translate_help, web_help
12
+
12
13
 
13
14
  @click.command()
14
15
  @web_help("csm-data/store/load-from-singlestore")
@@ -4,10 +4,10 @@
4
4
  # Any use, reproduction, translation, broadcasting, transmission, distribution,
5
5
  # etc., to any person is prohibited unless it has been previously and
6
6
  # specifically authorized by written means by Cosmo Tech.
7
+ from cosmotech.orchestrator.utils.translate import T
7
8
 
8
9
  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
10
+ from cosmotech.csm_data.utils.decorators import translate_help, web_help
11
11
 
12
12
 
13
13
  @click.command()
@@ -25,7 +25,12 @@ from cosmotech.orchestrator.utils.translate import T
25
25
  def reset(store_folder):
26
26
  # Import the modules and functions at the start of the command
27
27
  from cosmotech.coal.store.store import Store
28
+ from cosmotech.coal.utils.configuration import Configuration
28
29
  from cosmotech.coal.utils.logger import LOGGER
29
30
 
30
- Store(True, store_folder)
31
+ _conf = Configuration()
32
+
33
+ _conf.coal.store = store_folder
34
+
35
+ Store(True, _conf)
31
36
  LOGGER.info(T("coal.services.database.store_reset").format(folder=store_folder))
@@ -5,20 +5,20 @@
5
5
  # etc., to any person is prohibited unless it has been previously and
6
6
  # specifically authorized by written means by Cosmo Tech.
7
7
  import click_log
8
+ from cosmotech.orchestrator.utils.translate import T
8
9
 
9
10
  from cosmotech.coal import __version__
11
+ from cosmotech.coal.utils.logger import LOGGER
12
+ from cosmotech.csm_data.commands.adx_send_data import adx_send_data
10
13
  from cosmotech.csm_data.commands.adx_send_runnerdata import adx_send_runnerdata
11
14
  from cosmotech.csm_data.commands.api.api import api
12
15
  from cosmotech.csm_data.commands.az_storage_upload import az_storage_upload
16
+ from cosmotech.csm_data.commands.s3_bucket_delete import s3_bucket_delete
13
17
  from cosmotech.csm_data.commands.s3_bucket_download import s3_bucket_download
14
18
  from cosmotech.csm_data.commands.s3_bucket_upload import s3_bucket_upload
15
- from cosmotech.csm_data.commands.s3_bucket_delete import s3_bucket_delete
16
- from cosmotech.csm_data.commands.adx_send_data import adx_send_data
17
19
  from cosmotech.csm_data.commands.store.store import store
18
20
  from cosmotech.csm_data.utils.click import click
19
21
  from cosmotech.csm_data.utils.decorators import translate_help, web_help
20
- from cosmotech.coal.utils.logger import LOGGER
21
- from cosmotech.orchestrator.utils.translate import T
22
22
 
23
23
 
24
24
  def print_version(ctx, param, value):
@@ -9,10 +9,11 @@ import os
9
9
  import webbrowser
10
10
  from functools import wraps
11
11
 
12
+ from cosmotech.orchestrator.utils.translate import T
13
+
12
14
  from cosmotech.coal.utils import WEB_DOCUMENTATION_ROOT
13
- from cosmotech.csm_data.utils.click import click
14
15
  from cosmotech.coal.utils.logger import LOGGER
15
- from cosmotech.orchestrator.utils.translate import T
16
+ from cosmotech.csm_data.utils.click import click
16
17
 
17
18
 
18
19
  def translate_help(translation_key):
@@ -34,7 +35,7 @@ def require_env(envvar, envvar_desc):
34
35
  @wraps(func)
35
36
  def f(*args, **kwargs):
36
37
  if envvar not in os.environ:
37
- raise EnvironmentError(T("coal.errors.environment.missing_var").format(envvar=envvar))
38
+ raise EnvironmentError(T("coal.common.errors.missing_var").format(envvar=envvar))
38
39
  return func(*args, **kwargs)
39
40
 
40
41
  f.__doc__ = "\n".join([f.__doc__ or "", f"Requires env var `{envvar:<15}` *{envvar_desc}* "])
@@ -56,3 +56,9 @@ text_processed: "Processed text file {file_name} with {lines} lines"
56
56
  # Dataset API operations
57
57
  part_downloaded: "Downloaded part {part_name} to {file_path}"
58
58
  dataset_created: "Created dataset {dataset_id}"
59
+
60
+ # Dataset parts operations
61
+ part_uploaded: "Uploaded part {part_name}"
62
+ part_replaced: "Replaced existing part {part_name}"
63
+ part_skipped: "Skipped existing part {part_name} (use replace_existing=True to overwrite)"
64
+ parts_uploaded: "Successfully uploaded parts to dataset {dataset_id}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cosmotech_acceleration_library
3
- Version: 2.0.0
3
+ Version: 2.1.0rc1
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
@@ -8,26 +8,27 @@ Project-URL: Source, https://github.com/Cosmo-Tech/CosmoTech-Acceleration-Librar
8
8
  Project-URL: Documentation, https://cosmo-tech.github.io/CosmoTech-Acceleration-Library
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
- Requires-Dist: azure-functions~=1.20.0
12
- Requires-Dist: azure-digitaltwins-core~=1.2.0
13
- Requires-Dist: azure-identity~=1.16.1
14
- Requires-Dist: azure-kusto-data~=4.4.1
15
- Requires-Dist: azure-kusto-ingest~=4.4.1
16
- Requires-Dist: tenacity~=8.3.0
17
- Requires-Dist: python-keycloak~=4.7.3
11
+ Requires-Dist: azure-core~=1.38
12
+ Requires-Dist: azure-functions~=1.20
13
+ Requires-Dist: azure-digitaltwins-core~=1.2
14
+ Requires-Dist: azure-identity~=1.16
15
+ Requires-Dist: azure-kusto-data~=4.4
16
+ Requires-Dist: azure-kusto-ingest~=4.4
17
+ Requires-Dist: tenacity~=9.1
18
+ Requires-Dist: python-keycloak~=5.8
18
19
  Requires-Dist: cosmotech-api~=5.0.0rc1
19
- Requires-Dist: boto3~=1.35.19
20
- Requires-Dist: requests~=2.32.3
21
- Requires-Dist: singlestoredb~=1.10.0
20
+ Requires-Dist: boto3~=1.41
21
+ Requires-Dist: requests~=2.32
22
+ Requires-Dist: singlestoredb~=1.16
22
23
  Requires-Dist: cosmotech-run-orchestrator~=2.0.0
23
- Requires-Dist: pyarrow~=20.0.0
24
- Requires-Dist: adbc-driver-manager~=1.7.0
25
- Requires-Dist: adbc-driver-sqlite~=1.7.0
26
- Requires-Dist: adbc-driver-postgresql~=1.7.0
27
- Requires-Dist: click~=8.1.7
28
- Requires-Dist: rich-click~=1.7.3
29
- Requires-Dist: click-log~=0.4.0
30
- Requires-Dist: tqdm~=4.67.1
24
+ Requires-Dist: pyarrow~=22.0
25
+ Requires-Dist: adbc-driver-manager~=1.7
26
+ Requires-Dist: adbc-driver-sqlite~=1.7
27
+ Requires-Dist: adbc-driver-postgresql~=1.7
28
+ Requires-Dist: click~=8.1
29
+ Requires-Dist: rich-click~=1.7
30
+ Requires-Dist: click-log~=0.4
31
+ Requires-Dist: tqdm~=4.67
31
32
  Requires-Dist: openpyxl~=3.1
32
33
  Requires-Dist: pandas~=2.3
33
34
  Requires-Dist: python-dateutil~=2.8
@@ -35,14 +36,12 @@ Requires-Dist: rich~=13.7
35
36
  Requires-Dist: setuptools
36
37
  Provides-Extra: doc
37
38
  Requires-Dist: mkdocs~=1.6.1; extra == "doc"
38
- Requires-Dist: mkdocs-click~=0.8.1; extra == "doc"
39
- Requires-Dist: mkdocs-gen-files~=0.5.0; extra == "doc"
40
- Requires-Dist: mkdocstrings[python]~=0.28.2; extra == "doc"
39
+ Requires-Dist: mkdocs-click~=0.8; extra == "doc"
40
+ Requires-Dist: mkdocs-gen-files~=0.5; extra == "doc"
41
41
  Requires-Dist: mkdocs-awesome-nav~=3.1.2; extra == "doc"
42
42
  Requires-Dist: pymdown-extensions~=10.7; extra == "doc"
43
- Requires-Dist: requirements-parser~=0.11.0; extra == "doc"
44
- Requires-Dist: mike~=2.0.0; extra == "doc"
45
- Requires-Dist: griffe~=1.5.7; extra == "doc"
43
+ Requires-Dist: requirements-parser~=0.11; extra == "doc"
44
+ Requires-Dist: mike~=2.1.0; extra == "doc"
46
45
  Requires-Dist: mkdocs-include-dir-to-nav~=1.2.0; extra == "doc"
47
46
  Requires-Dist: mkdocs-material[imaging]~=9.6.14; extra == "doc"
48
47
  Requires-Dist: mkdocs-table-reader-plugin~=2.0.3; extra == "doc"
@@ -52,9 +51,9 @@ Requires-Dist: pytest; extra == "test"
52
51
  Requires-Dist: pytest-docker; extra == "test"
53
52
  Requires-Dist: pytest-cov; extra == "test"
54
53
  Provides-Extra: dev
55
- Requires-Dist: black~=24.3.0; extra == "dev"
54
+ Requires-Dist: black~=25.0; extra == "dev"
56
55
  Requires-Dist: pre-commit~=3.3.2; extra == "dev"
57
- Requires-Dist: isort~=7.0.0; extra == "dev"
56
+ Requires-Dist: isort~=7.0; extra == "dev"
58
57
  Provides-Extra: all
59
58
  Requires-Dist: CosmoTech_Acceleration_Library[dev,doc,test]; extra == "all"
60
59
  Dynamic: license-file
@@ -1,24 +1,24 @@
1
- cosmotech/coal/__init__.py,sha256=5GlLyV1soguj1xNP_KdhUDoCa5hTAunpZAKbapYdsKk,436
1
+ cosmotech/coal/__init__.py,sha256=-QWX8vGspoMFG2cOvq21Sg4KBpIZUzhd76Kv7-6-6yg,440
2
2
  cosmotech/coal/aws/__init__.py,sha256=qZZyxNCwGa1yPpIEc7CS6sVcv00PNcUnUOsKhsHBSdc,614
3
3
  cosmotech/coal/aws/s3.py,sha256=5az9BtyUUBlfqFV3BG32V5-9yDpm-6q_O4YV79HcmMA,7522
4
- cosmotech/coal/azure/__init__.py,sha256=1SmwP1y7quGq9cWqiWxJy1XDjWM8sAc3f63ztBnYujQ,796
5
- cosmotech/coal/azure/blob.py,sha256=C2i1JIC7Z4Iv_RLzbyFqbHao9JsJI9jMiBAo6Bix6Ns,4082
4
+ cosmotech/coal/azure/__init__.py,sha256=Zp7v4g2Tp6h8j6_-_drMNHdEaq8FqfKhlZOwvfxhiMc,796
5
+ cosmotech/coal/azure/blob.py,sha256=p1iG2_lWA2UDZQrYIkz1TCK1--5IVeaSmyDC0RenFt0,4019
6
6
  cosmotech/coal/azure/storage.py,sha256=TItajcil0Ht44kru44T9HIP2cizOvAS_H9uRdSgaBG0,2799
7
- cosmotech/coal/azure/adx/__init__.py,sha256=zRYssRscq30jJ1q1CPUK6S3Sq4EBqZ_uL0M1ju3vktw,1227
7
+ cosmotech/coal/azure/adx/__init__.py,sha256=-nDfPlb1lC1zy_1llxi82FT0hWVYGfYPMgAaQNa6Dak,1286
8
8
  cosmotech/coal/azure/adx/auth.py,sha256=IFNaB8eoc99_j3Ml6rueYfuFK36rze4_8LG7B0gYdIQ,4748
9
- cosmotech/coal/azure/adx/ingestion.py,sha256=--hOB5iUWe-RwXpFC5EaBDmWbJrIAtYula59wrUzCM8,11455
10
- cosmotech/coal/azure/adx/query.py,sha256=SHMeGX-TNBfQE_DV-J5lrHxqDXgftYiLCasDhgO79rQ,1870
9
+ cosmotech/coal/azure/adx/ingestion.py,sha256=pDksvQzzONSSbFRTcf4EzgNhwe7MkhY3lCkNvlgG8U4,11266
10
+ cosmotech/coal/azure/adx/query.py,sha256=JrTqZaQ6Ody21rbjkEIx4J3lYJ1-gOJxFKJRrbEpdi0,1870
11
11
  cosmotech/coal/azure/adx/runner.py,sha256=IXgciGxHjSqkiqm23CuyUk3RgCUgd1G-e0eMyohjygM,8066
12
12
  cosmotech/coal/azure/adx/store.py,sha256=7fxG3yVxQ9_6sLaSU1Z4cxmsMcSO58Ni371FD2m_4LA,6214
13
13
  cosmotech/coal/azure/adx/tables.py,sha256=y6GBrjXAKAOn7q4Ekf-hV6K5P3ejdV2L57FbFDvp22c,4287
14
- cosmotech/coal/azure/adx/utils.py,sha256=nOq4WLTMDs95da-jsWJVYcv2MRcwUMvARv5Z0ivIVUo,2205
14
+ cosmotech/coal/azure/adx/utils.py,sha256=0MCnIJ-UijovA04byFbSwO4QVUMVn7v3P7dxGpdN_zM,2205
15
15
  cosmotech/coal/cosmotech_api/__init__.py,sha256=YlIyLwoqd4CveVnfrA9UDunlhO9HSvrBAfUwzcBay5M,528
16
16
  cosmotech/coal/cosmotech_api/apis/__init__.py,sha256=RDe2FXBCrgUoSAONfpf_Udyc3M3w2y9K9mjFzUX_SMY,869
17
- cosmotech/coal/cosmotech_api/apis/dataset.py,sha256=Ymo5NtIARiZtuzHOciRh4WzDaGMSo92KanxqptfVdzc,3946
17
+ cosmotech/coal/cosmotech_api/apis/dataset.py,sha256=CtIrRvykUhJ9cFZqz8WEj-gn1trx9NXp9NAfKQklteU,8874
18
18
  cosmotech/coal/cosmotech_api/apis/meta.py,sha256=lCi5Jo7c_gXewob9B_NgvRyKAmPSJ_bVK7Z_pIVUyP8,1055
19
19
  cosmotech/coal/cosmotech_api/apis/organization.py,sha256=JA55Bu4mJL5aE7UNtnPDWyjB6YZktSsnCzOvs9bW34g,1102
20
20
  cosmotech/coal/cosmotech_api/apis/run.py,sha256=TOVD0E4QIR26rBZr3MjsWuSbYcKcuTVSJsq_zD4nzD0,1528
21
- cosmotech/coal/cosmotech_api/apis/runner.py,sha256=ls-xuAfiCFa-2m7DgL_W_iB_y_y1q4JBt1eOOHSMdqE,2834
21
+ cosmotech/coal/cosmotech_api/apis/runner.py,sha256=Q9y3DDKFYRMcibMPkU7K0pv6M5z2On5oFG2JrMIHkPY,3115
22
22
  cosmotech/coal/cosmotech_api/apis/solution.py,sha256=rGsbtkVkhrt0vAano4HcIYQJFaXGSpWCHLku2TEpEHI,1077
23
23
  cosmotech/coal/cosmotech_api/apis/workspace.py,sha256=YeXuODKJnwpdO2g2yaJzg9095VyzAuGlMV1JL1hNMsU,4330
24
24
  cosmotech/coal/cosmotech_api/objects/__init__.py,sha256=6cWMAAyhCK478_Je9Opsu0NBv617aTQo3r9mhbV2wwo,556
@@ -27,55 +27,55 @@ cosmotech/coal/cosmotech_api/objects/parameters.py,sha256=6T4yJMm_yvularJwMIeg8q
27
27
  cosmotech/coal/csm/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
28
28
  cosmotech/coal/csm/engine/__init__.py,sha256=EG3iArAy3OFGPmClsYXQmb77YYrEkeVC5uwPg_TbAYI,2120
29
29
  cosmotech/coal/postgresql/__init__.py,sha256=766LBZyWCQUI6rlzXDY_C9Yrxg551VX2L4lOuhDiS8w,786
30
- cosmotech/coal/postgresql/runner.py,sha256=9UVVvX0FX6X-ZwaUGZiGLso410YdR28BF_bb45Urfww,4189
31
- cosmotech/coal/postgresql/store.py,sha256=bJ-tUjJt8-MFi5GcmkE7sYZFzXDvKkwoo1rbXayvOzo,5371
32
- cosmotech/coal/postgresql/utils.py,sha256=F-qHUxCS4BXOiOTuA5YVQdkOO10T-BMWTdE70L9UIfM,9642
30
+ cosmotech/coal/postgresql/runner.py,sha256=DqXM_GBiVQQ_QcNitEC4t9jthoNxUKsPvuaAWQ3BCQ8,4091
31
+ cosmotech/coal/postgresql/store.py,sha256=dyKwqngpSm40fZ5Fo4vHyU3gnRdC_xdk8USc_Qs06xM,5176
32
+ cosmotech/coal/postgresql/utils.py,sha256=zM69jq2XLiS8KgX6Zgo3W3GOZ8kb8goq-HMIRyx0EBU,9663
33
33
  cosmotech/coal/singlestore/__init__.py,sha256=gXQaa8OAHnDcI7iHy-5zzGG7ZqNq-uOtw60qASjwu9I,651
34
- cosmotech/coal/singlestore/store.py,sha256=jF3gkg2qW_SrtbVKkBJ-SCtV6ukd2eLnFySOvMZFvMY,3577
35
- cosmotech/coal/store/__init__.py,sha256=kWGM9B-Y-M257OYbouJ-1JLES5qecQbGeUBbcgyrsEo,1307
34
+ cosmotech/coal/singlestore/store.py,sha256=C6EbXRAxsZmW1It3FTb9NEOK4H_oMBfNOTvhwPjrE8o,3578
35
+ cosmotech/coal/store/__init__.py,sha256=3UicSottHGQ3yjWv_ib8GBRUYcZ9-cwSq_wvXq7TpxQ,1395
36
36
  cosmotech/coal/store/csv.py,sha256=2toydK0aSs1WLhO2_mSKpCJsaMGs7aBlL7RLASNalto,1494
37
37
  cosmotech/coal/store/native_python.py,sha256=Mp2U7tkUjH1wT76U4WzekaW4H5nN2VHTrAKnJ4NzB8E,847
38
- cosmotech/coal/store/pandas.py,sha256=A2eWPDsAqI2fTNmIpJa0Qzwrh3vMfvSHPLuoxQ77OPM,906
39
- cosmotech/coal/store/pyarrow.py,sha256=i7f7vSd5BtOnR4oleRHTG3ff0o8NaJr4c9fRb7zgYmE,814
40
- cosmotech/coal/store/store.py,sha256=a9wSThk7K8tD1r_BJG1Zl2d4pfo23TqKUH82_u9H-tk,3353
38
+ cosmotech/coal/store/pandas.py,sha256=ZvyK1APmcGscdt48401eBfm3zgvX3FKFfARsbV7kWcI,906
39
+ cosmotech/coal/store/pyarrow.py,sha256=tchLfthMRYiEXFrkjLDNXdDOOJYO7l3hSBH35MaNVg0,814
40
+ cosmotech/coal/store/store.py,sha256=1XIIRQL4Af-R1UdJlo-AzmDxtKoIYOtm7KvPdhTWJ-o,3390
41
41
  cosmotech/coal/store/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- cosmotech/coal/store/output/aws_channel.py,sha256=31m--qcnIyyCXpd7G4072tmDaHHx7RzLdVtl1XmaPMQ,2948
43
- cosmotech/coal/store/output/az_storage_channel.py,sha256=zD8BsjuWsAr9BMq7sLYrlbMOoKDIl792_tqKJwegdsM,1425
44
- cosmotech/coal/store/output/channel_interface.py,sha256=ojLDvpsBz2xOVhVxgeyQkNx0w-Rw66hcPesp24QQ5TI,670
45
- cosmotech/coal/store/output/channel_spliter.py,sha256=HU0KssksIPI_cBruVy-jQmS2t8w74mHiy-kYrbCZdEs,2203
46
- cosmotech/coal/store/output/postgres_channel.py,sha256=DXYVATnvIaCUtjTw3VrKc7EdbvjLOD69WotJESfUC30,1384
42
+ cosmotech/coal/store/output/aws_channel.py,sha256=0YZ0OjAEnDGOu48ZAFZP-y2IU_quqY0zSxhFwp509MM,2881
43
+ cosmotech/coal/store/output/az_storage_channel.py,sha256=WYMJD1dovg1SLXJFdaJnBIG86cHaFc9Y4avAX1143hk,842
44
+ cosmotech/coal/store/output/channel_interface.py,sha256=C_rbZnGOf-5YO8rnxTRe_Pd0EZ_2FNwLr3qSiKyUpWw,1241
45
+ cosmotech/coal/store/output/channel_spliter.py,sha256=f7ljfkqcuURLSeok7jr2nW5sqMSnMeuLonQEJTQlrX8,2441
46
+ cosmotech/coal/store/output/postgres_channel.py,sha256=HOqGSlAbRFN6yIneKjyxqAcTri83HmJkZVu74L3l99Y,1184
47
47
  cosmotech/coal/utils/__init__.py,sha256=N2mPhli0Wj4OesuRVbt2KrzL_pgMELs4fDNIQYb_r-g,830
48
- cosmotech/coal/utils/configuration.py,sha256=0awBiD0d2m0zgMBV4IAm47rTAgHaV9xska2UUa8kVF0,6533
48
+ cosmotech/coal/utils/configuration.py,sha256=dFfjJHW1WPLqhg6kBsYOAwvk3h04i-YL2oAuzTAT-Xk,7460
49
49
  cosmotech/coal/utils/decorator.py,sha256=p4yqkbln-YTppzeKvi3K4ZZ6AibVYGD6pnJQk0ynWbE,646
50
50
  cosmotech/coal/utils/logger.py,sha256=oYVj2BtDPji4e4J-KgaDyVcbKiewkq0xey_gQPm74Xc,506
51
51
  cosmotech/csm_data/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
52
- cosmotech/csm_data/main.py,sha256=q20Gl1x7DV0gWStnWJUVnhUrvv-TPrUhv3e-5X3TDEM,2424
52
+ cosmotech/csm_data/main.py,sha256=Io-qKkUt7BT9ovA-_rQCATnZHWhgpGLP7n0en7L1SiU,2424
53
53
  cosmotech/csm_data/commands/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
54
- cosmotech/csm_data/commands/adx_send_data.py,sha256=wKt30RmuS1FdnhgW0mJZVXifnI_YLRLaj4w5DYlPl7s,2638
55
- cosmotech/csm_data/commands/adx_send_runnerdata.py,sha256=SHZ0RijCnYRrAdCgdbW_YTaN3joihtNtbLzZAICCzJ4,3713
56
- cosmotech/csm_data/commands/az_storage_upload.py,sha256=7qXhFxftfil72tG23HTvHiW708t4QkM4rymcFJSPCj4,2344
54
+ cosmotech/csm_data/commands/adx_send_data.py,sha256=FH8-_DRtM1qccHRCIRFqaZq2YiHz5pWLJUOTfPDSYOI,2638
55
+ cosmotech/csm_data/commands/adx_send_runnerdata.py,sha256=Pg40TQw38W40qcqvqf9B7y9w2uFj8KtH0_9_n0onvG8,3714
56
+ cosmotech/csm_data/commands/az_storage_upload.py,sha256=EvPOLvVL4vteaPbBHbC0gR2drnYbSppP6RlaklmZHXw,2345
57
57
  cosmotech/csm_data/commands/s3_bucket_delete.py,sha256=2Sx3sLkiQxTd9MNL85zUZCvNTi6bZKxusQmu8xG0EYY,3056
58
58
  cosmotech/csm_data/commands/s3_bucket_download.py,sha256=X0IahwMTzPUelTLZvNKIKkV2NMK6W8zw_Qp2hjFSsaA,3367
59
59
  cosmotech/csm_data/commands/s3_bucket_upload.py,sha256=MKRFoYS9-MMCdk_jVRDF-Kx3YitjlmqUxX6-kd2CyxQ,3599
60
60
  cosmotech/csm_data/commands/api/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
61
61
  cosmotech/csm_data/commands/api/api.py,sha256=v8qBRjI1he8o6hDXmjmptTUdO8F92sgwr9glszsy49o,1698
62
62
  cosmotech/csm_data/commands/api/postgres_send_runner_metadata.py,sha256=h_24m7sBrA4Dej7UyIsAzlpJi9mGIM5MBiUHxN8PT08,4235
63
- cosmotech/csm_data/commands/api/run_load_data.py,sha256=XL_txDSMdNLePa2ScidF8CzUVTasn9SAtKZXE4Gmo8A,2576
63
+ cosmotech/csm_data/commands/api/run_load_data.py,sha256=IXCCXb3wKPZTeQybteMqXWreQHggQ3GALfNIw2bphys,2831
64
64
  cosmotech/csm_data/commands/api/wsf_load_file.py,sha256=wnNvRY1D7GBE5lQz5KOQ9x5T_wxs-4wIfGPO4jiMcwQ,2103
65
65
  cosmotech/csm_data/commands/api/wsf_send_file.py,sha256=AC-Li-2tN5KAtIE5TnElRbSgUTNCa7uWkn90MlOozjg,2045
66
66
  cosmotech/csm_data/commands/store/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
67
- cosmotech/csm_data/commands/store/dump_to_azure.py,sha256=5nnK7LUATRTlfX8tmFRLBmkD15bgG37Lyn7fEuPJiNE,3313
68
- cosmotech/csm_data/commands/store/dump_to_postgresql.py,sha256=3ZfIwIfLXYeBb6SwBSV6-CiWdid8Udht4ILWeZNdLWM,3596
67
+ cosmotech/csm_data/commands/store/dump_to_azure.py,sha256=9vavbHHueqdGbSjbt2GLnM2adzm7bDpmt_zUeX9ArZU,3314
68
+ cosmotech/csm_data/commands/store/dump_to_postgresql.py,sha256=7SB9e9TT8Kn3xeK0P4COTww-dsTJdG0vwjHAKkPob18,3597
69
69
  cosmotech/csm_data/commands/store/dump_to_s3.py,sha256=6EUwtkP8_k9Hlq65R9h-MYsH58e-UAYmSR95JKoZuvY,5342
70
- cosmotech/csm_data/commands/store/list_tables.py,sha256=epgVJAaP8QfSsEuL9n5S8smsfIxK-Cr0bLv88FAnkWw,1860
71
- cosmotech/csm_data/commands/store/load_csv_folder.py,sha256=gDKCxWIpXqhtRvlvRMM7SmyJ9_YHQ1UZHuA6NYdPTZA,1717
72
- cosmotech/csm_data/commands/store/load_from_singlestore.py,sha256=dWZ4jIKl8wsnOX_6qqtyQmkFQhLgjUAOZWab-sGzQ2g,3104
70
+ cosmotech/csm_data/commands/store/list_tables.py,sha256=dkrVANYhSD2FD1iny60ZXkaKZP5dPuK_eJ3R0gvlJtE,1861
71
+ cosmotech/csm_data/commands/store/load_csv_folder.py,sha256=aiMWmrC87kqTRJK06g16KlA90eXjPaFGswr2yZXJ2nM,1841
72
+ cosmotech/csm_data/commands/store/load_from_singlestore.py,sha256=cMPHnIfcjl4L7whwhs1sOkHf9eJbsj5s9ltzXO34KcM,3105
73
73
  cosmotech/csm_data/commands/store/output.py,sha256=RkBQxZ6c-p6F3A0Ci7wW-ODHsrJJO8ivzQCumvjoqXI,1218
74
- cosmotech/csm_data/commands/store/reset.py,sha256=3B0E0m0nCy3vwai_D5sWWddMZWuWkWnaL1tvgR6L5Ow,1237
74
+ cosmotech/csm_data/commands/store/reset.py,sha256=At33wH3r_bITlUphp84NkBQNfz_8kW5FRlQDELopsUA,1361
75
75
  cosmotech/csm_data/commands/store/store.py,sha256=oQhTIF1WKKGKdFp1rNm1vuTgblmh27r_jQpPhNFmesE,1663
76
76
  cosmotech/csm_data/utils/__init__.py,sha256=iD-xBT9s4HxXsO6FFIZiwlEmOl3qtsh93zHh9UKkT1g,413
77
77
  cosmotech/csm_data/utils/click.py,sha256=S_85cbKh3R86-FZVjTK7IXZnmp4ETjKo6K8gbK3HCgs,848
78
- cosmotech/csm_data/utils/decorators.py,sha256=dTcPRTYqY18mc8Ql4Qwd3gU7BxbNxfeKskQdVIsE3-g,2504
78
+ cosmotech/csm_data/utils/decorators.py,sha256=HlteYuqP8WWIIErKRhvT1wYsUT5ZCZAQNTAXs70Tc8g,2500
79
79
  cosmotech/orchestrator_plugins/csm-data/__init__.py,sha256=UPzNgaNBMoBaxSlnofxl988dAswMp_tv8DzaR_IxkiE,519
80
80
  cosmotech/orchestrator_plugins/csm-data/templates/api/postgres_send_runner_metadata.json,sha256=alXzvOa985PvN5nf3uoTsFXgY29EJWeK94CcBjoLFUk,1085
81
81
  cosmotech/orchestrator_plugins/csm-data/templates/api/run_load_data.json,sha256=_ztHPGu5UbbdtQHUCaOuKqwtjB0DrZSZwcUePoOgS40,894
@@ -113,7 +113,7 @@ cosmotech/translation/coal/en-US/coal/services/adx.yml,sha256=9yxR0qYKyA5mqgW-pX
113
113
  cosmotech/translation/coal/en-US/coal/services/api.yml,sha256=HPyKJaZrS41Qo9upRvPsLdn29QgS1xw3S-bgipHeO4s,342
114
114
  cosmotech/translation/coal/en-US/coal/services/azure_storage.yml,sha256=p0alxlJA_-NH9MxKXRKGgiLbBvHuQdCROhJKiqvuX0c,595
115
115
  cosmotech/translation/coal/en-US/coal/services/database.yml,sha256=S1pAu4OrVd9nAVb3oYSAurzA4cgD43UDlwK4qWhy2g4,860
116
- cosmotech/translation/coal/en-US/coal/services/dataset.yml,sha256=aaFBSwkoakMbyjMVeljp7RfC-h4wEvclZqMOBD8ynSo,2981
116
+ cosmotech/translation/coal/en-US/coal/services/dataset.yml,sha256=W-MHnp9E3udMGXdPriVZF7xgPSh1ksA3tFc7M7xMCkE,3265
117
117
  cosmotech/translation/coal/en-US/coal/services/postgresql.yml,sha256=tRGNTTayyoxEHVyM-nzudEFdQ5HUeRIHPWIuvFmJGfM,1774
118
118
  cosmotech/translation/coal/en-US/coal/services/s3.yml,sha256=362wt7SdOu-MyMj9MgjQNTNWzIq-RJ9rUqc2VKljGFE,482
119
119
  cosmotech/translation/coal/en-US/coal/store/output/data_interface.yml,sha256=4pVJPAXYeIq9Gpmg_0VpSrB17AsGWA9hvk8Qi8-kZvw,85
@@ -145,9 +145,9 @@ cosmotech/translation/csm_data/en-US/csm_data/commands/store/reset.yml,sha256=JM
145
145
  cosmotech/translation/csm_data/en-US/csm_data/commands/store/store.yml,sha256=N1Q8483gqJADaCe30S1M3Rj0tMJiuQiJH70-VK2x2m4,134
146
146
  cosmotech/translation/csm_data/en-US/csm_data/commons/decorators.yml,sha256=Iu59NWMfYlZZf9uUhOiLkIEGa4GY5p0nZ6vG06Xvu7k,51
147
147
  cosmotech/translation/csm_data/en-US/csm_data/commons/version.yml,sha256=7jtCV3O1S6pGjiJa63XpgPDTafjfBS0xmEVRpYNvfDg,86
148
- cosmotech_acceleration_library-2.0.0.dist-info/licenses/LICENSE,sha256=JXKHOQtyObmafNbQlfPYc4HkKjU9FzAP27b2qRTXNM8,1195
149
- cosmotech_acceleration_library-2.0.0.dist-info/METADATA,sha256=LVDVBJn0B1rE1z4rKbm3wUG5UKKt3Qj6Jkm2lGcLDxk,9334
150
- cosmotech_acceleration_library-2.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
151
- cosmotech_acceleration_library-2.0.0.dist-info/entry_points.txt,sha256=HWRqJurKuBUgqFe4jmjIAQrs768Nbb8ZTdRDLbuKM5Q,58
152
- cosmotech_acceleration_library-2.0.0.dist-info/top_level.txt,sha256=t2pzb8mpMUfHTa9l2SjWP0rRB8XVRjBdQK5nLx9XDDo,10
153
- cosmotech_acceleration_library-2.0.0.dist-info/RECORD,,
148
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/licenses/LICENSE,sha256=JXKHOQtyObmafNbQlfPYc4HkKjU9FzAP27b2qRTXNM8,1195
149
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/METADATA,sha256=OLnJ8oFZytFr3FZL0R-gPy2lUwoVA4KosLZt5U3Y77c,9217
150
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
151
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/entry_points.txt,sha256=HWRqJurKuBUgqFe4jmjIAQrs768Nbb8ZTdRDLbuKM5Q,58
152
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/top_level.txt,sha256=t2pzb8mpMUfHTa9l2SjWP0rRB8XVRjBdQK5nLx9XDDo,10
153
+ cosmotech_acceleration_library-2.1.0rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5