Skip to content

Latest commit

 

History

History
 
 

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

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