Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 596 Bytes

File metadata and controls

31 lines (20 loc) · 596 Bytes

Poseidon WEP SDK

Python SDK for building Worker Execution Process (WEP) workflows on the Poseidon Subnet.

Installation

pip install poseidon-wep-sdk

Quick Start

from poseidon_wep_sdk_pkg import WepServer, ServiceRegistry

# Register your service
registry = ServiceRegistry()
registry.register("my_service", my_service_handler)

# Start the WEP server
server = WepServer(registry=registry)
server.run()

Documentation

For detailed documentation, see the examples directory.

License

MIT