Python SDK for building Worker Execution Process (WEP) workflows on the Poseidon Subnet.
pip install poseidon-wep-sdkfromposeidon_wep_sdk_pkgimportWepServer, ServiceRegistry# Register your serviceregistry=ServiceRegistry()
registry.register("my_service", my_service_handler)
# Start the WEP serverserver=WepServer(registry=registry)
server.run()For detailed documentation, see the examples directory.
MIT