python docs samples
1.0.0
Google Cloud Platform 产品的 Python 示例。
在 Google Cloud 示例页面上查看此存储库中找到的一些示例。
如果您还没有pip
和virtualenv
请安装它们。
克隆此存储库:
git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
获取身份验证凭据。
通过运行以下命令并遵循 oauth2 流程来创建本地凭据(在此处阅读有关该命令的更多信息):
gcloud auth application-default login
详细了解 Google Cloud Platform 身份验证。
将目录更改为示例文件夹之一,例如logging/cloud-client
:
cd logging/cloud-client/
创建一个虚拟环境。示例与 Python 3.6+ 兼容。
python3 -m venv env source env/bin/activate
安装运行示例所需的依赖项。
pip install -r requirements.txt
运行示例:
python snippets.py
欢迎投稿!请参阅贡献指南。