/pypmed

A Python interface for PubMed's APIs

Primary LanguageJupyter NotebookMIT LicenseMIT

Python application

pypmed - a simple Python interface for PubMed's API

pypmed is a Python library that provides easy access to the PubMed's APIs.

Installation

pip install pypmed

Example usage

This example can be executed in this example notebook.

from pypmed import apis 

search_criteria = {'author_first_name': 'rachel', 
                   'author_last_name': 'gottschalk', 
                   'institution':  'university of pittsburgh at pittsburgh',
                   'publication_year': 2022
                   }

response = apis.query_pubmed_api(search_criteria=search_criteria)