Python bindings for the Y-Sweet server
Project description
y_sweet_sdk
Usage
from y_sweet_sdk import DocumentManager
# Get the websocket url for a document.
doc = DocumentManager('ys://localhost:8080')
url = doc.get_websocket_url('my-document-id')
# Connect to the document using y_py and ypy_websocket.
# (Based on: https://davidbrochart.github.io/ypy-websocket/usage/client/)
from ypy_websocket import WebsocketProvider
import y_py as Y
from websockets import connect
import asyncio
ydoc = Y.YDoc()
# Simple example: log the array "todolist" to stdout every time it changes.
data = ydoc.get_array("todolist")
def data_changed(event: Y.AfterTransactionEvent):
print(f"data changed: {data.to_json()}")
data.observe_deep(data_changed)
async with (
connect(url) as websocket,
WebsocketProvider(ydoc, websocket),
):
await asyncio.Future() # run forever
y_sweet_sdk is only used to talk directly with the Y-Sweet server to obtain a WebSocket URL to pass to a client.
Use a Yjs client like ypy-websocket or pycrdt
in conjunction with y_sweet_sdk to access the actual Y.Doc data.
Developing
Developing y_sweet_sdk requires the uv project manager.
To install it on Mac or Liunux, run:
curl -LsSf https://astral.sh/uv/install.sh | sh
(See the docs for other platforms and more information.)
When using uv, you do not need to manage a virtual environment yourself. Instead, you interact with
Python using the uv command, which automatically picks up the virtual environment from the location.
To set up the virtual environment for development, run:
uv sync --dev
This installs both the regular dependencies and the development dependencies.
Tests
Once commands are installed in your virtual environment, you can run them with uv run.
To run tests, run:
uv run pytest
This runs the pytest command in the virtual environment.
Formatting
Run uv run ruff format to format before committing changes.
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
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 y_sweet_sdk-0.8.1.tar.gz.
File metadata
- Download URL: y_sweet_sdk-0.8.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b276f60833d4237a07d43bc8db8db1dc15eeda6641fca6d37ec53a0867c364d0
|
|
| MD5 |
939f14aa2f9f25f20d1777a9d0a2dc8a
|
|
| BLAKE2b-256 |
e1d09d784d0a5f39a9cbaf54950f4435513b9db68ca13af764a1a39d0cb9508e
|
File details
Details for the file y_sweet_sdk-0.8.1-py3-none-any.whl.
File metadata
- Download URL: y_sweet_sdk-0.8.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7111546a171630dafb94d6713c33cf587605c769a56d3e81d3e3a05d9277c98
|
|
| MD5 |
8a42a1ad073bdcd394f302eed0dd8e92
|
|
| BLAKE2b-256 |
7873e695f131782a7726a63602335675f155cc53f458092743d77336cf1b4a79
|