PyFibre
December 26, 2020 ยท View on GitHub
This directory provides Python bindings for Fibre. Its home is located here. There's also a standalone repository for this directory here.
Current Status
Currently only client-side features are implemented, that means you can discover objects but you cannot publish objects.
How to use
import fibre
with fibre.Domain("tcp-client:address=localhost,port=14220") as domain:
obj = domain.discover_one()
obj.test_function()