This repository was archived by the owner on Mar 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
178 lines (125 loc) · 6.01 KB
/
README.txt
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
Description
============
This package has been designed to facilitate browsing and retrieving content
from the Public Media Platform (PMP) API. It makes it easy to generate signed
requests and browser hypermedia resources returned by the PMP API.
For more information about PMP, `read the documentation
<https://github.com/publicmediaplatform/pmpdocs/wiki>`_
This application has been created at KBPS Public Broadcasting in San Diego by
Erik Aker and it has been licensed under GPL v2.
To Do
-----
1. Testing: pmp_client module requires unit-tests
2. Documentation: Clean and write more.
3. Create Collectiondoc class for creating new collectiondocs
Installation
============
py3-pmp-wrapper has been written for Python3.3 and Python3.4. It is not
compatible with Python2.7 and below. All references below to installing this
application refer only to Python versions 3.3 and 3.4.
Distribute & Pip
----------------
To install py3-pmp-wrapper with `pip <https://pip.pypa.io>`_, just run
this in your terminal::
$ pip install py3-pmp-wrapper
or, with `easy_install <http://pypi.python.org/pypi/setuptools>`_::
$ easy_install py3-pmp-wrapper
Get the Code
------------
py3-pmp-wrapper is on GitHub, where the code is
`available <https://github.com/KPBS/py3-pmp-wrapper>`_.
You can clone the public repository::
$ git clone https://github.com/KPBS/py3-pmp-wrapper
Once you have a copy of the source, you can embed it in your Python package,
or install it into your site-packages easily::
$ python setup.py install
.. _quickstart:
Quickstart
==========
Create a PMP Client
-------------------
After the application has been installed, you can create a `Client` object:
>>> from pmp_api.pmp_client import Client
>>> client = Client("https://api-pilot.pmp.io")
Authenticate Your Client
------------------------
With a working client, you will need to authenticate using your client-id and
client-secret
>>> client.gain_access(CLIENT-ID, CLIENT-SECRET)
Make Requests
-------------
Now you're ready to make requests:
>>> home_doc = client.home() # Get homedoc
>>> random_request = client.get("https://Some/arbitrary/endpoint?params=someparam")
>>> random_request
<Navigable Doc: https://Some/arbitrary/endpoint?params=someparam>
>>> client.document # Most recent result is saved here
<NavigableDoc: https://api-pilot.pmp.io/docs?params=someparam>
The `Client` will automatically sign all requests and it should renew your
access token if it expires.
Navigating
----------
Using the fetched document's `navigation` object, the `Client` can follow
navigation, if it's present:
# If the document defines a 'next' navigation element, we can follow it
>>> client.next()
<NavigableDoc: https://api-pilot.pmp.io/docs?guid=SOME_GUID&offset=10>
>>> client.prev() # Same as above, returns None if nothing there...
>>>
>>> client.last() # requests 'last' page of results as given by document
>>> client.first() # requests 'first' page of results as given by document
We can also go `back` or `forward`, like a browser, re-requesting the previous
document:
>>> client.document
<NavigableDoc: https://api-pilot.pmp.io/docs?params=someparam>
>>> client.back() # This issues a new request; does not pull from cache
<NavigableDoc: https://api-pilot.pmp.io/docs?guid=SOME_GUID>
>>> client.forward() # same as `back`
<NavigableDoc: https://api-pilot.pmp.io/docs?params=someparam>
Most of the useful navigation is done via `urn`, the primary method for
accessing content, and the Client object provides a `query` method for use with
a `urn`. For example, let's look at `urn:collectiondoc:query:docs`, which
contains information for querying documents.
>>> document = client.query('urn:collectiondoc:query:docs',
params={"tag": "samplecontent",
"profile": "story"})
<NavigableDoc: https://api-pilot.pmp.io/docs?guid=SOME_GUID>
NavigableDoc objects
====================
To really get interesting information back, we need to have some way of
managing it. For this reason, the `Client` object returns `NavigableDoc`
elements. These have a number of methods and properties, which should make it
easier to extract information from the document.
>>> document = client.query('urn:collectiondoc:query:docs',
params={"tag": "samplecontent",
"profile": "story"})
<NavigableDoc: https://api-pilot.pmp.io/docs?guid=SOME_GUID>
>>> document.links
{'item': [{'href': 'https://api-pilot.pmp.io/docs/SOMEGUID ...
>>> client.document.items
[{'attributes': {'valid': {'to': '3014-07-29T18:08:11+00:00', 'from': ...
>>> document.querylinks
[{'rels': ['urn:collectiondoc:query:users'], 'href-template': ...
In order to get interesting results back, we generally want to issue queries,
but it can be tough to know how to make queries. The `NavigableDoc` object can
help with that.
>>> document.template('urn:collectiondoc:query:docs')
'https://api-pilot.pmp.io/docs{?guid,limit,offset,tag,collection,text,searchsort,has,author,distributor,distributorgroup,startdate,enddate,profile,language}'
In addition, we can find options associated with the `urn`:
>>> document.options('urn:collectiondoc:query:docs')
{'rels': ['urn:collectiondoc:query:docs'], 'href-template': ...
What if we want to know which `urns` are listed at a particular endpoint? We
must ask the document for its `query_types`:
>>> for item in document.query_types():
... print(item)
('Query for users', ['urn:collectiondoc:query:users'])
('Query for schemas', ['urn:collectiondoc:query:schemas'])
('Access documents', ['urn:collectiondoc:hreftpl:docs'])
('Query for documents', ['urn:collectiondoc:query:docs'])
etc.
Finally, you can always retrieve all of the results inside a document by
accessing its `collectiondoc` attribute. This will return a dictionary of all
values contained in the document:
>>> document.collectiondoc
{ALL-The_Data ...}
This should cover most use-cases for browsing PMP API content.