LPSN-API - Programmatic Access to LPSN
Project description
LPSN API
New in v1.0.0: Better error handling and new method
flex_search()
Using the LPSN API requires registration. Registration is free but the usage of LPSN data is only permitted when in compliance with the LPSN copyright. See the LPSN copyright notice for details.
For questions, requests and comments regarding the LPSN API, please use the LPSN contact form.
Please register here.
The Python package can be initialized using your login credentials:
import lpsn
client = lpsn.LpsnClient('name@mail.example', 'password')
# the prepare method fetches all LPSN-IDs matching your query
# and returns the number of IDs found
count = client.search(taxon_name='Sulfolobus', correct_name='yes')
print(count, 'entries found.')
# the retrieve method lets you iterate over all results
# and returns the full entry as dict
# Entries can be further filtered using a list of keys (e.g. ['keywords'])
for entry in client.retrieve():
print(entry)
Example queries:
You can use IDs to query LPSN as described here. Note that when using the parameter id
, all other parameters are ignored.
# Search by LPSN-IDs (either semicolon separated or as list):
query = {"id": 520424}
query = {"id": "520424;4948;17724"}
query = {"id": [520424, 4948, 17724]}
# run query
client.search(**query)
Or you can use all the advanced search parameters that are described here.
Note that dashes (-
) are replaced by underscores when used as python parameters.
# Example looking for validly published names of species in the genus Escherichia that have risk group 1:
client.search(taxon_name='Escherichia', category='species', riskgroup='1', validly_published='yes')
# The same example using a Python dictionary:
query = {
'taxon-name': 'Escherichia',
'category': 'species',
'riskgroup': '1',
'validly-published': 'yes'
}
client.search(**query)
New in v1.0: Flexible search
The flexible search has been implemented in v1.0.0.
# Example looking for all entries with a basonym id that has been retreived by a previous fetch:
client.flex_search(search={"basonym_id":4370}, negate=False)
for entry in client.retrieve():
print(entry)
Filtering
Results from the retrieve
Method of both clients can be further filtered. The result contains a list of matched keyword dicts:
result = client.retrieve(filter=["full_name", "lpsn_taxonomic_status"])
print({k:v for x in result for k,v in x.items()})
The printed result will look like this:
{782310: [{'full_name': 'Sulfolobus acidocaldarius'},
{'lpsn_taxonomic_status': 'correct name'}],
782311: [{'full_name': 'Sulfolobus brierleyi'},
{'lpsn_taxonomic_status': 'synonym'}],
782312: [{'full_name': 'Sulfolobus hakonensis'},
{'lpsn_taxonomic_status': 'synonym'}],
782313: [{'full_name': 'Sulfolobus metallicus'},
{'lpsn_taxonomic_status': 'synonym'}],
...
Known issues
This package depends on python-keycloak
for authorization and login handling. However, python-keycloak seems to have issues with older versions of requests and urllib3. See the related issue on github. This might lead to the following error when trying to access the API:
AttributeError: 'Retry' object has no attribute 'allowed_methods'
You might be able to resolve this issue by updating the mentioned libraries, e.g. via pip:
pip install requests>=2.25.1 urllib3>=1.26.5
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 Distribution
File details
Details for the file lpsn-1.0.0.tar.gz
.
File metadata
- Download URL: lpsn-1.0.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d16c612f527b83819f16eadf564c4514b8f99426429b6a1d09275b6029c5e817 |
|
MD5 | 70978589cfd40274b047ec8286dc6e79 |
|
BLAKE2b-256 | e5a102dae8ba7ac464ec10f7048727e29f6702cec1c73efb40e9b852ecfe565b |
File details
Details for the file lpsn-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: lpsn-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87bfff41921626ee180a4470bb6e9140e95082e2902c31c2f7f4bd063280e648 |
|
MD5 | 9eeccaba4326016d17f0d868c0398da0 |
|
BLAKE2b-256 | 1caecde287d19bf5f788a6773e475baffddeb9efbaf23dc78854b400f9348f4f |