Parser For Pipfiles (get A List Of All Packages Used In A Pipfile)
Is there any parser out there for reading in a Pipfile and returning a list of all packages used in the Pipfile? If not, how would one go about this? I was thinking a regular expre
Solution 1:
first install pipfile pip install pipfile
.
then just use the parser it provides
from pipfile importPipfileparsed= Pipfile.load(filename=pipfile_path)
Post a Comment for "Parser For Pipfiles (get A List Of All Packages Used In A Pipfile)"