Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wikier/ldpy
LDP Client for Python. Very prototypical, initially written to cross-testing Apache Marmotta reference implementation.
https://github.com/wikier/ldpy
Last synced: 24 days ago
JSON representation
LDP Client for Python. Very prototypical, initially written to cross-testing Apache Marmotta reference implementation.
- Host: GitHub
- URL: https://github.com/wikier/ldpy
- Owner: wikier
- License: apache-2.0
- Created: 2014-02-24T09:23:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-18T10:14:12.000Z (over 8 years ago)
- Last Synced: 2024-10-04T15:13:43.919Z (about 1 month ago)
- Language: Python
- Size: 23.4 KB
- Stars: 11
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - wikier/ldpy - LDP Client for Python. Very prototypical, initially written to cross-testing Apache Marmotta reference implementation. (others)
README
# LDPy
[LDP 1.0](https://www.w3.org/TR/ldp/) Client for Python.
Very prototypical client, initially written for cross-testing [Apache Marmotta reference implementation](http://wiki.apache.org/marmotta/LDPImplementationReport).
## Setup
Releases available from PyPI: https://pypi.python.org/pypi/ldpy
pip install ldpy
## Usage
ldpy = ldpy.Client("http://localhost:8080/ldp")
resource = ldpy.create("http://localhost:8080/ldp", open("file.ttl"), "text/turtle", "example")
print ldpy.read(resource)Available under [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).