apache_conf [configparser]在ini文件中保存密码等

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf [configparser]在ini文件中保存密码等相关的知识,希望对你有一定的参考价值。

# api keys are in config.ini to keep them out of github
import configparser

config = configparser.ConfigParser()
config.read('config.ini')

# print out the sections in the config file
print(f'The config file has the following sections: {config.sections()}')

try:
    air_visual_api_key = config['AirVisual']["api_key"]
except KeyError:
    print("Missing Key AirVisual in the config_air.ini file")

if air_visual_api_key is not None:
    print("Successfully imported airvisual api key")
# see https://docs.python.org/3/library/configparser.html for deets

[twitter]

c_key = secret_secret_something
c_secret = secret_secret_something

a_token = secret_secret_something
a_secret = secret_secret_something

[AirVisual]

api_key = secret_secret_something

以上是关于apache_conf [configparser]在ini文件中保存密码等的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf [configparser]在ini文件中保存密码等

Python configparser模块

Python不归路_configparser模块

python常用模块——configparser

python--configparser

configparser模块