Metadata-Version: 1.1
Name: eutils
Version: 0.0.1
Summary: Structured Python interface to NCBI E-Utilities.
Home-page: https://bitbucket.org/invitae/eutils
Author: Reece Hart
Author-email: reecehart+eutils@gmail.com
License: Apache
Description: ====================================================
        eutils -- a simplified interface to NCBI E-Utilities
        ====================================================
        
        eutils is a Python package dedicated to searching and fetching records
        from NCBI using their E-Utilities interface.
        
        A Quick Example
        ===============
        
        ::
        
          import eutils
          client = eutils.Client(email = 'your@emailaddress.com')
          pmr = client.pubmed.fetch(555)
          for pmr in client.pubmed.search('Hart RK [AU]'):
              print('{pmr.author1} wrote {pmr.title} in {pmr.year}'.format(pmr=pmr))
        
        http://www.ncbi.nlm.nih.gov/books/NBK25499/
        
        
        Installation and quick start
        ============================
        
        
Keywords: bioinformatics
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
