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
Tags are lowercased, de-duplicated and sorted on write, which is why they come back in a different order than they were sent.
99
+
100
+
When you are done, stop the instance. It was started with `--rm`, so the container and its in-memory database are discarded:
101
+
102
+
```bash
103
+
docker stop databunkerpro
104
+
```
105
+
106
+
> **Demo mode is for evaluation only.** The database is in memory, the wrapping key is a fixed public value, and the root token is the well-known string `DEMO`. Never point it at real personal data. For a real deployment see the [installation guide](https://docs.databunker.org/pro/installation/docker-compose).
107
+
108
+
### Connecting to your own instance
109
+
110
+
```python
111
+
from databunkerpro import DatabunkerproAPI
39
112
40
-
# Get user information
41
-
user = api.get_user("email", "user@example.com")
42
-
print(f"User profile: {user['profile']}")
113
+
api = DatabunkerproAPI(
114
+
base_url="https://your-databunker-instance.com",
115
+
x_bunker_token="your-api-token",
116
+
x_bunker_tenant="your-tenant-name", # multi-tenant deployments only
0 commit comments