├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── jsongraph ├── __init__.py ├── binding.py ├── common.py ├── config.py ├── context.py ├── graph.py ├── metadata.py ├── query.py ├── reflect.py ├── schemas │ └── config.json ├── triplify.py ├── util.py └── vocab.py ├── setup.py └── tests ├── __init__.py ├── fixtures ├── countries │ ├── countries.csv │ └── mapping.json ├── everypol │ ├── mapping.json │ └── term-26.csv ├── rdfconv │ └── bt_partial.json ├── schemas │ ├── area.json │ ├── contact_detail.json │ ├── count.json │ ├── event.json │ ├── group_result.json │ ├── identifier.json │ ├── link.json │ ├── membership.json │ ├── motion.json │ ├── organization.json │ ├── other_name.json │ ├── person.json │ ├── post.json │ ├── speech.json │ ├── vote.json │ └── vote_event.json └── test.json ├── test_context.py ├── test_graph.py ├── test_metadata.py ├── test_query.py ├── test_reflect.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/README.md -------------------------------------------------------------------------------- /jsongraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/__init__.py -------------------------------------------------------------------------------- /jsongraph/binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/binding.py -------------------------------------------------------------------------------- /jsongraph/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/common.py -------------------------------------------------------------------------------- /jsongraph/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/config.py -------------------------------------------------------------------------------- /jsongraph/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/context.py -------------------------------------------------------------------------------- /jsongraph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/graph.py -------------------------------------------------------------------------------- /jsongraph/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/metadata.py -------------------------------------------------------------------------------- /jsongraph/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/query.py -------------------------------------------------------------------------------- /jsongraph/reflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/reflect.py -------------------------------------------------------------------------------- /jsongraph/schemas/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/schemas/config.json -------------------------------------------------------------------------------- /jsongraph/triplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/triplify.py -------------------------------------------------------------------------------- /jsongraph/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/util.py -------------------------------------------------------------------------------- /jsongraph/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/jsongraph/vocab.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/countries/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/countries/countries.csv -------------------------------------------------------------------------------- /tests/fixtures/countries/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/countries/mapping.json -------------------------------------------------------------------------------- /tests/fixtures/everypol/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/everypol/mapping.json -------------------------------------------------------------------------------- /tests/fixtures/everypol/term-26.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/everypol/term-26.csv -------------------------------------------------------------------------------- /tests/fixtures/rdfconv/bt_partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/rdfconv/bt_partial.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/area.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/contact_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/contact_detail.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/count.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/event.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/group_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/group_result.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/identifier.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/link.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/membership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/membership.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/motion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/motion.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/organization.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/other_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/other_name.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/person.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/post.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/speech.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/vote.json -------------------------------------------------------------------------------- /tests/fixtures/schemas/vote_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/fixtures/schemas/vote_event.json -------------------------------------------------------------------------------- /tests/fixtures/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "test.json" 3 | } 4 | -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_reflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/test_reflect.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pudo/jsongraph/HEAD/tests/util.py --------------------------------------------------------------------------------