Use Stardog with Python!
Project description
pystardog
Python wrapper for communicating with the Stardog HTTP server.
What is it?
This framework wraps all the functionality of a client for the Stardog DBMS, and provides access to a full set of functions such as executing SPARQL queries, administrative tasks on Stardog, and the use of the Reasoning API.
The implementation uses the HTTP protocol, since most of Stardog functionality is available using this protocol. For more information, go to the Stardog's HTTP Programming documentation.
Installation
pystardog is on PyPI so all you need is: pip install pystardog
Documentation
Documentation is readable at Read the Docs or can be built using Sphinx:
pip install -r requirements.txt
cd docs
make html
Tests
Run the tests with: python setup.py test
Quick Example
import stardog
conn_details = {
'endpoint': 'http://localhost:5820',
'username': 'admin',
'password': 'admin'
}
with stardog.Admin(**conn_details) as admin:
db = admin.new_database('db')
with stardog.Connection('db', **conn_details) as conn:
conn.begin()
conn.add(stardog.content.File('./test/data/example.ttl'))
conn.commit()
results = conn.select('select * { ?a ?p ?o }')
db.drop()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pystardog-0.9.4-py3-none-any.whl
.
File metadata
- Download URL: pystardog-0.9.4-py3-none-any.whl
- Upload date:
- Size: 30.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e04bd58cfddf86af5de4a854e7cf2a66656a65d6b5512a9f4e9e95dd603932a9 |
|
MD5 | 3808683f8791d767cbf5d2350731b26d |
|
BLAKE2b-256 | cf4249ff842ca04cad7c92c01d4f6bb9e77dc0f56c730a87e974f532e21f171a |