Metadata-Version: 1.1
Name: geocoder
Version: 1.1.3
Summary: A complete Python Geocoding module made easy.
Home-page: https://github.com/DenisCarriere/geocoder
Author: Denis Carriere
Author-email: carriere.denis@gmail.com
License: The MIT License (MIT)

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 [![badge][badge]][badge_url] [![travis][travis]][travis_url]
        
        Geocoder is a MIT Licensed Geocoding library, written in Python, 
        simple and consistent.
        
        ![providers][providers]
        
        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.
        
        ```python
        >>> g = geocoder.google('New York City')
        >>> g.latlng
        [40.7127837, -74.0059413]
        >>> g.state
        'New York'
        >>> g.json
        ...
        ```
        
        ## Features
        
        - [GeoJSON Support]
        - [OpenStreetMap Support]
        - [Command Line Interface]
        - [Confidence Score]
        - [Well Known Text Support]
        
        ## Installation
        
        To install Geocoder, simply:
        
        ```bash
        $ pip install geocoder
        ```
        
        ## Providers
        
        - [ArcGIS]
        - [Bing]
        - [CanadaPost]
        - [FreeGeoIP]
        - [Geocoder.ca]
        - [Geonames]
        - [Google]
        - [HERE]
        - [MapQuest]
        - [MaxMind]
        - [OpenCage]
        - [OpenStreetMap]
        - [GeoOttawa]
        - [TomTom]
        - [Yahoo]
        
        ## Documentation
        
        Documentation is available at http://deniscarriere.github.io/geocoder
        
        ## Twitter
        
        Speak up on Twitter @[DenisCarriere] and tell me how you use this Python Geocoder. New updates will be pushed to Twitter Hashtags [#python].
        
        ## Topic not available?
        
        If you cannot find a topic you are looking for, please feel free to ask me @[DenisCarriere] or post them on the [Github Issues Page].
        
        ## 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].
        
        ## Thanks to
        
        A big thanks to all the people that help contribute: 
        
        * @[alexanderlukanin13]
        * @[themiurgo]
        * @[flebel]
        * @[patrickyan]
        * @[esy]
        
        
        [alexanderlukanin13]: https://github.com/alexanderlukanin13
        [themiurgo]: https://github.com/themiurgo
        [flebel]: https://github.com/flebel
        [patrickyan]: https://github.com/patrickyan
        [esy]: https://github.com/lambda-conspiracy
        
        [ArcGIS]: https://github.com/DenisCarriere/geocoder/wiki/ArcGIS
        [Bing]: https://github.com/DenisCarriere/geocoder/wiki/Bing
        [CanadaPost]: https://github.com/DenisCarriere/geocoder/wiki/CanadaPost
        [FreeGeoIP]: https://github.com/DenisCarriere/geocoder/wiki/FreeGeoIP
        [Geocoder.ca]: https://github.com/DenisCarriere/geocoder/wiki/Geocoder-ca
        [Geonames]: https://github.com/DenisCarriere/geocoder/wiki/Geonames 
        [Google]: https://github.com/DenisCarriere/geocoder/wiki/Google
        [HERE]: https://github.com/DenisCarriere/geocoder/wiki/HERE
        [MapQuest]: https://github.com/DenisCarriere/geocoder/wiki/MapQuest
        [MaxMind]: https://github.com/DenisCarriere/geocoder/wiki/MaxMind
        [OpenCage]: https://github.com/DenisCarriere/geocoder/wiki/OpenCage
        [OpenStreetMap]: https://github.com/DenisCarriere/geocoder/wiki/OpenStreetMap
        [GeoOttawa]: https://github.com/DenisCarriere/geocoder/wiki/GeoOttawa
        [TomTom]: https://github.com/DenisCarriere/geocoder/wiki/TomTom
        [Yahoo]: https://github.com/DenisCarriere/geocoder/wiki/Yahoo
        
        [GeoJSON Support]: https://github.com/DenisCarriere/geocoder/wiki/GeoJSON-Support
        [OpenStreetMap Support]: https://github.com/DenisCarriere/geocoder/wiki/OpenStreetMap-Support
        [Command Line Interface]: https://github.com/DenisCarriere/geocoder/wiki/Command-Line-Interface
        [Confidence Score]: https://github.com/DenisCarriere/geocoder/wiki/Confidence-Score
        [Well Known Text Support]: https://github.com/DenisCarriere/geocoder/wiki/Well-Known-Text-Support
        
        [providers]: http://i.imgur.com/vUJKCGl.png
        [badge_url]: http://badge.fury.io/py/geocoder
        [travis_url]: https://travis-ci.org/DenisCarriere/geocoder
        [badge]: https://badge.fury.io/py/geocoder.png
        [travis]: https://travis-ci.org/DenisCarriere/geocoder.png?branch=master
        [DenisCarriere]: https://twitter.com/DenisCarriere
        [#python]: https://twitter.com/search?q=%23python
        [Github Issues Page]: https://github.com/DenisCarriere/geocoder/issues
        
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
