├── .gitignore ├── LICENSE.txt ├── MANIFEST ├── MANIFEST.in ├── README.md ├── codemeta.json ├── csvw.json ├── docs ├── Makefile ├── code.rst ├── conf.py ├── index.rst ├── speed_performance.md └── teaching │ ├── CLARIAH-grlc-tutorial.pdf │ ├── cow_linked_data_sparql_intro.pdf │ ├── cow_usage.Rmd │ ├── cow_usage.html │ ├── cow_usage_20180228.pdf │ ├── img │ └── triple_schema.png │ ├── old │ └── cow2.pdf │ └── readme.txt ├── examples ├── LICENSE.txt ├── buurt.csv ├── cow_person_example.csv └── tafelvbis.csv ├── release.sh ├── requirements.txt ├── setup.cfg ├── setup.py └── src ├── assets └── frame0 │ ├── button_1.png │ ├── button_2.png │ ├── button_3.png │ ├── button_4.png │ ├── button_5.png │ ├── entry_1.png │ └── entry_2.png ├── converter ├── csvw.py └── util │ ├── __init__.py │ └── namespaces.yaml ├── csvw_gui.py └── csvw_tool.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/codemeta.json -------------------------------------------------------------------------------- /csvw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/csvw.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/code.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/speed_performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/speed_performance.md -------------------------------------------------------------------------------- /docs/teaching/CLARIAH-grlc-tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/CLARIAH-grlc-tutorial.pdf -------------------------------------------------------------------------------- /docs/teaching/cow_linked_data_sparql_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/cow_linked_data_sparql_intro.pdf -------------------------------------------------------------------------------- /docs/teaching/cow_usage.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/cow_usage.Rmd -------------------------------------------------------------------------------- /docs/teaching/cow_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/cow_usage.html -------------------------------------------------------------------------------- /docs/teaching/cow_usage_20180228.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/cow_usage_20180228.pdf -------------------------------------------------------------------------------- /docs/teaching/img/triple_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/img/triple_schema.png -------------------------------------------------------------------------------- /docs/teaching/old/cow2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/old/cow2.pdf -------------------------------------------------------------------------------- /docs/teaching/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/docs/teaching/readme.txt -------------------------------------------------------------------------------- /examples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/examples/LICENSE.txt -------------------------------------------------------------------------------- /examples/buurt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/examples/buurt.csv -------------------------------------------------------------------------------- /examples/cow_person_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/examples/cow_person_example.csv -------------------------------------------------------------------------------- /examples/tafelvbis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/examples/tafelvbis.csv -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/release.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/setup.py -------------------------------------------------------------------------------- /src/assets/frame0/button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/button_1.png -------------------------------------------------------------------------------- /src/assets/frame0/button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/button_2.png -------------------------------------------------------------------------------- /src/assets/frame0/button_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/button_3.png -------------------------------------------------------------------------------- /src/assets/frame0/button_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/button_4.png -------------------------------------------------------------------------------- /src/assets/frame0/button_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/button_5.png -------------------------------------------------------------------------------- /src/assets/frame0/entry_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/entry_1.png -------------------------------------------------------------------------------- /src/assets/frame0/entry_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/assets/frame0/entry_2.png -------------------------------------------------------------------------------- /src/converter/csvw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/converter/csvw.py -------------------------------------------------------------------------------- /src/converter/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/converter/util/__init__.py -------------------------------------------------------------------------------- /src/converter/util/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/converter/util/namespaces.yaml -------------------------------------------------------------------------------- /src/csvw_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/csvw_gui.py -------------------------------------------------------------------------------- /src/csvw_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CLARIAH/COW/HEAD/src/csvw_tool.py --------------------------------------------------------------------------------