A simple wrapper around the ORCID.org API.
Project description
A simple Python wrapper around the ORCID.org API.
Example
Here’s a quick snippet to get info on John Wilbanks.
>>> import orcid >>> #retrieve john's profile from his ORCID >>> john = orcid.get('0000-0002-4510-0385') >>> print john.family_name wilbanks
What if you’d like to see an author’s works or areas of interest?
>>> print john.keywords [] >>> print john.publications []
Hm, let’s try another author.
>>> alfonso = orcid.get('0000-0001-8855-5569') >>> print alfonso.keywords [u'computer science', u' bioinformatics', u' computational biology'] >>> print alfonso.publications[0] <Publication "A note about norbert wiener and his contribution to harmonic analysis and tauberian theorems">
Maybe you’d like to read about Mr. Wiener’s contributions?
>>> print alfonso.publications[0].url http://www.scopus.com/inward/record.url?eid=2-s2.0-67650513866&partnerID=MN8TOARS
Searching
If you’d rather search for authors, try ORCID’s search functionality
>>> #do a simple author search for john >>> authors = orcid.search('john wilbanks') >>> print next(authors).family_name wilbanks
You can also accomplish more complex queries using Q objects and fields
>>> from orcid import Q >>> authors = orcid.search(Q('given-name','john') & Q('family-name', 'wilbanks')) >>> print next(authors).family_name wilbanks
Enjoy!
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
orcid-python-0.1.tar.gz
(4.0 kB
view details)
File details
Details for the file orcid-python-0.1.tar.gz
.
File metadata
- Download URL: orcid-python-0.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6667b6ba0eb353caeb2ed4e2d3a56da9352fc34e4ade99b3bb155039f3b1adbc |
|
MD5 | b5e4a8386a27e2011f141406d69ccfb9 |
|
BLAKE2b-256 | cd532a5b3c87c2f0f398eee9bebffa974f14c393b008142cdf37cb44a08bfac9 |