Skip to main content

A library for enabling Linked Data API functionality on top of Flask

Project description

# PyLDAPI

Python Linked Data API is a slim implementation of the [W3C](https://www.w3.org/)'s [Linked Data Platform](https://www.w3.org/TR/ldp/) standard for an API to access RDF content.

# Installing

Install and update using *pip*:

``` .sourceCode .bash
pip install -U Flask
```

## License

This work is licensed using the GPL v3 license. See [LICENSE](LICENSE) for the deed.

## Contacts

### Authors

**Nicholas Car**
*Senior Experimental Scientist*
CSIRO Land & Water
<nicholas.car@csiro.au>

### Contributors

**Jevy Wang**
CSIRO Land & Water

## Documentation

This is partially out of date and is being updated.

### Decoration define

- `@decorator.register` provides a decoration based alternates views
and register views decorator by providing customed render class,
such as `@decorator.register('/', render = DefaultIndexRegister)`,
or `@decorator.register('/')` when `DefaultIndexRegister` will be
used by default.
- `@deciratir.instance extends @register`, besides provides alternates
views and register views of an instance, it also renders the
instance display views. The render class must be provided. Such as
`@deciratir.instance('/site/10', render=Site)`

### Render class

- the render classes used in the register decorator and instance
decorator must extends the renderer.py class, which asks sub-class
must implementing the static view() method and render() method.

``` {.sourceCode .python}
class DefaultRegisterRenderer(Renderer):
@staticmethod
def view():
return json.dumps({ ... })
def render(self, view, mimetype):
return Response data as specified by view and mimetype.
```

- the static view() method tells decorator what kinds of views,
formats, and default view it supports, and the instance description
which will be displayed on home page as registers navigation
introduction. The view method also provides data for alternates
views.
- the render() method accepts view and mimetype parameters to render
views as specified by view and mimetype.

### Usage

- The usge of the pyldp register model is as simple as adding a
@decorator.register decorator between @routes.route and the method.
In future, we are going to combine route decorator with the register
decorator, when just one `@decorator.register` decorator could
process both route and render class register operation.
- Here is an example of usage:

``` {.sourceCode .python}
from pyldp.index_register import DefaultIndexRegister
from pyldp.default_register import DefaultRegisterRenderer
from pyldp import decorator
from model.site_instance_render import Site

routes = Blueprint('controller', __name__)

@routes.route('/')
@decorator.register('/')
def index(**args):
view = args.get('view')
format = args.get('format')
return DefaultIndexRegister('page_index.html', decorator.register_tree).render(view, format)

@routes.route('/site/')
@decorator.register('/site/', render=DefaultRegisterRenderer)
def sites(**args):
"""
The Register of Site
"""
view = args.get('view')
format = args.get('format')
return DefaultRegisterRenderer(request).render(view, format)

@routes.route('/site/<string:site_no>')
@decorator.instance('/site/<string:site_no>', render=Site)
def site(**args):
"""
A single Site
"""
site_no = args.get('site_no')
view = args.get('view')
format = args.get('format')
return Site(site_no).render(view, format)
```

### How to walk through the website?

- the entry of website if the home page where an site map was provided
in defualt text/html view.
- specifying `?_view=reg&_format=application/json` when call the root
URI, a json format data will be responsed, which tells terminal
users what registers are supported.

<!-- -->

http://127.0.0.1:5000/?_view=reg&_format=application/json

``` {.sourceCode .javascript}
[
{
"uri": "/",
"description": "Index register, return all registers with links navigating to them. \
This index register will be used when there is not register specified in \
@decorator.register() in routes.py. People can replace this default \
register by simply adding customized index register in @decorator.register() decorator."
},
{
"uri": "/site/",
"description": "Default register, return all instances with links in one page. \
When register class doesnot specified in @decorator.register() in router.py, \
this default register will be applied."
}
]
```

- specifying `?_view=alternates&_format=application/json` to a
specific register, a jons format data will be responsed, which tells
views and formats the register supported.

<!-- -->

http://127.0.0.1:5000/site/?_view=alternates&_format=application/json

``` {.sourceCode .javascript}
{
"default": "reg",
"alternates": {
"mimetypes": [
"text/html",
"text/turtle",
"application/rdf+xml",
"application/rdf+json",
"application/json"
],
"default_mimetype": "text/html",
"namespace": "http://www.w3.org/ns/ldp#Alternates",
"description": "The view listing all other views of this class of object"
},
"reg": {
"mimetypes": [
"text/html",
"text/turtle",
"application/rdf+xml",
"application/rdf+json"
],
"default_mimetype": "text/html",
"namespace": "http://purl.org/linked-data/registry#",
"description": "The Registry Ontology. Core ontology for linked data registry services. \
Based on ISO19135 but heavily modified to suit \
Linked Data representations and applications"
},
"description": "Default register, return all instances with links in one page. \
When register class doesnot specified in @decorator.register() in router.py, \
this default register will be applied."
}
```

- specifying `?_view=alternates&_format=application/json` to a
specific instance, a jons format data will be responsed, which tells
views and formats the instance supported.

<!-- -->

http://127.0.0.1:5000/site/10?_view=alternates&_format=application/json

``` {.sourceCode .json}
{
"default": "pdm",
"alternates": {
"mimetypes": [
"text/html",
"text/turtle",
"application/rdf+xml",
"application/rdf+json",
"application/json"
],
"default_mimetype": "text/html",
"namespace": "http://www.w3.org/ns/ldp#Alternates",
"description": "The view listing all other views of this class of object"
},
"pdm": {
"mimetypes": [
"text/html",
"text/turtle",
"application/rdf+xml",
"application/rdf+json"
],
"default_mimetype": "text/html",
"namespace": "http://pid.geoscience.gov.au/def/ont/ga/pdm",
"description": "Geoscience Australia's Public Data Model ontology"
},
"nemsr": {
"mimetypes": [
"application/vnd.geo+json"
],
"default_mimetype": "application/vnd.geo+json",
"namespace": "http://www.neii.gov.au/nemsr",
"description": "The National Environmental Monitoring Sites Register"
},
"description": "instance render class for register Site"
}
```


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyldapi-0.1.6.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

pyldapi-0.1.6-py2.py3-none-any.whl (19.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyldapi-0.1.6.tar.gz.

File metadata

  • Download URL: pyldapi-0.1.6.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyldapi-0.1.6.tar.gz
Algorithm Hash digest
SHA256 4f5233f0e133e4b694acddee16ffe3e9f7c9602fa616afd3fbce1782f0a4aced
MD5 c4314f67937618ae3e85de7fed858638
BLAKE2b-256 0afc119ede340e493237df1fb264ebbd7ae7dc4c46438d27ccff9d4bbdb9e288

See more details on using hashes here.

File details

Details for the file pyldapi-0.1.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pyldapi-0.1.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 89847b37259ba9c8fde4d991b15c50ef3674cfd06c383e8d160b3c9a3d72d921
MD5 d6696a69e4cb346f7b6af89ce89ef6c1
BLAKE2b-256 f771d67ec538c00e9cc46cc9cbed829c6c2f641390f36fcb4e211e3f50b2d6d9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page