├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── jsonld-parser.rst ├── jsonld-serializer.rst └── make.bat ├── index.html ├── rdflib_jsonld └── __init__.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/jsonld-parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/jsonld-parser.rst -------------------------------------------------------------------------------- /docs/jsonld-serializer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/jsonld-serializer.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/docs/make.bat -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rdflib_jsonld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/rdflib_jsonld/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rdflib>=5.0.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/rdflib-jsonld/HEAD/tox.ini --------------------------------------------------------------------------------