├── .gitignore ├── README.md ├── inferencing ├── cypher │ ├── data_load_v3.cypher │ └── data_load_v4.cypher ├── ontologies │ └── customCategories.ttl └── webscrap │ ├── data │ └── next_products.csv │ └── fashion_retailer_data_scrap.py ├── jsonlines ├── lines.jsonl.zip └── loadRDFFromJsonLines.py ├── py2neo └── py2neo_example.py ├── rdf_data └── movie.json ├── rdflib └── loadRDFFromCypher.py ├── rss_rdfa └── html_metadata.py └── wikidata └── query_wikidata.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/README.md -------------------------------------------------------------------------------- /inferencing/cypher/data_load_v3.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/inferencing/cypher/data_load_v3.cypher -------------------------------------------------------------------------------- /inferencing/cypher/data_load_v4.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/inferencing/cypher/data_load_v4.cypher -------------------------------------------------------------------------------- /inferencing/ontologies/customCategories.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/inferencing/ontologies/customCategories.ttl -------------------------------------------------------------------------------- /inferencing/webscrap/data/next_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/inferencing/webscrap/data/next_products.csv -------------------------------------------------------------------------------- /inferencing/webscrap/fashion_retailer_data_scrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/inferencing/webscrap/fashion_retailer_data_scrap.py -------------------------------------------------------------------------------- /jsonlines/lines.jsonl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/jsonlines/lines.jsonl.zip -------------------------------------------------------------------------------- /jsonlines/loadRDFFromJsonLines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/jsonlines/loadRDFFromJsonLines.py -------------------------------------------------------------------------------- /py2neo/py2neo_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/py2neo/py2neo_example.py -------------------------------------------------------------------------------- /rdf_data/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/rdf_data/movie.json -------------------------------------------------------------------------------- /rdflib/loadRDFFromCypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/rdflib/loadRDFFromCypher.py -------------------------------------------------------------------------------- /rss_rdfa/html_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/rss_rdfa/html_metadata.py -------------------------------------------------------------------------------- /wikidata/query_wikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbarrasa/neosemantics-python-examples/HEAD/wikidata/query_wikidata.py --------------------------------------------------------------------------------