Metadata-Version: 1.0
Name: mapq
Version: 0.3
Summary: An easy-to-use Mapquest Geocoding API wrapper.
Home-page: http://github.com/zachwill/mapq
Author: Zach Williams
Author-email: hey@zachwill.com
License: MIT
Description: 
        Interacting with the Mapquest Geocoding API should be easy.
        
            >>> import mapq
        
            >>> mapq.key('my_api_key')
        
            >>> mapq.address('155 9th St San Francisco, CA')
            [{'lots': {'of': 'results'}}, ...]
        
            >>> mapq.batch('94103', '1 Infinity Loop Cupertino', 'Yerba Buena Park')
            [{'multiple': 'locations'}, ...]
        
            >>> mapq.geocode('155 9th St San Francisco, CA')
            {'single': {'geocode': 'result'}}
        
            >>> mapq.reverse(37.775002, -122.418297)
            {'looks': {'like': '155 9th St'}}
        
            >>> mapq.latlng('155 9th St San Francisco, CA')
            {'lat': 37.775002, 'lng': -122.418297}
        
Keywords: mapquest,geocoding,google maps,geocode
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
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
