Metadata-Version: 1.1
Name: google_place_id
Version: 0.1.2
Summary: Compare the place based on google place id
Home-page: https://github.com/Raja27/geoid.git
Author: MRP DevShort
Author-email: mrppythondev@gmail.com
License: MIT
Description: This will use to compare the place based on google place id.
            So no need to compare the place string which may not be equal
            always.
            Ex. Madras not equel to Chennai
        
            from geo_id import GeoIds
            geo_ids=GeoIds('India')
            geo_ids.get_id_data()
        
            return:
            {
              "country_id": "ChIJkbeSa_BfYzARphNChaFPjNc",
              "country": "India"
            }
        
            geo_ids=GeoIds('Adyar')
            geo_ids.get_id_data()
        
            return:
            {
              "locality_id":"ChIJgRbEFe1nUjoRg54kepbOaWU",
              "state":"Tamil Nadu",
              "city":"Chennai",
              "state_id":"ChIJM5YYsYLFADsR8GEzRsx1lFU",
              "locality":"Adyar",
              "city_id":"ChIJYTN9T-plUjoRM9RjaAunYW4",
              "country_id":"ChIJkbeSa_BfYzARphNChaFPjNc",
              "country":"India"
            }
        
Keywords: google place id,place id
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
