Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 604 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 604 Bytes

PyFibre

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()