collection-json is a small library, written in Python, to work with Collection+JSON documents.
The easiest way to install collection-json is to run
$ pip install collection-json
For other ways of installing it, please refer to the documentation.
Parsing a Collection+JSON document is really simple
>>> import requests >>> from collection_json import Collection >>> data = requests.get('http://www.youtypeitwepostit.com/api/').text >>> collection = Collection.from_json(data) >>> collection <Collection: version='1.0' href='http://www.youtypeitwepostit.com/api/'>
The documentation includes several usage examples, go and check it out!