datacrunch 1.17.1__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.
- datacrunch/InferenceClient/__init__.py +3 -0
- datacrunch/InferenceClient/inference_client.py +1 -0
- datacrunch/__init__.py +3 -3
- datacrunch/authentication/__init__.py +0 -0
- datacrunch/authentication/authentication.py +1 -0
- datacrunch/balance/__init__.py +0 -0
- datacrunch/balance/balance.py +1 -0
- datacrunch/constants.py +1 -0
- datacrunch/containers/__init__.py +0 -0
- datacrunch/containers/containers.py +1 -0
- datacrunch/datacrunch.py +12 -12
- datacrunch/exceptions.py +1 -0
- datacrunch/helpers.py +1 -0
- datacrunch/http_client/__init__.py +0 -0
- datacrunch/http_client/http_client.py +1 -0
- datacrunch/images/__init__.py +0 -0
- datacrunch/images/images.py +1 -0
- datacrunch/instance_types/__init__.py +0 -0
- datacrunch/instance_types/instance_types.py +1 -0
- datacrunch/instances/__init__.py +0 -0
- datacrunch/instances/instances.py +1 -0
- datacrunch/locations/__init__.py +0 -0
- datacrunch/locations/locations.py +1 -0
- datacrunch/ssh_keys/__init__.py +0 -0
- datacrunch/ssh_keys/ssh_keys.py +1 -0
- datacrunch/startup_scripts/__init__.py +0 -0
- datacrunch/startup_scripts/startup_scripts.py +1 -0
- datacrunch/volume_types/__init__.py +0 -0
- datacrunch/volume_types/volume_types.py +1 -0
- datacrunch/volumes/__init__.py +0 -0
- datacrunch/volumes/volumes.py +1 -0
- {datacrunch-1.17.1.dist-info → datacrunch-1.17.3.dist-info}/METADATA +2 -2
- datacrunch-1.17.3.dist-info/RECORD +34 -0
- datacrunch-1.17.1.dist-info/RECORD +0 -5
- {datacrunch-1.17.1.dist-info → datacrunch-1.17.3.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1 @@
|
|
|
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
|
|
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
|
-
'
|
|
27
|
+
'Inference_client',
|
|
28
28
|
'__version__',
|
|
29
29
|
'authentication',
|
|
30
30
|
'balance',
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.authentication import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.balance import *
|
datacrunch/constants.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.constants import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.containers import *
|
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
|
|
6
|
-
from verda.balance
|
|
5
|
+
from verda.authentication import AuthenticationService
|
|
6
|
+
from verda.balance import BalanceService
|
|
7
7
|
from verda.constants import Constants
|
|
8
|
-
from verda.containers
|
|
9
|
-
from verda.http_client
|
|
10
|
-
from verda.images
|
|
11
|
-
from verda.instance_types
|
|
12
|
-
from verda.instances
|
|
13
|
-
from verda.locations
|
|
14
|
-
from verda.ssh_keys
|
|
15
|
-
from verda.startup_scripts
|
|
16
|
-
from verda.volume_types
|
|
17
|
-
from verda.volumes
|
|
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__ = [
|
datacrunch/exceptions.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.exceptions import *
|
datacrunch/helpers.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.helpers import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.http_client import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.images import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.instance_types import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.instances import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.locations import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.ssh_keys import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.startup_scripts import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.volume_types import *
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from verda.volumes import *
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: datacrunch
|
|
3
|
-
Version: 1.17.
|
|
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.
|
|
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,5 +0,0 @@
|
|
|
1
|
-
datacrunch/__init__.py,sha256=LLVG36knotjujxtucyiuLyCagKOQHCtuwMxgWXPkAOg,1034
|
|
2
|
-
datacrunch/datacrunch.py,sha256=km7nY38skCriD4pfKsksTkvGeVUwWkMuQrzb-eQf0U8,1518
|
|
3
|
-
datacrunch-1.17.1.dist-info/WHEEL,sha256=YUH1mBqsx8Dh2cQG2rlcuRYUhJddG9iClegy4IgnHik,79
|
|
4
|
-
datacrunch-1.17.1.dist-info/METADATA,sha256=ur8v0nRpL7OXL5kIQBEw1rzv86xAl65MJ66eziVR1LQ,1287
|
|
5
|
-
datacrunch-1.17.1.dist-info/RECORD,,
|
|
File without changes
|