Metadata-Version: 1.1
Name: pygbif
Version: 0.1.2
Summary: Python client for GBIF
Home-page: http://github.com/sckott/pygbif
Author: Scott Chamberlain
Author-email: myrmecocystus@gmail.com
License: MIT
Description: pygbif
        =======
        
        |pypi| |docs| |travis| |coverage|
        
        Python client for the `GBIF API
        <http://www.gbif.org/developer/summary>`__.
        
        `Source on GitHub at sckott/pygbif <https://github.com/sckott/pygbif>`__
        
        Other GBIF clients:
        
        * R: `rgbif`, `ropensci/rgbif <https://github.com/ropensci/rgbif>`__
        
        Installation
        ============
        
        Stable from pypi
        
        .. code-block:: console
        
            pip install pygbif
        
        Development version
        
        .. code-block:: console
        
        		[sudo] pip install git+git://github.com/sckott/pygbif.git#egg=pygbif
        
        `pygbif` is split up into modules for each of the major groups of API methods.
        
        * Registry - Datasets, Nodes, Installations, Networks, Organizations
        * Species - Taxonomic names
        * Occurrences - Occurrence data, including the download API
        
        You can import the entire library, or each module individually as needed.
        
        Note that `GBIF maps API <http://www.gbif.org/developer/maps>`__ is not included in `pygbif`.
        
        Registry module
        ===============
        
        .. code-block:: python
        
        		from pygbif import registry
        		registry.dataset_metrics(uuid='3f8a1297-3259-4700-91fc-acc4170b27ce')
        
        Species module
        ===============
        
        .. code-block:: python
        
        		from pygbif import species
        		species.name_suggest(q='Puma concolor')
        
        Occurrences module
        ==================
        
        .. code-block:: python
        
        		from pygbif import occurrences
        		occurrences.search(taxonKey = 3329049)
        		occurrences.get(taxonKey = 252408386)
        		occurrences.count(isGeoreferenced = True)
        
        Meta
        ====
        
        * License: MIT, see `LICENSE file <LICENSE>`__
        * Please note that this project is released with a `Contributor Code of Conduct <CONDUCT.md>`__. By participating in this project you agree to abide by its terms.
        
        .. |pypi| image:: https://img.shields.io/pypi/v/habanero.svg
           :target: https://pypi.python.org/pypi/habanero
        
        .. |docs| image:: https://readthedocs.org/projects/pygbif/badge/?version=latest
           :target: http://pygbif.rtfd.org/
        
        .. |travis| image:: https://travis-ci.org/sckott/pygbif.svg
           :target: https://travis-ci.org/sckott/pygbif
        
        .. |coverage| image:: https://coveralls.io/repos/sckott/pygbif/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/sckott/pygbif?branch=master
        
        
        Changelog
        =======
        
        0.1.4 (2015-12-05)
        --------------------
        - Added more registry methods (#11)
        - Fixed wheel to be universal for 2 and 3 (#10)
        - Improved documentation a lot, autodoc methods now
        
        0.1.1 (2015-11-03)
        --------------------
        - Fixed distribution for pypi
        
        0.1.0 (2015-11-02)
        --------------------
        - First release
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
