datacrunch 1.17.2__tar.gz → 1.17.4__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 (38) hide show
  1. {datacrunch-1.17.2 → datacrunch-1.17.4}/PKG-INFO +5 -3
  2. datacrunch-1.17.4/README.md +7 -0
  3. datacrunch-1.17.4/datacrunch/InferenceClient/__init__.py +3 -0
  4. datacrunch-1.17.4/datacrunch/InferenceClient/inference_client.py +1 -0
  5. {datacrunch-1.17.2 → datacrunch-1.17.4}/datacrunch/__init__.py +4 -4
  6. datacrunch-1.17.4/datacrunch/authentication/__init__.py +0 -0
  7. datacrunch-1.17.4/datacrunch/balance/__init__.py +0 -0
  8. datacrunch-1.17.4/datacrunch/containers/__init__.py +0 -0
  9. datacrunch-1.17.4/datacrunch/datacrunch.py +36 -0
  10. datacrunch-1.17.4/datacrunch/http_client/__init__.py +0 -0
  11. datacrunch-1.17.4/datacrunch/images/__init__.py +0 -0
  12. datacrunch-1.17.4/datacrunch/instance_types/__init__.py +0 -0
  13. datacrunch-1.17.4/datacrunch/instances/__init__.py +0 -0
  14. datacrunch-1.17.4/datacrunch/locations/__init__.py +0 -0
  15. datacrunch-1.17.4/datacrunch/ssh_keys/__init__.py +0 -0
  16. datacrunch-1.17.4/datacrunch/startup_scripts/__init__.py +0 -0
  17. datacrunch-1.17.4/datacrunch/volume_types/__init__.py +0 -0
  18. datacrunch-1.17.4/datacrunch/volumes/__init__.py +0 -0
  19. {datacrunch-1.17.2 → datacrunch-1.17.4}/pyproject.toml +2 -2
  20. datacrunch-1.17.2/README.md +0 -5
  21. datacrunch-1.17.2/datacrunch/InferenceClient/__init__.py +0 -3
  22. datacrunch-1.17.2/datacrunch/InferenceClient/inference_client.py +0 -1
  23. datacrunch-1.17.2/datacrunch/datacrunch.py +0 -44
  24. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/authentication}/authentication.py +0 -0
  25. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/balance}/balance.py +0 -0
  26. {datacrunch-1.17.2 → datacrunch-1.17.4}/datacrunch/constants.py +0 -0
  27. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/containers}/containers.py +0 -0
  28. {datacrunch-1.17.2 → datacrunch-1.17.4}/datacrunch/exceptions.py +0 -0
  29. {datacrunch-1.17.2 → datacrunch-1.17.4}/datacrunch/helpers.py +0 -0
  30. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/http_client}/http_client.py +0 -0
  31. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/images}/images.py +0 -0
  32. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/instance_types}/instance_types.py +0 -0
  33. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/instances}/instances.py +0 -0
  34. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/locations}/locations.py +0 -0
  35. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/ssh_keys}/ssh_keys.py +0 -0
  36. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/startup_scripts}/startup_scripts.py +0 -0
  37. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/datacrunch/volume_types}/volume_types.py +0 -0
  38. {datacrunch-1.17.2/datacrunch → datacrunch-1.17.4/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.4
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.4
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/
@@ -25,6 +25,8 @@ Description-Content-Type: text/markdown
25
25
 
26
26
  # datacrunch is now verda
27
27
 
28
- This package has been [renamed](https://verda.com/blog/datacrunch-is-changing-its-name-to-verda). Use `pip install verda` or `uv add verda` instead.
28
+ This package has been renamed to `verda`. Use `pip install verda` or `uv add verda` instead.
29
+
30
+ To migrate from `datacrunch`, follow [the migration guide](https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md).
29
31
 
30
32
  New package: https://pypi.org/project/verda/
@@ -0,0 +1,7 @@
1
+ # datacrunch is now verda
2
+
3
+ This package has been renamed to `verda`. Use `pip install verda` or `uv add verda` instead.
4
+
5
+ To migrate from `datacrunch`, follow [the migration guide](https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md).
6
+
7
+ New package: https://pypi.org/project/verda/
@@ -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',
@@ -47,7 +47,7 @@ __all__ = [
47
47
  import warnings
48
48
 
49
49
  warnings.warn(
50
- 'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md#1170---2025-11-26',
50
+ 'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/MIGRATION.md',
51
51
  DeprecationWarning,
52
52
  stacklevel=2,
53
53
  )
File without changes
File without changes
@@ -0,0 +1,36 @@
1
+ # Compatibility layer for deprecated `datacrunch.datacrunch` package
2
+
3
+ from verda import VerdaClient as DataCrunchClient
4
+ from verda._version import __version__
5
+ from verda.authentication import AuthenticationService
6
+ from verda.balance import BalanceService
7
+ from verda.constants import Constants
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
+
19
+ # for `from datacrunch.datacrunch import *`
20
+ __all__ = [
21
+ 'AuthenticationService',
22
+ 'BalanceService',
23
+ 'Constants',
24
+ 'ContainersService',
25
+ 'DataCrunchClient',
26
+ 'HTTPClient',
27
+ 'ImagesService',
28
+ 'InstanceTypesService',
29
+ 'InstancesService',
30
+ 'LocationsService',
31
+ 'SSHKeysService',
32
+ 'StartupScriptsService',
33
+ 'VolumeTypesService',
34
+ 'VolumesService',
35
+ '__version__',
36
+ ]
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.4" # 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.4",
25
25
  ]
26
26
 
27
27
  [project.urls]
@@ -1,5 +0,0 @@
1
- # datacrunch is now verda
2
-
3
- This package has been [renamed](https://verda.com/blog/datacrunch-is-changing-its-name-to-verda). Use `pip install verda` or `uv add verda` instead.
4
-
5
- New package: https://pypi.org/project/verda/
@@ -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 *
@@ -1,44 +0,0 @@
1
- # Compatibility layer for deprecated `datacrunch.datacrunch` package
2
-
3
- from verda import VerdaClient as DataCrunchClient
4
- from verda._version import __version__
5
- from verda.authentication.authentication import AuthenticationService
6
- from verda.balance.balance import BalanceService
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
18
-
19
- # for `from datacrunch.datacrunch import *`
20
- __all__ = [
21
- 'AuthenticationService',
22
- 'BalanceService',
23
- 'Constants',
24
- 'ContainersService',
25
- 'DataCrunchClient',
26
- 'HTTPClient',
27
- 'ImagesService',
28
- 'InstanceTypesService',
29
- 'InstancesService',
30
- 'LocationsService',
31
- 'SSHKeysService',
32
- 'StartupScriptsService',
33
- 'VolumeTypesService',
34
- 'VolumesService',
35
- '__version__',
36
- ]
37
-
38
- import warnings
39
-
40
- warnings.warn(
41
- 'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md#1170---2025-11-26',
42
- DeprecationWarning,
43
- stacklevel=2,
44
- )