├── .gitignore
├── README.md
├── doc
├── example_output_html.txt
└── example_output_screenshot.png
├── lib
├── bottle.py
├── html5lib
│ ├── __init__.py
│ ├── constants.py
│ ├── filters
│ │ ├── __init__.py
│ │ ├── _base.py
│ │ ├── formfiller.py
│ │ ├── inject_meta_charset.py
│ │ ├── lint.py
│ │ ├── optionaltags.py
│ │ ├── sanitizer.py
│ │ └── whitespace.py
│ ├── html5parser.py
│ ├── ihatexml.py
│ ├── inputstream.py
│ ├── sanitizer.py
│ ├── serializer
│ │ ├── __init__.py
│ │ ├── htmlserializer.py
│ │ └── xhtmlserializer.py
│ ├── tests
│ │ ├── README
│ │ ├── __init__.py
│ │ ├── mockParser.py
│ │ ├── performance
│ │ │ └── concatenation.py
│ │ ├── runparsertests.py
│ │ ├── runtests.py
│ │ ├── support.py
│ │ ├── test_encoding.py
│ │ ├── test_formfiller.py
│ │ ├── test_parser.py
│ │ ├── test_parser2.py
│ │ ├── test_sanitizer.py
│ │ ├── test_serializer.py
│ │ ├── test_stream.py
│ │ ├── test_tokenizer.py
│ │ ├── test_treewalkers.py
│ │ ├── test_whitespace_filter.py
│ │ ├── tokenizertotree.py
│ │ ├── us-ascii.html
│ │ └── utf-8-bom.html
│ ├── tokenizer.py
│ ├── treebuilders
│ │ ├── __init__.py
│ │ ├── _base.py
│ │ ├── dom.py
│ │ ├── etree.py
│ │ ├── etree_lxml.py
│ │ ├── simpletree.py
│ │ └── soup.py
│ ├── treewalkers
│ │ ├── __init__.py
│ │ ├── _base.py
│ │ ├── dom.py
│ │ ├── etree.py
│ │ ├── genshistream.py
│ │ ├── lxmletree.py
│ │ ├── pulldom.py
│ │ ├── simpletree.py
│ │ └── soup.py
│ └── utils.py
├── rdfextras
│ ├── __init__.py
│ ├── sparql
│ │ ├── __init__.py
│ │ ├── algebra.py
│ │ ├── components.py
│ │ ├── evaluate.py
│ │ ├── graph.py
│ │ ├── operators.py
│ │ ├── parser.py
│ │ ├── processor.py
│ │ ├── pyparsing.py
│ │ └── query.py
│ └── tools
│ │ ├── CSVWriter.py
│ │ ├── DatabaseStats.py
│ │ ├── EARLPlugin.py
│ │ ├── FixTypeViews.py
│ │ ├── QueryRunner.py
│ │ ├── QueryStats.py
│ │ ├── __init__.py
│ │ ├── describer.py
│ │ ├── pathutils.py
│ │ ├── rdfpipe.py
│ │ └── sparqler.py
├── rdflib
│ ├── LICENSE
│ ├── __init__.py
│ ├── collection.py
│ ├── compare.py
│ ├── events.py
│ ├── exceptions.py
│ ├── graph.py
│ ├── namespace.py
│ ├── parser.py
│ ├── plugin.py
│ ├── plugins
│ │ ├── __init__.py
│ │ ├── memory.py
│ │ ├── parsers
│ │ │ ├── __init__.py
│ │ │ ├── notation3.py
│ │ │ ├── nt.py
│ │ │ ├── ntriples.py
│ │ │ ├── rdfa
│ │ │ │ ├── __init__.py
│ │ │ │ ├── embeddedrdf.py
│ │ │ │ ├── literal.py
│ │ │ │ ├── options.py
│ │ │ │ ├── parse.py
│ │ │ │ ├── state.py
│ │ │ │ └── transform
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── headabout.py
│ │ │ ├── rdfxml.py
│ │ │ └── trix.py
│ │ ├── serializers
│ │ │ ├── __init__.py
│ │ │ ├── n3.py
│ │ │ ├── nt.py
│ │ │ ├── rdfxml.py
│ │ │ ├── trix.py
│ │ │ ├── turtle.py
│ │ │ └── xmlwriter.py
│ │ └── sleepycat.py
│ ├── query.py
│ ├── serializer.py
│ ├── store.py
│ ├── term.py
│ └── util.py
├── rdflib_schemaorg_csv.py
└── simplejson
│ ├── __init__.py
│ ├── _speedups.c
│ ├── decoder.py
│ ├── encoder.py
│ ├── scanner.py
│ └── tool.py
├── mappings
├── dbpedia-2011-07-31.rdf
├── schema-org-all.json
└── sioc-2011-08-01.rdf
├── templates
├── base.tpl
├── d_table.css
├── d_table_jui.css
├── jquery-ui-1.8.4.custom.css
├── jquery.dataTables.min.js
├── jquery.js
└── web.instata-style.css
├── test
├── potd_0.csv
└── potd_1.csv
├── web.instata.config
└── web.instata.py
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 |
--------------------------------------------------------------------------------
/doc/example_output_html.txt:
--------------------------------------------------------------------------------
1 |