@raindrop-ai/wizard 0.0.2 → 0.0.3
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.
- package/dist/src/docs/python.mdx +14 -2
- package/package.json +1 -1
package/dist/src/docs/python.mdx
CHANGED
|
@@ -4,12 +4,24 @@ description: Python SDK reference for tracking events and AI interactions.
|
|
|
4
4
|
|
|
5
5
|
### **Installation**
|
|
6
6
|
|
|
7
|
-
Install
|
|
7
|
+
Install with your package manager of choice:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<CodeGroup>
|
|
10
|
+
|
|
11
|
+
```sh pip
|
|
10
12
|
pip install raindrop-ai
|
|
11
13
|
```
|
|
12
14
|
|
|
15
|
+
```sh uv
|
|
16
|
+
uv add raindrop-ai
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
```sh poetry
|
|
20
|
+
poetry add raindrop-ai
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
</CodeGroup>
|
|
24
|
+
|
|
13
25
|
### **Configuration**
|
|
14
26
|
|
|
15
27
|
Import the SDK and initialize with the write key from environment variables:
|