verda 1.17.3__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 (35) hide show
  1. {verda-1.17.3 → verda-1.17.4}/PKG-INFO +3 -4
  2. {verda-1.17.3 → verda-1.17.4}/README.md +2 -3
  3. {verda-1.17.3 → verda-1.17.4}/pyproject.toml +1 -1
  4. {verda-1.17.3 → verda-1.17.4}/verda/__init__.py +0 -0
  5. {verda-1.17.3 → verda-1.17.4}/verda/_verda.py +0 -0
  6. {verda-1.17.3 → verda-1.17.4}/verda/_version.py +0 -0
  7. {verda-1.17.3 → verda-1.17.4}/verda/authentication/__init__.py +0 -0
  8. {verda-1.17.3 → verda-1.17.4}/verda/authentication/_authentication.py +0 -0
  9. {verda-1.17.3 → verda-1.17.4}/verda/balance/__init__.py +0 -0
  10. {verda-1.17.3 → verda-1.17.4}/verda/balance/_balance.py +0 -0
  11. {verda-1.17.3 → verda-1.17.4}/verda/constants.py +0 -0
  12. {verda-1.17.3 → verda-1.17.4}/verda/containers/__init__.py +0 -0
  13. {verda-1.17.3 → verda-1.17.4}/verda/containers/_containers.py +0 -0
  14. {verda-1.17.3 → verda-1.17.4}/verda/exceptions.py +0 -0
  15. {verda-1.17.3 → verda-1.17.4}/verda/helpers.py +0 -0
  16. {verda-1.17.3 → verda-1.17.4}/verda/http_client/__init__.py +0 -0
  17. {verda-1.17.3 → verda-1.17.4}/verda/http_client/_http_client.py +0 -0
  18. {verda-1.17.3 → verda-1.17.4}/verda/images/__init__.py +0 -0
  19. {verda-1.17.3 → verda-1.17.4}/verda/images/_images.py +0 -0
  20. {verda-1.17.3 → verda-1.17.4}/verda/inference_client/__init__.py +0 -0
  21. {verda-1.17.3 → verda-1.17.4}/verda/inference_client/_inference_client.py +0 -0
  22. {verda-1.17.3 → verda-1.17.4}/verda/instance_types/__init__.py +0 -0
  23. {verda-1.17.3 → verda-1.17.4}/verda/instance_types/_instance_types.py +0 -0
  24. {verda-1.17.3 → verda-1.17.4}/verda/instances/__init__.py +0 -0
  25. {verda-1.17.3 → verda-1.17.4}/verda/instances/_instances.py +0 -0
  26. {verda-1.17.3 → verda-1.17.4}/verda/locations/__init__.py +0 -0
  27. {verda-1.17.3 → verda-1.17.4}/verda/locations/_locations.py +0 -0
  28. {verda-1.17.3 → verda-1.17.4}/verda/ssh_keys/__init__.py +0 -0
  29. {verda-1.17.3 → verda-1.17.4}/verda/ssh_keys/_ssh_keys.py +0 -0
  30. {verda-1.17.3 → verda-1.17.4}/verda/startup_scripts/__init__.py +0 -0
  31. {verda-1.17.3 → verda-1.17.4}/verda/startup_scripts/_startup_scripts.py +0 -0
  32. {verda-1.17.3 → verda-1.17.4}/verda/volume_types/__init__.py +0 -0
  33. {verda-1.17.3 → verda-1.17.4}/verda/volume_types/_volume_types.py +0 -0
  34. {verda-1.17.3 → verda-1.17.4}/verda/volumes/__init__.py +0 -0
  35. {verda-1.17.3 → verda-1.17.4}/verda/volumes/_volumes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: verda
3
- Version: 1.17.3
3
+ Version: 1.17.4
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>
@@ -40,6 +40,8 @@ The SDK's documentation is available on [ReadTheDocs](https://datacrunch-python.
40
40
 
41
41
  Verda Public API documentation [is available here](https://api.verda.com/v1/docs).
42
42
 
43
+ This package was originally published under `datacrunch` name, see [MIGRATION.md](./MIGRATION.md) for details.
44
+
43
45
  ## Getting Started - Using the SDK:
44
46
 
45
47
  - Install:
@@ -65,7 +67,6 @@ Verda Public API documentation [is available here](https://api.verda.com/v1/docs
65
67
  ```
66
68
 
67
69
  - To enable sending inference requests from SDK you must generate an inference key - [Instructions on inference authorization](https://docs.verda.com/inference/authorization)
68
-
69
70
 
70
71
  - Add your inference key to an environment variable
71
72
 
@@ -78,8 +79,6 @@ Verda Public API documentation [is available here](https://api.verda.com/v1/docs
78
79
  Other platforms:
79
80
  https://en.wikipedia.org/wiki/Environment_variable
80
81
 
81
-
82
-
83
82
  - Example for creating a new instance:
84
83
 
85
84
  ```python
@@ -14,6 +14,8 @@ The SDK's documentation is available on [ReadTheDocs](https://datacrunch-python.
14
14
 
15
15
  Verda Public API documentation [is available here](https://api.verda.com/v1/docs).
16
16
 
17
+ This package was originally published under `datacrunch` name, see [MIGRATION.md](./MIGRATION.md) for details.
18
+
17
19
  ## Getting Started - Using the SDK:
18
20
 
19
21
  - Install:
@@ -39,7 +41,6 @@ Verda Public API documentation [is available here](https://api.verda.com/v1/docs
39
41
  ```
40
42
 
41
43
  - To enable sending inference requests from SDK you must generate an inference key - [Instructions on inference authorization](https://docs.verda.com/inference/authorization)
42
-
43
44
 
44
45
  - Add your inference key to an environment variable
45
46
 
@@ -52,8 +53,6 @@ Verda Public API documentation [is available here](https://api.verda.com/v1/docs
52
53
  Other platforms:
53
54
  https://en.wikipedia.org/wiki/Environment_variable
54
55
 
55
-
56
-
57
56
  - Example for creating a new instance:
58
57
 
59
58
  ```python
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "verda"
3
- version = "1.17.3"
3
+ version = "1.17.4"
4
4
  description = "Official Python SDK for Verda (formerly DataCrunch) Public API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
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