Metadata-Version: 2.0
Name: geocoder
Version: 1.2.4
Summary: Geocoder is a geocoding library, written in python, simple and consistent.
Home-page: https://github.com/DenisCarriere/geocoder
Author: Denis Carriere
Author-email: carriere.denis@gmail.com
License: The MIT License (MIT)
Requires-Dist: requests (>=2.5.3)
Requires-Dist: ratelim (>=0.1.6)
Requires-Dist: click (>=3.3.0)

Copyright (c) 2013-15 Denis Carriere

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Download-URL: https://github.com/DenisCarriere/geocoder/tarball/master
Description: Geocoder
        ========
        
        |PyPi Badge| |Travis CI| |Coverage Status|
        
        Geocoder is a geocoding library, written in python, simple and
        consistent.
        
        .. figure:: http://i.imgur.com/vUJKCGl.png
           :alt: 
        
        Many online providers such as Google & Bing have geocoding services,
        these providers do not include Python libraries and have different JSON
        responses between each other.
        
        Consistant JSON responses from various providers.
        
        .. code:: python
        
            >>> g = geocoder.google('New York City')
            >>> g.latlng
            [40.7127837, -74.0059413]
            >>> g.state
            'New York'
            >>> g.json
            ...
        
        Installation
        ------------
        
        To install Geocoder, simply:
        
        .. code:: bash
        
            $ pip install geocoder
        
        Providers
        ---------
        
        +-----------------+---------------+---------------+
        | Global          | Country       | Specialized   |
        +=================+===============+===============+
        | Google          | Yandex        | GeoOttawa     |
        +-----------------+---------------+---------------+
        | Bing            | Geocoder.ca   | FreeGeoIP     |
        +-----------------+---------------+---------------+
        | OpenStreetMap   | Baidu         | MaxMind       |
        +-----------------+---------------+---------------+
        | HERE            |               | what3words    |
        +-----------------+---------------+---------------+
        | TomTom          |               | CanadaPost    |
        +-----------------+---------------+---------------+
        | MapQuest        |               | Geonames      |
        +-----------------+---------------+---------------+
        | OpenCage        |               |               |
        +-----------------+---------------+---------------+
        | Yahoo           |               |               |
        +-----------------+---------------+---------------+
        | ArcGIS          |               |               |
        +-----------------+---------------+---------------+
        
        Features
        --------
        
        -  Formats (JSON, GeoJSON, OSM, WKT)
        -  Command Line Interface
        -  Confidence Score
        
        Documentation
        -------------
        
        https://geocoder.readthedocs.org/
        
        Twitter
        -------
        
        Speak up on Twitter
        `DenisCarriere <https://twitter.com/DenisCarriere>`__ and tell me how
        you use this Python Geocoder. New updates will be pushed to Twitter
        Hashtags `python <https://twitter.com/search?q=%23python>`__.
        
        Topic not available?
        --------------------
        
        If you cannot find a topic you are looking for, please feel free to ask
        me `DenisCarriere <https://twitter.com/DenisCarriere>`__ or post them on
        the `Github Issues
        Page <https://github.com/DenisCarriere/geocoder/issues>`__.
        
        Feedback
        --------
        
        Please feel free to give any feedback on this module. If you find any
        bugs or any enhancements to recommend please send some of your
        comments/suggestions to the `Github Issues
        Page <https://github.com/DenisCarriere/geocoder/issues>`__.
        
        Thanks to
        ---------
        
        A big thanks to all the people that help contribute:
        
        -  `Max Arnold <https://github.com/max-arnold>`__ - Submitted Github
           Issue
        -  `Thanh Ha <https://twitter.com/zxiiro>`__ - Cleaned up code & Unit
           Testing
        -  `Mahdi Yusuf <https://twitter.com/myusuf3>`__ - Promoted by `Pycoders
           Weekly <https://twitter.com/pycoders>`__
        -  `Alex Pilon <http://alexpilon.ca>`__ - Cleaned up code
        -  `Philip Hubertus <https://twitter.com/philiphubs>`__ - Provided HERE
           improvements & documentation
        -  `Antonio Lima <https://twitter.com/themiurgo>`__ - Improved code
           quality and introduced Rate Limits
        -  `Alexander Lukanin <https://github.com/alexanderlukanin13>`__ -
           Improved Python 3 compatibilty
        -  `flebel <https://github.com/flebel>`__ - Submitted Github Issues
        -  `patrickyan <https://github.com/patrickyan>`__ - Submitted Github
           Issues
        -  `esy <https://github.com/lambda-conspiracy>`__ - Submitted Github
           Issues
        
        .. |PyPi Badge| image:: https://badge.fury.io/py/geocoder.png
           :target: http://badge.fury.io/py/geocoder
        .. |Travis CI| image:: https://travis-ci.org/DenisCarriere/geocoder.png?branch=master
           :target: https://travis-ci.org/DenisCarriere/geocoder
        .. |Coverage Status| image:: https://coveralls.io/repos/DenisCarriere/geocoder/badge.svg
           :target: https://coveralls.io/r/DenisCarriere/geocoder
        
        
Keywords: geocoder arcgis tomtom opencage google bing here
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Libraries :: Python Modules
