├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py ├── sparql_dataframe ├── __init__.py └── sparql_dataframe.py └── tests ├── __init__.py └── test_sparql_dataframe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas>=0.22.0 2 | SPARQLWrapper>=1.8.1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/setup.py -------------------------------------------------------------------------------- /sparql_dataframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/sparql_dataframe/__init__.py -------------------------------------------------------------------------------- /sparql_dataframe/sparql_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/sparql_dataframe/sparql_dataframe.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_sparql_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlesst/sparql-dataframe/HEAD/tests/test_sparql_dataframe.py --------------------------------------------------------------------------------