No project description provided
Project description
pyportal
A Python wrapper around the API for the Natural History Museum's Data Portal.
This module is new and under development, so does not include all actions available through the API; it prioritises the record search functionality. It is liable to change dramatically between versions.
We have more generic (and comprehensive) API documentation available here.
Requirements
- Python 3.7+
Installation
pip install -e git+git://github.com/NaturalHistoryMuseum/nhm-pyportal.git#egg=pyportal
Quickstart Usage
Start by creating an API
object:
import pyportal
api = pyportal.API()
Searching
You can either search for all records, or specifically for assets/media. The syntax is very similar for both.
from pyportal import constants
# specify any resource you want, but the IDs for the specimens and index lots resources are built in
resource_id = constants.resources.specimens
# find all records in the specimens resource
search = api.records(resource_id)
# OR find all assets (images) in the specimens resource
search = api.assets(resource_id)
The search above is equivalent to this search on the Data Portal website.
There is a helper method to transform a data portal URL into a dict
that can be passed into the search constructor.
url = 'https://data.nhm.ac.uk/dataset/56e711e6-c847-4f99-915a-6894bb5c5dea/resource/05ff2255-c38a-40c9-b657-4ccb55ab2feb?filters=collectionCode%3Abot'
# these two searches are equivalent
print(api.records(constants.resources.specimens, collectionCode='bot').count()) # 775440
print(api.records(**api.from_url(url)).count()) # 775440
You can specify the following parameters (all are optional):
query
: a free-text search, e.g.query='bugs'
sort
: a list of fields and sort directions, e.g.sort=['country asc', 'family desc']
fields
: a list of fields to return for each record (leave blank to return all), e.g.fields=['country', 'family', 'genus']
offset
: skip the first n results, e.g.offset=50
limit
: return only n results per page (defaults to 100), e.g.limit=10
Any other keyword arguments will be considered filters
.
search = api.records(constants.resources.specimens, query='bugs', sort=['country asc', 'family desc'], fields=['country', 'family', 'genus'], offset=50, limit=10)
Viewing results
Iterate through all results using .all()
(this ignores limit
):
for record in search.all():
print(record)
Or just view the first one with .first()
:
print(search.first())
You could also view a page (blocks of records in the size set by limit
) at a time using .next()
:
try:
page = search.next()
for record in page:
print(record)
except StopIteration: # raised by search.next() if there's no next page
print('No more results.')
If you just want the total number of records, use .count()
:
print(search.count())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file nhm-pyportal-0.1.tar.gz
.
File metadata
- Download URL: nhm-pyportal-0.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ceac4f5584564aab139b8e3fd3fdfb679add2a8a9d24c68b15ffda324b1c25d0 |
|
MD5 | 8a3f4964485a826c0389483a2ff7db5e |
|
BLAKE2b-256 | e18c4712e310a70f51af3af38c4d9c7e2946525673fd5b584e276f928d186b97 |
File details
Details for the file nhm_pyportal-0.1-py3.7.egg
.
File metadata
- Download URL: nhm_pyportal-0.1-py3.7.egg
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c37ec0c5e0b0199eaeba8d22314696efdf2259d352ec27890d982d2793bf18a2 |
|
MD5 | b6335ae6b6d314b23cddbaa9757f761b |
|
BLAKE2b-256 | 172366cfa2bc1bcbee6dfbee0cabe6b40c56de91436134edd8680713a2515dca |
File details
Details for the file nhm_pyportal-0.1-py3-none-any.whl
.
File metadata
- Download URL: nhm_pyportal-0.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b583336bc87ddd7bf3ceb49d845e80c4b1798a5d5217d29b5d347cb8fe6ff356 |
|
MD5 | c35d283be8d95eb94ea163f959d1f1e2 |
|
BLAKE2b-256 | 0313eb76bc8c33a1c9264fc016ed92784add3dc61fa8679b348006c627adad21 |