Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Usage
=====
>>> from guardianapi import Client
>>> client = Client('my-api-key-goes-here')
>>> results = client.search(q = 'ocelots')
>>> results.count()
36
>>> for item in results:
... print item['webTitle']
This will return the first ten results. To retrieve everything (by
paginating across all pages automatically), do the following:
>>> for item in results.all():
... print item['webTitle']
To access the filters for a result set:
# Warning -- filters not currently working
>>> for filter in results.filters():
... print filter
Some API responses include URLs to make further requests. Here's how to start
a request using a full API URL:
>>> url = results.filters()[0]['apiUrl']
>>> new_results = client.request(url)