Skip to main content

A python wrapper over ORCID API

Project description

python-orcid

Current state: Adding tests, continuous integration and badges.

Authors

Mateusz Susik <mateuszsusik@gmail.com>

Notes

If there are changes in ORCID API, the library might not work till the changes will be implemented by me in this library. Pull requests and submitting issues are very welcome.

Installation

pip install orcid

Introduction

ORCID is an open, non-profit, community-based effort to provide a registry of unique researcher identifiers and a transparent method of linking research activities and outputs to these identifiers. ORCID is unique in its ability to reach across disciplines, research sectors, and national boundaries and its cooperation with other identifier systems.

ORCID offers an API (Application Programming Interface) that allows your systems and applications to connect to the ORCID registry, including reading from and writing to ORCID records.

There are two types of API available for developers.

PublicAPI

The public API allows the developers to use the search engine and read author records. It is available for everybody.

import orcid
api = orcid.PublicAPI(sandbox=True)
search_results = api.search_public('text:English')
# Get the summary
summary = api.read_record_public('0000-0001-1111-1111', 'activities')

Every record in the summary dictionary should contain put-codes. Using them, it is possible to query the specific record for details. Type of the record and the put-code need to be provided.

# Get the specific record
# Available record types are:
# 'education', 'employment', 'funding', 'peer-review', 'work'
work = api.read_record_public('0000-0001-1111-1111', 'work', '1111')

MemberAPI

The member API allows the developers to add/change/remove records if their code led the user through the authentication process. To modify the records one needs a token which can be obtained following the OAuth 3-legged authorization process.

The member API lets the developer obtain more information when using the search API or fetching the records.

To create an instance of the member API handler, the institution key and the institution secret have to be provided.

import orcid
api = orcid.MemberAPI('institution_key', 'institution_secret',
                      sandbox=True)
search_results = api.search_member('text:English')
# Get the summary
summary = api.read_record_member('0000-0001-1111-1111', 'activities')

All the methods from the public API are available in the member API.

Token

So far, the library doesn’t provide any way to get the user token. The feature will be implemented in the future, though.

To obtain a token, you can use one of the libraries below:

If you want more options or you know more libraries worth recommending, please check this page.

Adding/updating/removing records

Using the member API, one can add/update/remove records from the ORCID profile.

api.add_record('author-orcid', 'token', 'work',
               {'title': 'Title', 'type': 'artistic-performance'})

# Change the type to 'other'
api.update_record('author-orcid', 'token', 'work', 'put-code',
                  {'type': 'other'})
api.remove_record('author-orcid', 'token', 'work', 'put-code')

The token is the string received from OAuth 3-legged authorization.

work is of the types of records. Every time a record is modified, the type has to be specified. The available types are:

  • activities

  • education

  • employment

  • funding

  • peer-review

  • work

The last argument is the record itself. You can pass a python dictionary (see the explanation below) or an xml.

api.add_record('author-orcid', 'token', 'work',
               xml='<work>xml content</work>')

If xml is not provided, it will be rendered by the library. Here are some examplary dictionaries that can be passed as an argument:

work

In case of doubts, see work XML.

A minimal example, only the mandatory fields are filled.

{
    'title': {'title': 'API Test Title'},
    'type': 'journal-article'
}

An example where all the fields are filled.

{
    'title': {'title': 'API Test Title',
              'subtitle': 'My Subtitle',
              'translated_title':
                    {'language_code': 'pl',
                     # Remember to use unicode strings for non ASCII
                     # charactes!
                     'translated_title': u'API Tytuł testowy'}
             },
    'journal_title': 'Journal Title',
    'short_description': 'My abstract',
    'citation': {
        'citation': '''@article {ORCIDtest2014,
                       author = "Lastname, Firstname",
                       title = "API Test Title",
                       journal = "Journal Title",
                       volume = "25",
                       number = "4",
                       year = "2010",
                       pages = "259-264",
                       doi = "doi:10.1087/20120404"
                     }''',
        # Available types:
        # 'formatted-unspecified'
        # 'bibtex'
        # 'formatted-apa'
        # 'formatted-harvard'
        # 'formatted-ieee'
        # 'formatted-mla'
        # 'formatted-vancouver'
        # 'formatted-chicago'
        'citation_type': 'bibtex'
    },
    # See http://members.orcid.org/api/supported-work-types
    'type': 'journal-article',
    'publication_date': {'year': '2010',
                         'month': '11',
                         'day': '10'
    },
    # See http://members.orcid.org/api/supported-work-identifiers
    'work_external_identifiers': [{
        'type': 'source-work-id',
        'id': '1234'
    }],
    'url': 'https://github.com/MSusik/python-orcid',
    'contributors': [{
        'name': 'LastName, FirstName',
        'orcid': '0000-0001-5109-3700',
        'email': 'somebody@mailinator.com',
        'attributes': {
            # Supported roles:
            # 'author'
            # 'assignee'
            # 'editor'
            # 'chair-or-translator'
            # 'co-investigator'
            # 'co-inventor'
            # 'graduate-student'
            # 'other-inventor'
            # 'principal-investigator'
            # 'postdoctoral-researcher'
            # 'support-staff'
            # 'lead'
            # 'co lead'
            # 'supported by'
            'role': 'author',
            # One of 'additional', 'first'
            'sequence': 'additional'
        }
    }],
    # ISO-629-1: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
    'language_code': 'en',
    'country': {'code': 'US'}
}

education or employment

In case of doubts, see affiliation XML.

A minimal example using only the required fields.

{
    'organization': {
        'name': 'My college',
        'address': {
            'city': 'Some city',
            'country': 'US'
        }
    }
}

An example with all the fields used.

{
    'department_name': 'Department',
    'role': 'Researcher (Academic)',
    'start_date': {'year': '2012',
                   'month': '04',
                   'day': '10'
    },
    'end_date': {'year': '2013',
                 'month': '04',
                 'day': '10'
    },
    'organization': {
        'address': {
            'city': 'Some City',
            'region': 'NY',
            'country': 'US'
        },
        'disambiguated-organization': {
            'identifier': 'XXXXXX',
            # Only RINGGOLD is available so far.
            'disambiguation-source': 'RINGGOLD'
        },
        'name': 'My college'
    }
}

funding

In case of doubts, see funding XML.

A minimal example using only the required fields.

{
    # Supported types:
    # 'award',
    # 'contract',
    # 'grant',
    # 'salary-award'
    'type': 'award',
    'title': {
        'title': 'Title of the Funding',
    },
    'organization': {
        'address': {
            'city': 'London',
            'country': 'GB'
        },
        'name': 'Funding Agency Name'
    }
}

An example with all the fields used.

{
    'type': 'award',
    'title': {
        'title': 'Title of the Funding',
        'translated_title': {
            'title': u'Tytuł Finansowania',
            'code': 'pl'
        }
    },
    'short_description': 'Description of the funding',
    'amount': {'currency_code': 'USD',
               'amount': 1000},
    'url': 'www.orcid.org',
    'start_date': {'year': '2013',
                   'month': '01',
                   'day': '10'
                   },
    'end_date': {'year': '2014',
                 'month': '01',
                 'day': '10'
                 },
    'external_identifiers': [{
                              # Only allowed value is 'grant_number'
                              'type': 'grant_number',
                              'value': '1234',
                              'url': 'www.funding.com/1234'
                            }],
    'contributors': [{
        'orcid': '0000-0003-4494-0734',
        'credit_name': {
            'name': 'Smith, John.',
        },
        'email': 'john@mailinator.com',
         'attributes': {
             # one of 'lead', 'co lead', 'supported by', 'other'
             'role': 'lead',
         }
    }],
    'organization': {
        'address': {
            'city': 'London',
            'region': 'London',
            'country': 'GB'
        },
        'disambiguated-organization': {
            'identifier': 'XXXXXX',
            # Only FUNDREF is available so far.
            'disambiguation-source': 'FUNDREF'
        },
        'name': 'Funding Agency Name'
    }
}

peer-rewiev

TBA

additional options

Every work/affiliation/funding can have it’s privacy level set by setting visibility field:

{
...
    # one of 'private', 'limited', 'public'
    'visibility': 'private',
...
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

orcid-0.0.tar.gz (10.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page