What is the use of python-dotenv?(python-dotenv有什么用?)
问题描述
需要一个例子,请解释一下 python-dotenv 的用途.
我对文档有点困惑.
Need an example and please explain me the purpose of python-dotenv.
I am kind of confused with the documentation.
推荐答案
来自 Github 页面:
从 .env 中读取键值对并将它们添加到环境变量中.使用 12 要素原则在开发和生产过程中管理应用设置非常有用.
Reads the key,value pair from .env and adds them to environment variable. It is great of managing app settings during development and in production using 12-factor principles.
假设您已在设置模块旁边创建了 .env 文件.
Assuming you have created the .env file along-side your settings module.
.
├── .env
└── settings.py
将以下代码添加到您的 settings.py 中
Add the following code to your settings.py
# settings.py
import os
from os.path import join, dirname
from dotenv import load_dotenv
dotenv_path = join(dirname(__file__), '.env')
load_dotenv(dotenv_path)
SECRET_KEY = os.environ.get("SECRET_KEY")
DATABASE_PASSWORD = os.environ.get("DATABASE_PASSWORD")
.env 是一个简单的文本文件.每行列出每个环境变量,格式为 KEY="Value",忽略以 # 开头的行.
.env is a simple text file. With each environment variables listed per line, in the format of KEY="Value", lines starting with # is ignored.
SOME_VAR=someval
# I am a comment and that is OK
FOO="BAR"
这篇关于python-dotenv有什么用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:python-dotenv有什么用?


- 我如何透明地重定向一个Python导入? 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01