Metadata-Version: 2.0
Name: idigbio
Version: 0.2.1
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
=====================

A python client for the idigbio v2 API

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()
    ...



