Metadata-Version: 1.1
Name: gmaps-url-parser
Version: 0.1.0
Summary: parse google maps url
Home-page: https://github.com/walidsa3d/gmaps-url-parser
Author: Walid Saad
Author-email: walid.sa3d@gmail.com
License: MIT
Description: gmaps-url-parser
        ================
        
        |Build| |downloads| |license| |version| |PEP8|
        
        Parse google maps URLs
        
        Install (automatic)
        -------------------
        
        ::
        
            $ pip install gmaps-url-parser
        
        Install (manual)
        ----------------
        
        ::
        
            $ git clone 
            $ cd gmaps-url-parser
            $ python setup.py install
        
        Usage
        -----
        
        .. code:: python
        
            >>> from gmaps_url_parser import parse
            >>> url = "https://www.google.com/maps/place/u+Saada,+Algeria/@35.2131065,4.1479717,10106m/data=!3m1!1e3!4m2!3m1!1s0x128bb3c644644ec3:0x7f746dd09dad9a9f"
            >>> parse(url)
            {'latitude': 35.2131065, 'zoom_level': '10106', 'place': 'Bou Saada, Algeria', 'maptype': 'earth', 'longitude': 4.1479717}
        
        License
        -------
        
        MIT
        
        .. |Build| image:: https://travis-ci.org/walidsa3d/gmaps-url-parser.svg?branch=master
        .. |downloads| image:: https://img.shields.io/pypi/dm/gmaps-url-parser.svg
        .. |license| image:: https://img.shields.io/pypi/l/gmaps-url-parser.svg
        .. |version| image:: https://img.shields.io/pypi/v/gmaps-url-parser.svg
        .. |PEP8| image:: https://img.shields.io/badge/code%20style-pep8-orange.svg
           :target: https://www.python.org/dev/peps/pep-0008/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
