-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path__init__.py
More file actions
53 lines (49 loc) · 1.04 KB
/
__init__.py
File metadata and controls
53 lines (49 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Compatibility layer for deprecated `datacrunch` package
from verda import VerdaClient as DataCrunchClient
from verda import (
__version__,
authentication,
balance,
constants,
containers,
exceptions,
helpers,
http_client,
images,
instance_types,
instances,
locations,
ssh_keys,
startup_scripts,
volume_types,
volumes,
)
from verda import inference_client as Inference_client
# For old `from datacrunch import *``
__all__ = [
'DataCrunchClient',
'Inference_client',
'__version__',
'authentication',
'balance',
'constants',
'containers',
'datacrunch',
'exceptions',
'helpers',
'http_client',
'images',
'instance_types',
'instances',
'locations',
'ssh_keys',
'startup_scripts',
'volume_types',
'volumes',
]
import warnings
warnings.warn(
'datacrunch is deprecated; use verda package instead: https://github.com/verda-cloud/sdk-python/blob/master/CHANGELOG.md#1170---2025-11-26',
DeprecationWarning,
stacklevel=2,
)