.env方式配置环境变量,类似于php环境下.env https://github.com/theskumar/python-dotenv

天问 093c6b4af0 Update 'README.md' 1 year ago
README.md 093c6b4af0 Update 'README.md' 1 year ago

README.md

python-dotenv

Reads the key,value pair from .env and adds them to environment variable.

Usage

安装包,编辑.env配置文件,

pip install python-dotenv
vim .env

Host=xx.com

dotenv -v
dotenv -o

读写.env

from dotenv import dotenv_values

xx=dotenv_values(stream=xx)