verda 1.17.1__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 (47) hide show
  1. {verda-1.17.1 → verda-1.17.3}/PKG-INFO +1 -1
  2. {verda-1.17.1 → verda-1.17.3}/pyproject.toml +2 -1
  3. {verda-1.17.1 → verda-1.17.3}/verda/_verda.py +12 -12
  4. verda-1.17.3/verda/authentication/__init__.py +1 -0
  5. verda-1.17.1/verda/authentication/authentication.py → verda-1.17.3/verda/authentication/_authentication.py +1 -1
  6. verda-1.17.3/verda/balance/__init__.py +1 -0
  7. {verda-1.17.1 → verda-1.17.3}/verda/containers/__init__.py +1 -1
  8. verda-1.17.1/verda/containers/containers.py → verda-1.17.3/verda/containers/_containers.py +2 -2
  9. verda-1.17.3/verda/http_client/__init__.py +1 -0
  10. verda-1.17.3/verda/images/__init__.py +1 -0
  11. verda-1.17.3/verda/inference_client/__init__.py +7 -0
  12. verda-1.17.3/verda/instance_types/__init__.py +1 -0
  13. verda-1.17.3/verda/instances/__init__.py +1 -0
  14. verda-1.17.3/verda/locations/__init__.py +1 -0
  15. verda-1.17.3/verda/ssh_keys/__init__.py +1 -0
  16. verda-1.17.3/verda/startup_scripts/__init__.py +1 -0
  17. verda-1.17.3/verda/volume_types/__init__.py +1 -0
  18. verda-1.17.3/verda/volumes/__init__.py +1 -0
  19. verda-1.17.1/verda/InferenceClient/__init__.py +0 -3
  20. verda-1.17.1/verda/authentication/__init__.py +0 -0
  21. verda-1.17.1/verda/balance/__init__.py +0 -0
  22. verda-1.17.1/verda/http_client/__init__.py +0 -0
  23. verda-1.17.1/verda/images/__init__.py +0 -0
  24. verda-1.17.1/verda/instance_types/__init__.py +0 -0
  25. verda-1.17.1/verda/instances/__init__.py +0 -0
  26. verda-1.17.1/verda/locations/__init__.py +0 -0
  27. verda-1.17.1/verda/ssh_keys/__init__.py +0 -0
  28. verda-1.17.1/verda/startup_scripts/__init__.py +0 -0
  29. verda-1.17.1/verda/volume_types/__init__.py +0 -0
  30. verda-1.17.1/verda/volumes/__init__.py +0 -0
  31. {verda-1.17.1 → verda-1.17.3}/README.md +0 -0
  32. {verda-1.17.1 → verda-1.17.3}/verda/__init__.py +0 -0
  33. {verda-1.17.1 → verda-1.17.3}/verda/_version.py +0 -0
  34. /verda-1.17.1/verda/balance/balance.py → /verda-1.17.3/verda/balance/_balance.py +0 -0
  35. {verda-1.17.1 → verda-1.17.3}/verda/constants.py +0 -0
  36. {verda-1.17.1 → verda-1.17.3}/verda/exceptions.py +0 -0
  37. {verda-1.17.1 → verda-1.17.3}/verda/helpers.py +0 -0
  38. /verda-1.17.1/verda/http_client/http_client.py → /verda-1.17.3/verda/http_client/_http_client.py +0 -0
  39. /verda-1.17.1/verda/images/images.py → /verda-1.17.3/verda/images/_images.py +0 -0
  40. /verda-1.17.1/verda/InferenceClient/inference_client.py → /verda-1.17.3/verda/inference_client/_inference_client.py +0 -0
  41. /verda-1.17.1/verda/instance_types/instance_types.py → /verda-1.17.3/verda/instance_types/_instance_types.py +0 -0
  42. /verda-1.17.1/verda/instances/instances.py → /verda-1.17.3/verda/instances/_instances.py +0 -0
  43. /verda-1.17.1/verda/locations/locations.py → /verda-1.17.3/verda/locations/_locations.py +0 -0
  44. /verda-1.17.1/verda/ssh_keys/ssh_keys.py → /verda-1.17.3/verda/ssh_keys/_ssh_keys.py +0 -0
  45. /verda-1.17.1/verda/startup_scripts/startup_scripts.py → /verda-1.17.3/verda/startup_scripts/_startup_scripts.py +0 -0
  46. /verda-1.17.1/verda/volume_types/volume_types.py → /verda-1.17.3/verda/volume_types/_volume_types.py +0 -0
  47. /verda-1.17.1/verda/volumes/volumes.py → /verda-1.17.3/verda/volumes/_volumes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: verda
3
- Version: 1.17.1
3
+ Version: 1.17.3
4
4
  Summary: Official Python SDK for Verda (formerly DataCrunch) Public API
5
5
  Author: Verda Cloud Oy
6
6
  Author-email: Verda Cloud Oy <info@verda.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "verda"
3
- version = "1.17.1"
3
+ version = "1.17.3"
4
4
  description = "Official Python SDK for Verda (formerly DataCrunch) Public API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -86,6 +86,7 @@ ignore = ["F401", "B006", "D100", "D105", "D107"]
86
86
  [tool.ruff.lint.per-file-ignores]
87
87
  "{tests,examples,datacrunch_compat/tests}/*" = ["D"]
88
88
  "__init__.py" = ["D104"]
89
+ "datacrunch_compat/datacrunch/*.py" = ["F403"]
89
90
 
90
91
  [tool.ruff.format]
91
92
  quote-style = "single"
@@ -1,17 +1,17 @@
1
1
  from verda._version import __version__
2
- from verda.authentication.authentication import AuthenticationService
3
- from verda.balance.balance import BalanceService
2
+ from verda.authentication import AuthenticationService
3
+ from verda.balance import BalanceService
4
4
  from verda.constants import Constants
5
- from verda.containers.containers import ContainersService
6
- from verda.http_client.http_client import HTTPClient
7
- from verda.images.images import ImagesService
8
- from verda.instance_types.instance_types import InstanceTypesService
9
- from verda.instances.instances import InstancesService
10
- from verda.locations.locations import LocationsService
11
- from verda.ssh_keys.ssh_keys import SSHKeysService
12
- from verda.startup_scripts.startup_scripts import StartupScriptsService
13
- from verda.volume_types.volume_types import VolumeTypesService
14
- from verda.volumes.volumes import VolumesService
5
+ from verda.containers import ContainersService
6
+ from verda.http_client import HTTPClient
7
+ from verda.images import ImagesService
8
+ from verda.instance_types import InstanceTypesService
9
+ from verda.instances import InstancesService
10
+ from verda.locations import LocationsService
11
+ from verda.ssh_keys import SSHKeysService
12
+ from verda.startup_scripts import StartupScriptsService
13
+ from verda.volume_types import VolumeTypesService
14
+ from verda.volumes import VolumesService
15
15
 
16
16
 
17
17
  class VerdaClient:
@@ -0,0 +1 @@
1
+ from ._authentication import AuthenticationService
@@ -2,7 +2,7 @@ import time
2
2
 
3
3
  import requests
4
4
 
5
- from verda.http_client.http_client import handle_error
5
+ from verda.http_client import handle_error
6
6
 
7
7
  TOKEN_ENDPOINT = '/oauth2/token'
8
8
 
@@ -0,0 +1 @@
1
+ from ._balance import Balance, BalanceService
@@ -1,4 +1,4 @@
1
- from .containers import (
1
+ from ._containers import (
2
2
  AWSECRCredentials,
3
3
  BaseRegistryCredentials,
4
4
  ComputeResource,
@@ -12,8 +12,8 @@ from typing import Any
12
12
 
13
13
  from dataclasses_json import Undefined, dataclass_json # type: ignore
14
14
 
15
- from verda.http_client.http_client import HTTPClient
16
- from verda.InferenceClient import InferenceClient, InferenceResponse
15
+ from verda.http_client import HTTPClient
16
+ from verda.inference_client import InferenceClient, InferenceResponse
17
17
 
18
18
  # API endpoints
19
19
  CONTAINER_DEPLOYMENTS_ENDPOINT = '/container-deployments'
@@ -0,0 +1 @@
1
+ from ._http_client import HTTPClient, handle_error
@@ -0,0 +1 @@
1
+ from ._images import Image, ImagesService
@@ -0,0 +1,7 @@
1
+ from ._inference_client import (
2
+ AsyncInferenceExecution,
3
+ AsyncStatus,
4
+ InferenceClient,
5
+ InferenceClientError,
6
+ InferenceResponse,
7
+ )
@@ -0,0 +1 @@
1
+ from ._instance_types import InstanceType, InstanceTypesService
@@ -0,0 +1 @@
1
+ from ._instances import Contract, Instance, InstancesService, Pricing
@@ -0,0 +1 @@
1
+ from ._locations import LocationsService
@@ -0,0 +1 @@
1
+ from ._ssh_keys import SSHKey, SSHKeysService
@@ -0,0 +1 @@
1
+ from ._startup_scripts import StartupScript, StartupScriptsService
@@ -0,0 +1 @@
1
+ from ._volume_types import VolumeType, VolumeTypesService
@@ -0,0 +1 @@
1
+ from ._volumes import Volume, VolumesService
@@ -1,3 +0,0 @@
1
- from .inference_client import InferenceClient, InferenceResponse
2
-
3
- __all__ = ['InferenceClient', 'InferenceResponse']
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes