Metadata-Version: 2.1
Name: gcp-alpa
Version: 0.0.9
Summary: GCP API Wrapper
Home-page: https://github.com/alpaalpa/gcp
Author: Albert Pang
Author-email: alpaaccount@mac.com
License: UNKNOWN
Description: # gcp
        
        Various wrappers over Google Cloud Platform API
        
        
        
        ## Installation
        
        ```
        pip install gcp-alpa
        ```
        
        ## geocoding
        
        
        ```
        from gcp.geocoding import GCPGeocoding
        
        geocoding = GCPGeocoding(api_key='<API_KEY>')
        
        result = geocoding.reverse(78.2232, 15.6267)
        
        print(result.country)
        print(result.locality)
        print(result.neighborhood)
        ```
        
        Output
        ```
        Svalbard and Jan Mayen
        Longyearbyen
        None
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
