Metadata-Version: 2.1
Name: get-metadata
Version: 0.0.2
Summary: Get metadata string. Works on GAE(Google App Engine), GCF(Google Cloud Functions), and the others.
Home-page: https://github.com/hisashimurai/get_metadata
Author: Hisashi Murai
Author-email: xyksp956@yahoo.co.jp
License: MIT
Description: # get_metadata
        Get metadata on GAE, GCF, and others.
        For the detail, see https://cloud.google.com/appengine/docs/standard/java/accessing-instance-metadata
        
        
        Installation;
        pip install get_metadata
        
        OR
        Write "get_metadata" on requirements.txt
        
        ...
        Flask
        get_metadata
        google-cloud-storage
        ...
        
        
        
        How to Use:
        from get_metadata import get_metadata
        key = "project_id"
        pid = get_metadata(key)
        
        
        key accepts a key of key_list(see below) or metadata endpoint.
        
        key_list: dict[str, str] = {
            # The project number assigned to your project.
            "numeric_project_id": "/computeMetadata/v1/project/numeric-project-id",
            # The project ID assigned to your project.
            "project_id": "/computeMetadata/v1/project/project-id",
            # The zone the instance is running in.
            "zone": "/computeMetadata/v1/instance/zone",
            # no description
            "aliases": "/computeMetadata/v1/instance/service-accounts/default/aliases",
            # The default service account email assigned to your project.
            "email": "/computeMetadata/v1/instance/service-accounts/default/email",
            # Lists all the default service accounts for your project.
            "service-accounts": "/computeMetadata/v1/instance/service-accounts/default/",
            # Lists all the supported scopes for the default service accounts.
            "scopes": "/computeMetadata/v1/instance/service-accounts/default/scopes",
            # Returns the auth token that can be used to authenticate your application to other Google Cloud APIs.
            "token": "/computeMetadata/v1/instance/service-accounts/default/token",
        }
Keywords: GAE GCF GCP metadata
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
