Metadata-Version: 2.0
Name: idigbio
Version: 0.3.0
Summary: Python Client for the iDigBio Search API
Home-page: http://github.com/idigbio/idigbio-python-client/
Author: Alex Thompson
Author-email: godfoder@acis.ufl.edu
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pandas
Requires-Dist: requests

idigbio-python-client
=====================

.. image:: https://img.shields.io/pypi/v/idigbio.svg
    :target: https://pypi.python.org/pypi/idigbio

.. image:: https://img.shields.io/travis/iDigBio/idigbio-python-client.svg
        :target: https://travis-ci.org/iDigBio/idigbio-python-client

A python client for the idigbio v2 API

.. code-block:: 

    pip install idigbio

For documentation of the endpoint parameters go to: https://github.com/idigbio/idigbio-search-api/wiki

Two Forms
---------

Returning JSON from the API as an iterator.

.. code-block:: python

    import idigbio
    api = idigbio.json()
    json_output = api.search_records()

Returning a Pandas Data Frame from the JSON API.

.. code-block:: python

    import idigbio
    api = idigbio.pandas()
    pandas_output = api.search_records()




