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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
Source: python-flask-rdf
Maintainer: Iain R. Learmonth <irl@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
python-all,
python3-all,
python-setuptools,
python3-setuptools,
python-mimeparse (>= 0.1.4),
python3-mimeparse,
python-rdflib,
python3-rdflib,
Standards-Version: 3.9.7
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/python-flask-rdf.git
Vcs-Git: https://anonscm.debian.org/git/collab-maint/python-flask-rdf.git
Homepage: https://pypi.python.org/pypi/flask_rdf/0.1.7
Package: python-flask-rdf
Architecture: all
Depends: ${python:Depends},
${misc:Depends},
python-rdflib,
python-mimeparse (>= 0.1.4)
Description: Flask decorator to output RDF using content negotiation (Python 2)
Apply the @flask_rdf decorator to a view function and return an rdflib
Graph object. Flask_rdf will automatically format it into an RDF output
format, depending on what the request’s Accept header says. If the view
function returns something besides an rdflib graph, it will be passed
through without modification.
.
Custom formats can be registered easily. After registering the new
serializer with rdflib’s plugin support, use the decide_format method to
register a new mimetype request to use the new formatter.
.
This package works with Python versions 2.x.
Package: python3-flask-rdf
Architecture: all
Depends: ${python3:Depends},
${misc:Depends},
python3-rdflib,
python3-mimeparse
Description: Flask decorator to output RDF using content negotiation (Python 3)
Apply the @flask_rdf decorator to a view function and return an rdflib
Graph object. Flask_rdf will automatically format it into an RDF output
format, depending on what the request’s Accept header says. If the view
function returns something besides an rdflib graph, it will be passed
through without modification.
.
Custom formats can be registered easily. After registering the new
serializer with rdflib’s plugin support, use the decide_format method to
register a new mimetype request to use the new formatter.
.
This package works with Python versions 3.x.
|