datacrunch 1.17.2__py3-none-any.whl → 1.17.3__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 (32) hide show
  1. datacrunch/InferenceClient/__init__.py +1 -1
  2. datacrunch/InferenceClient/inference_client.py +1 -1
  3. datacrunch/__init__.py +3 -3
  4. datacrunch/authentication/__init__.py +0 -0
  5. datacrunch/balance/__init__.py +0 -0
  6. datacrunch/containers/__init__.py +0 -0
  7. datacrunch/datacrunch.py +12 -12
  8. datacrunch/http_client/__init__.py +0 -0
  9. datacrunch/images/__init__.py +0 -0
  10. datacrunch/instance_types/__init__.py +0 -0
  11. datacrunch/instances/__init__.py +0 -0
  12. datacrunch/locations/__init__.py +0 -0
  13. datacrunch/ssh_keys/__init__.py +0 -0
  14. datacrunch/startup_scripts/__init__.py +0 -0
  15. datacrunch/volume_types/__init__.py +0 -0
  16. datacrunch/volumes/__init__.py +0 -0
  17. {datacrunch-1.17.2.dist-info → datacrunch-1.17.3.dist-info}/METADATA +2 -2
  18. datacrunch-1.17.3.dist-info/RECORD +34 -0
  19. datacrunch-1.17.2.dist-info/RECORD +0 -22
  20. /datacrunch/{authentication.py → authentication/authentication.py} +0 -0
  21. /datacrunch/{balance.py → balance/balance.py} +0 -0
  22. /datacrunch/{containers.py → containers/containers.py} +0 -0
  23. /datacrunch/{http_client.py → http_client/http_client.py} +0 -0
  24. /datacrunch/{images.py → images/images.py} +0 -0
  25. /datacrunch/{instance_types.py → instance_types/instance_types.py} +0 -0
  26. /datacrunch/{instances.py → instances/instances.py} +0 -0
  27. /datacrunch/{locations.py → locations/locations.py} +0 -0
  28. /datacrunch/{ssh_keys.py → ssh_keys/ssh_keys.py} +0 -0
  29. /datacrunch/{startup_scripts.py → startup_scripts/startup_scripts.py} +0 -0
  30. /datacrunch/{volume_types.py → volume_types/volume_types.py} +0 -0
  31. /datacrunch/{volumes.py → volumes/volumes.py} +0 -0
  32. {datacrunch-1.17.2.dist-info → datacrunch-1.17.3.dist-info}/WHEEL +0 -0
@@ -1,3 +1,3 @@
1
- from verda.InferenceClient import InferenceClient, InferenceResponse
1
+ from verda.inference_client import InferenceClient, InferenceResponse
2
2
 
3
3
  __all__ = ['InferenceClient', 'InferenceResponse']
@@ -1 +1 @@
1
- from verda.InferenceClient.inference_client import *
1
+ from verda.inference_client import *
datacrunch/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  # Compatibility layer for deprecated `datacrunch` package
2
2
 
3
+ from verda import VerdaClient as DataCrunchClient
3
4
  from verda import (
4
- InferenceClient,
5
5
  __version__,
6
6
  authentication,
7
7
  balance,
@@ -19,12 +19,12 @@ from verda import (
19
19
  volume_types,
20
20
  volumes,
21
21
  )
22
- from verda import VerdaClient as DataCrunchClient
22
+ from verda import inference_client as Inference_client
23
23
 
24
24
  # For old `from datacrunch import *``
25
25
  __all__ = [
26
26
  'DataCrunchClient',
27
- 'InferenceClient',
27
+ 'Inference_client',
28
28
  '__version__',
29
29
  'authentication',
30
30
  'balance',
File without changes
File without changes
File without changes
datacrunch/datacrunch.py CHANGED
@@ -2,19 +2,19 @@
2
2
 
3
3
  from verda import VerdaClient as DataCrunchClient
4
4
  from verda._version import __version__
5
- from verda.authentication.authentication import AuthenticationService
6
- from verda.balance.balance import BalanceService
5
+ from verda.authentication import AuthenticationService
6
+ from verda.balance import BalanceService
7
7
  from verda.constants import Constants
8
- from verda.containers.containers import ContainersService
9
- from verda.http_client.http_client import HTTPClient
10
- from verda.images.images import ImagesService
11
- from verda.instance_types.instance_types import InstanceTypesService
12
- from verda.instances.instances import InstancesService
13
- from verda.locations.locations import LocationsService
14
- from verda.ssh_keys.ssh_keys import SSHKeysService
15
- from verda.startup_scripts.startup_scripts import StartupScriptsService
16
- from verda.volume_types.volume_types import VolumeTypesService
17
- from verda.volumes.volumes import VolumesService
8
+ from verda.containers import ContainersService
9
+ from verda.http_client import HTTPClient
10
+ from verda.images import ImagesService
11
+ from verda.instance_types import InstanceTypesService
12
+ from verda.instances import InstancesService
13
+ from verda.locations import LocationsService
14
+ from verda.ssh_keys import SSHKeysService
15
+ from verda.startup_scripts import StartupScriptsService
16
+ from verda.volume_types import VolumeTypesService
17
+ from verda.volumes import VolumesService
18
18
 
19
19
  # for `from datacrunch.datacrunch import *`
20
20
  __all__ = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: datacrunch
3
- Version: 1.17.2
3
+ Version: 1.17.3
4
4
  Summary: datacrunch is now verda
5
5
  Author: Verda Cloud Oy
6
6
  Author-email: Verda Cloud Oy <info@verda.com>
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Programming Language :: Python :: 3.13
17
17
  Classifier: Programming Language :: Python :: 3.14
18
- Requires-Dist: verda==1.17.2
18
+ Requires-Dist: verda==1.17.3
19
19
  Requires-Python: >=3.10
20
20
  Project-URL: Changelog, https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md
21
21
  Project-URL: Documentation, https://datacrunch-python.readthedocs.io/
@@ -0,0 +1,34 @@
1
+ datacrunch/InferenceClient/__init__.py,sha256=s-eVheLPTKTBX98rRfrmwwkarDGP7FYoBl5bbzqIZec,122
2
+ datacrunch/InferenceClient/inference_client.py,sha256=aVeTfJw5TaoxaRb3r5gEPYg8m-scHQKnVjsRHNAy9So,37
3
+ datacrunch/__init__.py,sha256=72wNYvEqO_w-oq2yLwsaKyeUQ0JlVFawldYTKP_cKao,1069
4
+ datacrunch/authentication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ datacrunch/authentication/authentication.py,sha256=SKq4wOL4dxgjY3IDtNNILghVzD9pGIseEBa6vWRLO9I,35
6
+ datacrunch/balance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ datacrunch/balance/balance.py,sha256=Z3rGerIGyDl_RHTJHx5dtLOOifklNo5vG2gVJ_vyqec,28
8
+ datacrunch/constants.py,sha256=e2vvNmrptTm5oa1b1YqM9wo_92ctsWgy540KuTaGjAQ,30
9
+ datacrunch/containers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ datacrunch/containers/containers.py,sha256=8MBb7scJdoiZDiF1n1MWfleFg5sllc_z-NESXhBLA1Q,31
11
+ datacrunch/datacrunch.py,sha256=J-HJDyrD3I3rf5nbGoGILkH5iiD3YKgvMBLjpowYNQ8,1384
12
+ datacrunch/exceptions.py,sha256=NVFQkf1R3FgBRWHli0lTwSe3uSDwQZPqjLJMM8kjECM,31
13
+ datacrunch/helpers.py,sha256=EiK-Z15EJzlikhiaBJJhrgST-cuD-aRjw4svQlG82-k,28
14
+ datacrunch/http_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ datacrunch/http_client/http_client.py,sha256=97hjTHUID7k9YO5KibxbsWEC46Ekp9Ik3pIuHCD8Psk,32
16
+ datacrunch/images/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ datacrunch/images/images.py,sha256=NAvhX3QupmbXI9sd_cKY3EMyTjCCGs9WwzKgthmgs5k,27
18
+ datacrunch/instance_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ datacrunch/instance_types/instance_types.py,sha256=m4uVxx_hfK6fGhILy6Z9sxxdEHhwlq_ACp2MxALcSkI,35
20
+ datacrunch/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ datacrunch/instances/instances.py,sha256=fPRBChYWgno_kgHcaYuc292fzZPKPATKs37Gjk6zzLM,30
22
+ datacrunch/locations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ datacrunch/locations/locations.py,sha256=D-CRTZKXwpUXtk66o86yf9W-LeC3ioZ7u0q_Fu8uqrM,30
24
+ datacrunch/ssh_keys/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ datacrunch/ssh_keys/ssh_keys.py,sha256=fqaHv-9DN4NZiVUP5N98bxSF94FOk5dAdYYLA5yr078,29
26
+ datacrunch/startup_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ datacrunch/startup_scripts/startup_scripts.py,sha256=UDBEDoNFfxVdyda3I1m4JEnePbEfxVF8fhQJHTZStCY,36
28
+ datacrunch/volume_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ datacrunch/volume_types/volume_types.py,sha256=iwGJUrtSIEuZ56vpSQ5GJ04B5FhcJ-2i5KZkonE3W24,33
30
+ datacrunch/volumes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ datacrunch/volumes/volumes.py,sha256=9XzQWhMYrzTLWwfRyuLxfyGb90Nj066NRek5jPeTqD4,28
32
+ datacrunch-1.17.3.dist-info/WHEEL,sha256=YUH1mBqsx8Dh2cQG2rlcuRYUhJddG9iClegy4IgnHik,79
33
+ datacrunch-1.17.3.dist-info/METADATA,sha256=P7nroPsGm0BqY0e39L6VIxjPwnQ8uoR34CrvuSzLcd8,1287
34
+ datacrunch-1.17.3.dist-info/RECORD,,
@@ -1,22 +0,0 @@
1
- datacrunch/InferenceClient/__init__.py,sha256=qnRYgyFWLsjGyGAK9GKel50_8syuRb_WTrN1a3gUP1E,121
2
- datacrunch/InferenceClient/inference_client.py,sha256=TK4oc7pQjwT6ftMah8VKrmTOfEzuZx1eGYgBQAact5g,53
3
- datacrunch/__init__.py,sha256=LLVG36knotjujxtucyiuLyCagKOQHCtuwMxgWXPkAOg,1034
4
- datacrunch/authentication.py,sha256=SKq4wOL4dxgjY3IDtNNILghVzD9pGIseEBa6vWRLO9I,35
5
- datacrunch/balance.py,sha256=Z3rGerIGyDl_RHTJHx5dtLOOifklNo5vG2gVJ_vyqec,28
6
- datacrunch/constants.py,sha256=e2vvNmrptTm5oa1b1YqM9wo_92ctsWgy540KuTaGjAQ,30
7
- datacrunch/containers.py,sha256=8MBb7scJdoiZDiF1n1MWfleFg5sllc_z-NESXhBLA1Q,31
8
- datacrunch/datacrunch.py,sha256=km7nY38skCriD4pfKsksTkvGeVUwWkMuQrzb-eQf0U8,1518
9
- datacrunch/exceptions.py,sha256=NVFQkf1R3FgBRWHli0lTwSe3uSDwQZPqjLJMM8kjECM,31
10
- datacrunch/helpers.py,sha256=EiK-Z15EJzlikhiaBJJhrgST-cuD-aRjw4svQlG82-k,28
11
- datacrunch/http_client.py,sha256=97hjTHUID7k9YO5KibxbsWEC46Ekp9Ik3pIuHCD8Psk,32
12
- datacrunch/images.py,sha256=NAvhX3QupmbXI9sd_cKY3EMyTjCCGs9WwzKgthmgs5k,27
13
- datacrunch/instance_types.py,sha256=m4uVxx_hfK6fGhILy6Z9sxxdEHhwlq_ACp2MxALcSkI,35
14
- datacrunch/instances.py,sha256=fPRBChYWgno_kgHcaYuc292fzZPKPATKs37Gjk6zzLM,30
15
- datacrunch/locations.py,sha256=D-CRTZKXwpUXtk66o86yf9W-LeC3ioZ7u0q_Fu8uqrM,30
16
- datacrunch/ssh_keys.py,sha256=fqaHv-9DN4NZiVUP5N98bxSF94FOk5dAdYYLA5yr078,29
17
- datacrunch/startup_scripts.py,sha256=UDBEDoNFfxVdyda3I1m4JEnePbEfxVF8fhQJHTZStCY,36
18
- datacrunch/volume_types.py,sha256=iwGJUrtSIEuZ56vpSQ5GJ04B5FhcJ-2i5KZkonE3W24,33
19
- datacrunch/volumes.py,sha256=9XzQWhMYrzTLWwfRyuLxfyGb90Nj066NRek5jPeTqD4,28
20
- datacrunch-1.17.2.dist-info/WHEEL,sha256=YUH1mBqsx8Dh2cQG2rlcuRYUhJddG9iClegy4IgnHik,79
21
- datacrunch-1.17.2.dist-info/METADATA,sha256=yrLVBmTKlph7F9IYMWujeQRG4IPIjWvwVK9IBS_7a6o,1287
22
- datacrunch-1.17.2.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes