Reputation: 31368
I would like to access Virtuoso
RDF store from Python
much like I do Postgres using psycopg
. After some googling, I came to the this page but I couldn't get either SQLAlchemy
sqlalchemy.exc.NoSuchModuleError: Can't load plugin: sqlalchemy.dialects:virtuoso
or RDFLib
rdflib.plugin.PluginException: No plugin registered for (Virtuoso, <class 'rdflib.store.Store'>)
to work. Any idea how to get either one to work so I can query and update RDF data from Python?
Upvotes: 5
Views: 2643
Reputation: 126
There is the following Python module for Virtuoso:
http://pythonhosted.org/virtuoso/
and also:
http://kidehen.typepad.com/kingsley_idehens_typepad/2011/01/sparql-guide-for-python-developer.html
Upvotes: 3