Change variable in sphinx conf.py as part of build command(作为构建命令的一部分,更改sphinx conf.py中的变量)
本文介绍了作为构建命令的一部分,更改sphinx conf.py中的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有conf.py
的Sphinx项目,其中我使用一个变量来指定我的产品名称,如下所示:
device_name = "ProductName"
rst_epilog = f".. |device_name| replace:: {device_name}"
我希望能够在构建过程中将ProductName的值作为.bat
文件的一部分进行修改,因为我正在构建同一项目两次,分别针对我的两个产品:
sphinx-build -t ce2 -b html -d _build_ce2/doctrees source _build_ce2/html -E
sphinx-build -t ce1 -b html -d _build_ce1/doctrees source _build_ce1/html -E
有没有办法直接在Build命令中修改conf.py
变量device_name
?
推荐答案
我最终使用环境变量解决了此问题。
conf.py
# get environment variables (set as part of make .bat files)
env_device_name = os.getenv("DEVICENAME")
# set device name
if env_device_name != None:
device_name = env_device_name
else:
device_name = "CANedge2" # default device name
make.bat
SET DEVICENAME=Product2
sphinx-build -t ce2 -b html -d _build_ce2/doctrees source _build_ce2/html -E
SET DEVICENAME=Product1
sphinx-build -t ce1 -b html -d _build_ce1/doctrees source _build_ce1/html -E
这篇关于作为构建命令的一部分,更改sphinx conf.py中的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:作为构建命令的一部分,更改sphinx conf.py中的变量
基础教程推荐
猜你喜欢
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01