├── .gitignore ├── LICENSE ├── README.md ├── convert.py ├── convert_with_quads.py ├── my_graph.nt └── test_sheet.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/convert.py -------------------------------------------------------------------------------- /convert_with_quads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/convert_with_quads.py -------------------------------------------------------------------------------- /my_graph.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/my_graph.nt -------------------------------------------------------------------------------- /test_sheet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemanticLab/simple-csv-to-rdf/HEAD/test_sheet.csv --------------------------------------------------------------------------------