You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Set up local environment and install dependencies:
@@ -80,6 +80,6 @@ To release a new version:
80
80
git push --tags
81
81
```
82
82
83
-
4.[Draft and publish](https://github.com/DataCrunch-io/datacrunch-python/releases) a new release.
83
+
4.[Draft and publish](https://github.com/verda-cloud/sdk-python/releases) a new release.
84
84
85
-
5. Check that package is automatically published to [PyPI](https://pypi.org/project/datacrunch/) via [GitHub action](https://github.com/DataCrunch-io/datacrunch-python/actions/workflows/publish_package.yml).
85
+
5. Check that package is automatically published to [PyPI](https://pypi.org/project/datacrunch/) via [GitHub action](https://github.com/verda-cloud/sdk-python/actions/workflows/publish_package.yml).
@@ -20,10 +20,10 @@ Verda Public API documentation [is available here](https://api.datacrunch.io/v1/
20
20
21
21
```bash
22
22
# via pip
23
-
pip3 install datacrunch
23
+
pip3 install verda
24
24
25
25
# via uv
26
-
uv add datacrunch
26
+
uv add verda
27
27
```
28
28
29
29
- Generate your client credentials - [instructions in the public API docs](https://api.datacrunch.io/v1/docs#description/quick-start-guide).
@@ -34,8 +34,8 @@ Verda Public API documentation [is available here](https://api.datacrunch.io/v1/
34
34
Linux (bash):
35
35
36
36
```bash
37
-
exportDATACRUNCH_CLIENT_ID=YOUR_ID_HERE
38
-
exportDATACRUNCH_CLIENT_SECRET=YOUR_SECRET_HERE
37
+
exportVERDA_CLIENT_ID=YOUR_ID_HERE
38
+
exportVERDA_CLIENT_SECRET=YOUR_SECRET_HERE
39
39
```
40
40
41
41
- To enable sending inference requests from SDK you must generate an inference key - [Instructions on inference authorization](https://docs.datacrunch.io/inference/authorization)
@@ -46,7 +46,7 @@ Verda Public API documentation [is available here](https://api.datacrunch.io/v1/
46
46
Linux (bash):
47
47
48
48
```bash
49
-
exportDATACRUNCH_INFERENCE_KEY=YOUR_API_KEY_HERE
49
+
exportVERDA_INFERENCE_KEY=YOUR_API_KEY_HERE
50
50
```
51
51
52
52
Other platforms:
@@ -58,11 +58,11 @@ Verda Public API documentation [is available here](https://api.datacrunch.io/v1/
0 commit comments