php中文网

Read cloud specific configuration from configuration files

php中文网

特定于云提供商的配置可以通过将云提供商名称设置为一个部分来在配置文件中分隔。

定义配置文件

在 src 包中创建一个配置文件 - config.ini 并定义类似于下面的云提供商特定配置。

[aws]
bucket_name: test-aws-bucket

[gcp]
bucket_name: test-gcp-bucket

阅读代码中的配置

从环境变量中读取云提供商。

cloud_provider = os.environ.get('cloud_provider')

在python中声明一个配置解析器并读取配置文件

config = configparser.ConfigParser()
config_path = os.path.join(os.path.dirname(__file__), 'config.ini')
config.read(config_path)
bucket_name = config.get(cloud_provider,'bucket_name')

通过这种方式,我们可以在配置文件中分离云提供商的特定配置。

如有任何建议/反馈,请随时发表评论。

以上就是Read cloud specific configuration from configuration files的详细内容,更多请关注php中文网其它相关文章!