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