Files
myAssistant/main.py
2023-09-01 23:47:13 +08:00

8 lines
261 B
Python

from util.global_config import GlobalConfig
http_proxy_config = GlobalConfig()
http_proxy_config.set_globalconfig("http_proxy", '127.0.0.1:8889')
print(http_proxy_config.get_globalconfig("http_proxy"))
print(http_proxy_config.get_globalconfig("https_proxy"))