Metadata-Version: 2.1
Name: librdflib
Version: 0.0.1
Summary: librdf parser for rdflib
Home-page: https://github.com/tgbugs/pyontutils/tree/master/librdflib
Author: Tom Gillespie
Author-email: tgbugs@gmail.com
License: MIT
Keywords: rdflib librdf rdf parser parsing ttl rdfxml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: rdflib
Provides-Extra: dev
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-runner ; extra == 'test'

# librdflib
librdf parser for rdflib

Highly experimental.

This is not faster for pypy3 but if you want install it follow these steps (ish).

``` bash
http://download.librdf.org/source/redland-bindings-1.0.17.1.tar.gz
tar xvzf redland-bindings-1.0.17.1.tar.gz
cd redland-bindings-1.0.17.1
./configure --with-python=pypy3 --prefix
make check  # will fail on storage
cp python/__pycache__/RDF.* ${site_packages}/__pycache__
cp python/__pycache__/Redland.* ${site_packages}/__pycache__
cp python/RDF.py ${site_packages}
cp python/Redland.py ${site_packages}
cp python/_Redland.pypy3*.so ${site_packages}
```


