Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何解析器用于读取 Pipfile 并返回 Pipfile 中使用的所有包的列表?
如果没有,人们将如何处理这件事?我当时认为正则表达式可以完成这项工作,但我对 Pipfiles 的结构不够熟悉,无法确认是这种情况。
首先安装 pipfile pip install pipfile。
pip install pipfile
然后只需使用它提供的解析器
from pipfile import Pipfile parsed = Pipfile.load(filename=pipfile_path)