Writing RDFLib DocumentationΒΆ

The docs are generated with Sphinx.

Sphinx makes it very easy to pull in doc-strings from modules, classes, methods, etc. When writing doc-strings, special reST fields can be used to annotate parameters, return-types, etc. This make for pretty API docs:

http://sphinx-doc.org/domains.html?highlight=param#info-field-lists

To get N3 and SPARQL syntax highlighting do:

pip install -e git+git://github.com/gjhiggins/sparql_pygments_lexer.git#egg=SPARQL_Pygments_Lexer
pip install -e git+git://github.com/gjhiggins/n3_pygments_lexer.git#egg=Notation3_Pygments_Lexer

API Docs are automatically generated with sphinx-apidoc:

sphinx-apidoc -f -d 10 -o docs/apidocs/ rdflib examples

(then rdflib.rst was tweaked manually to not include all convenience imports that are directly in the rdflib/__init__.py)

The tables in plugin_*.rst were generated with plugintable.py

Previous topic

RDFLib developers guide

Next topic

A Universal RDF Store Interface

This Page