A library for interacting with Refract in Python 3.
Refract provides the ability to take a normal data structure and add a layer on top of it for the purpose of annotating and adding semantic data.
>>> element = refract({'name': 'Doe', 'email': '[email protected]'})
>>> element.title = 'Person'
>>> element['email'].classes.append('personal')To install Python Refract, simply run this simple command in your terminal of choice.
$ pip install refractDocumentation is available at http://python-refract.readthedocs.io.