├── .github ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── .pre-commit-config.yaml ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── api_reference.rst ├── conf.py ├── entity.rst ├── index.rst ├── json_dump.rst ├── linked_data_interface.rst ├── local_build.sh ├── package_summary.rst ├── q42_p69.png ├── readme.rst ├── sparql.rst └── wikidata.rst ├── examples ├── basic_json_dump.py ├── basic_linked_data_interface.py └── basic_sparql_query_service.py ├── qwikidata ├── __init__.py ├── claim.py ├── datavalue.py ├── entity.py ├── json_dump.py ├── linked_data_interface.py ├── snak.py ├── sparql.py ├── typedefs.py └── utils.py ├── requirements_docs.txt ├── setup.py └── tests ├── data ├── wd_L3354.json ├── wd_P279.json └── wd_Q42.json └── test_entity.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/api_reference.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/entity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/entity.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/json_dump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/json_dump.rst -------------------------------------------------------------------------------- /docs/linked_data_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/linked_data_interface.rst -------------------------------------------------------------------------------- /docs/local_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/local_build.sh -------------------------------------------------------------------------------- /docs/package_summary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/package_summary.rst -------------------------------------------------------------------------------- /docs/q42_p69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/q42_p69.png -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/readme.rst -------------------------------------------------------------------------------- /docs/sparql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/sparql.rst -------------------------------------------------------------------------------- /docs/wikidata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/docs/wikidata.rst -------------------------------------------------------------------------------- /examples/basic_json_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/examples/basic_json_dump.py -------------------------------------------------------------------------------- /examples/basic_linked_data_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/examples/basic_linked_data_interface.py -------------------------------------------------------------------------------- /examples/basic_sparql_query_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/examples/basic_sparql_query_service.py -------------------------------------------------------------------------------- /qwikidata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/__init__.py -------------------------------------------------------------------------------- /qwikidata/claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/claim.py -------------------------------------------------------------------------------- /qwikidata/datavalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/datavalue.py -------------------------------------------------------------------------------- /qwikidata/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/entity.py -------------------------------------------------------------------------------- /qwikidata/json_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/json_dump.py -------------------------------------------------------------------------------- /qwikidata/linked_data_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/linked_data_interface.py -------------------------------------------------------------------------------- /qwikidata/snak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/snak.py -------------------------------------------------------------------------------- /qwikidata/sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/sparql.py -------------------------------------------------------------------------------- /qwikidata/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/typedefs.py -------------------------------------------------------------------------------- /qwikidata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/qwikidata/utils.py -------------------------------------------------------------------------------- /requirements_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/requirements_docs.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/wd_L3354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/tests/data/wd_L3354.json -------------------------------------------------------------------------------- /tests/data/wd_P279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/tests/data/wd_P279.json -------------------------------------------------------------------------------- /tests/data/wd_Q42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/tests/data/wd_Q42.json -------------------------------------------------------------------------------- /tests/test_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kensho-technologies/qwikidata/HEAD/tests/test_entity.py --------------------------------------------------------------------------------