A Python library for interacting with SurrealDB via RPC.
Project description
SurrealDB RPC Python Client
Example Usage
from surrealdb_rpc.client.websocket import SurrealDBWebsocketClient
from surrealdb_rpc.data_model import Thing
with SurrealDBWebsocketClient(
host="localhost",
port=8000,
ns="test",
db="test",
user="root",
password="root",
) as db:
response = db.create(
"example:123",
text="Some value",
reference=Thing("other", {"foo": {"bar": "baz"}}),
array=[1, 2, 3],
object={"key": "value"},
)
print(response)
This should create this record in the database:
{
array: [
1,
2,
3
],
id: example:123,
object: {
key: 'value'
},
reference: other:{
foo: {
bar: 'baz'
}
},
text: 'Some value'
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
surrealdb_rpc-0.3.5.tar.gz
(1.3 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file surrealdb_rpc-0.3.5.tar.gz.
File metadata
- Download URL: surrealdb_rpc-0.3.5.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32ae3c96690df6ff00e3391b8789e7612413449bb1fc07adbb227faaccb98259
|
|
| MD5 |
8ea395b4a4d7e1394529f313e0d7a769
|
|
| BLAKE2b-256 |
e53f4b9df395d2d217eba20d51db4352c341ca6ffee58d2a581413266c9eb02e
|
File details
Details for the file surrealdb_rpc-0.3.5-py3-none-any.whl.
File metadata
- Download URL: surrealdb_rpc-0.3.5-py3-none-any.whl
- Upload date:
- Size: 46.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04c12af7ba3fba4d21105f2ea06f09da5927eac5c56204340c4488f579014c95
|
|
| MD5 |
66740a2fd07f8b72c79ee26e5e28a0b2
|
|
| BLAKE2b-256 |
1081e29f81acdbeeb97dde663fe57a2d0fa7cfa67179dc3925f3f313e01f5a8a
|