forked from maparent/virtuoso-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
38 lines (27 loc) · 1.58 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Virtuoso from Python
====================
This package is intended to be a collection of modules for
interacting with `OpenLink Virtuoso`_ from python.
The goal is to provide drivers for `SQLAlchemy` and `RDFLib`.
At the time of this writing it requires a fork of pyodbc, which you can find on this branch:
https://github.com/maparent/pyodbc/tree/v3-virtuoso
You have to set up your ``~/.odbc.ini`` (or ``/etc/odbc.ini``) file with a block similar to this:
::
[VOS]
Description = Open Virtuoso
Driver = /usr/local/virtuoso-opensource/lib/virtodbcu_r.so
Servername = localhost
Port = 1111
Locale = en.UTF-8
Most parameters depend on your installation, but be sure to use ``virtodbcu_r.so`` as opposed to any other variant. Wo have used virtuoso 7.1 in production, and also virtuoso 6.1. As of this writing, there is an issue with using LONG VARCHAR columns in virtuoso 7.2.
For more information see http://packages.python.org/virtuoso
.. _OpenLink Virtuoso: http://virtuoso.openlinksw.com
.. _SQLAlchemy: http://www.sqlalchemy.org/
.. _RDFLib: http://rdflib.net/
This package also contains an experimental generator of Virtuoso
Linked Data Views, which was presented as a poster at ISWC2014:
http://ceur-ws.org/Vol-1272/paper_60.pdf
The original design of this library is by `William Waites`, and development is continued by `Marc-Antoine Parent` for the `Assembl` project.
.. _William Waites: https://bitbucket.org/ww/virtuoso/src
.. _Marc-Antoine Parent: https://github.com/maparent/virtuoso-python
.. _Assembl: https://github.com/imaginationforpeople/assembl