datacrunch 1.17.2__tar.gz → 1.17.3__tar.gz

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 (36) hide show
  1. {datacrunch-1.17.2 → datacrunch-1.17.3}/PKG-INFO +2 -2
  2. datacrunch-1.17.3/datacrunch/InferenceClient/__init__.py +3 -0
  3. datacrunch-1.17.3/datacrunch/InferenceClient/inference_client.py +1 -0
  4. {datacrunch-1.17.2 → datacrunch-1.17.3}/datacrunch/__init__.py +3 -3
  5. datacrunch-1.17.3/datacrunch/authentication/__init__.py +0 -0
  6. datacrunch-1.17.3/datacrunch/balance/__init__.py +0 -0
  7. datacrunch-1.17.3/datacrunch/containers/__init__.py +0 -0
  8. {datacrunch-1.17.2 → datacrunch-1.17.3}/datacrunch/datacrunch.py +12 -12
  9. datacrunch-1.17.3/datacrunch/http_client/__init__.py +0 -0
  10. datacrunch-1.17.3/datacrunch/images/__init__.py +0 -0
  11. datacrunch-1.17.3/datacrunch/instance_types/__init__.py +0 -0
  12. datacrunch-1.17.3/datacrunch/instances/__init__.py +0 -0
  13. datacrunch-1.17.3/datacrunch/locations/__init__.py +0 -0
  14. datacrunch-1.17.3/datacrunch/ssh_keys/__init__.py +0 -0
  15. datacrunch-1.17.3/datacrunch/startup_scripts/__init__.py +0 -0
  16. datacrunch-1.17.3/datacrunch/volume_types/__init__.py +0 -0
  17. datacrunch-1.17.3/datacrunch/volumes/__init__.py +0 -0
  18. {datacrunch-1.17.2 → datacrunch-1.17.3}/pyproject.toml +2 -2
  19. datacrunch-1.17.2/datacrunch/InferenceClient/__init__.py +0 -3
  20. datacrunch-1.17.2/datacrunch/InferenceClient/inference_client.py +0 -1
  21. {datacrunch-1.17.2 → datacrunch-1.17.3}/README.md +0 -0
  22. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/authentication}/authentication.py +0 -0
  23. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/balance}/balance.py +0 -0
  24. {datacrunch-1.17.2 → datacrunch-1.17.3}/datacrunch/constants.py +0 -0
  25. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/containers}/containers.py +0 -0
  26. {datacrunch-1.17.2 → datacrunch-1.17.3}/datacrunch/exceptions.py +0 -0
  27. {datacrunch-1.17.2 → datacrunch-1.17.3}/datacrunch/helpers.py +0 -0
  28. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/http_client}/http_client.py +0 -0
  29. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/images}/images.py +0 -0
  30. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/instance_types}/instance_types.py +0 -0
  31. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/instances}/instances.py +0 -0
  32. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/locations}/locations.py +0 -0
  33. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/ssh_keys}/ssh_keys.py +0 -0
  34. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/startup_scripts}/startup_scripts.py +0 -0
  35. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/volume_types}/volume_types.py +0 -0
  36. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.3/datacrunch/volumes}/volumes.py +0 -0
@@ -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,3 @@
1
+ from verda.inference_client import InferenceClient, InferenceResponse
2
+
3
+ __all__ = ['InferenceClient', 'InferenceResponse']
@@ -0,0 +1 @@
1
+ from verda.inference_client import *
@@ -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
@@ -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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "datacrunch"
3
- version = "1.17.2" # version will be set by .github/workflows/publish.yml before release
3
+ version = "1.17.3" # version will be set by .github/workflows/publish.yml before release
4
4
  description = "datacrunch is now verda"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Programming Language :: Python :: 3.14",
22
22
  ]
23
23
  dependencies = [
24
- "verda==1.17.2",
24
+ "verda==1.17.3",
25
25
  ]
26
26
 
27
27
  [project.urls]
@@ -1,3 +0,0 @@
1
- from verda.InferenceClient import InferenceClient, InferenceResponse
2
-
3
- __all__ = ['InferenceClient', 'InferenceResponse']
@@ -1 +0,0 @@
1
- from verda.InferenceClient.inference_client import *
File without changes