Nainstalujte tyto knihovny Pythonu:
pip install rdflib
pip install rdflib-sqlalchemy
pip install psycopg2
Spusťte následující kód Pythonu:
from rdflib import plugin
from rdflib.graph import Graph
from rdflib.store import Store
from rdflib_sqlalchemy import registerplugins
registerplugins()
SQLALCHEMY_URL ="postgresql+psycopg2://user:[email protected]:port/databasename"
store = plugin.get("SQLAlchemy", Store)(identifier="my_store")
graph = Graph(store, identifier="my_graph")
graph.open(SQLALCHEMY_URL, create=True)
graph.parse("demo.nt", format="nt")
result = graph.query("select * where {?s ?p ?o} limit 10")
for subject, predicate, object_ in result:
print(subject, predicate, object_)
graph.close()
'demo.nt' je soubor N-Triple k importu. Použil jsem to pro testování:
<http://example.org/a> <http://example.org/b> <http://example.org/c> .
Po úspěšném importu vaše databáze obsahuje pět tabulek (např. kb_[some_id]_asserted_statements) naplněných trojicemi. Konzole vytiskla maximálně deset trojitých.
Testováno na Windows 10, PostgreSQL 10.5, Python 3.5.4 (vše 64bit) s rdflib-4.2.2, rdflib-sqlalchemy-0.3.8 a psycopg2-2.7.5.