Python-based linked data notification libraries
Project description
This is an implementation of a python3-based Linked Data Notification sender and consumer.
Installing
pip install py-ldnlib
Adding an LDN sender to your code
A simple LDN Sender could be written as:
import ldnlib sender = ldnlib.Sender() inbox = sender.discover(target_resource) if inbox is not None: sender.send(inbox, data)
The data value may be a string, a dictionary, a list or an rdflib-based Graph.
Adding an LDN consumer to your code
A simple LDN Consumer could be written as:
import ldnlib consumer = ldnlib.Consumer() inbox = consumer.discover(target_resource) if inbox is not None: for iri in consumer.notifications(inbox): // fetch the notification as a Python dictionary notification = consumer.notification(iri)
Authentication
If the target-resource or inbox-resource requires authentication, an auth tuple may be supplied:
import ldnlib sender = ldnlib.Sender() inbox = sender.discover(target_resource, auth=(username, password)) if inbox is not None: sender.send(inbox, data, auth=(username, password))
Maintainer
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size py_ldnlib-0.1.3-py3-none-any.whl (4.5 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size py-ldnlib-0.1.3.tar.gz (3.6 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for py_ldnlib-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d962fc088a3b7dc2070625fd755ac969b024ccde596bf10870ca6bdcdb16fd0f |
|
MD5 | 039f66df7f0b01969ba8d74b8dee2692 |
|
BLAKE2-256 | 6ddd2816daec4a7c3f626d52009545cea98033b24728681d44c9d193731b2df3 |