ZLayer Plugin Development Kit for Python
Project description
ZLayer Python SDK
Plugin Development Kit for building WASM plugins in Python targeting ZLayer.
Requirements
- Python 3.11+
- componentize-py for WASM compilation
Installation
# Using uv (recommended)
uv add zlayer-sdk
# Or with pip
pip install zlayer-sdk
Development Setup
# Clone and install in development mode
cd clients/zlayer-sdk/python
uv sync --all-extras
# Install componentize-py for WASM compilation
uv add --dev componentize-py
Usage
Basic Plugin Structure
from zlayer import kv, log
def handle_request(request: bytes) -> bytes:
"""Plugin entry point called by ZLayer runtime."""
# Access key-value storage
value = kv.get("my-key")
# Log messages to host
log.info("Processing request")
# Return response
return b"OK"
Building WASM Component
# Generate WIT bindings and compile to WASM
componentize-py -d ../../wit -w zlayer-plugin componentize my_plugin -o my_plugin.wasm
Available Host Capabilities
The SDK provides access to ZLayer host functions:
- kv - Key-value storage operations
- log - Structured logging
- http - Outbound HTTP requests
- config - Plugin configuration access
Project Structure
zlayer/
__init__.py # Package root with version
py.typed # PEP 561 type marker
examples/
.gitkeep # Example plugins (coming soon)
Type Checking
This package is fully typed and includes a py.typed marker for PEP 561 compliance.
# Run type checks
uv run mypy zlayer/
License
MIT
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
zlayer_sdk-0.8.0.tar.gz
(11.0 kB
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 zlayer_sdk-0.8.0.tar.gz.
File metadata
- Download URL: zlayer_sdk-0.8.0.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6582c8910efb9c5fda05424e023382e5ee7e0cd59040605d89b91dd7d7891c39
|
|
| MD5 |
8047d6935333b49e72a895e13a8c2102
|
|
| BLAKE2b-256 |
7313bff27172a2f6f5f9c3e26af14772957d12e24cf82d6178e59a104a418e81
|
File details
Details for the file zlayer_sdk-0.8.0-py3-none-any.whl.
File metadata
- Download URL: zlayer_sdk-0.8.0-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2244a34bacfbb560f5cb24fe18ec0da2f065d5ad0635e1f41bbc0d390aa21d96
|
|
| MD5 |
a357b5fca250e3dd73e92e6aa7298192
|
|
| BLAKE2b-256 |
b3e2714a436318b3bb196384130927bbe74fee7511f3d7e175558626f026d3d0
|