mirror of
https://github.com/balkian/gists.git
synced 2024-11-01 08:01:44 +00:00
ca0690b024
git-subtree-dir: repos/b8154c52bde270d34718 git-subtree-mainline:59e5d08d0a
git-subtree-split:ae989b5797
9 lines
295 B
Python
9 lines
295 B
Python
from pip.req import parse_requirements
|
|
|
|
# parse_requirements() returns generator of pip.req.InstallRequirement objects
|
|
install_reqs = parse_requirements("requirements.txt")
|
|
|
|
# reqs is a list of requirement
|
|
# e.g. ['django==1.5.1', 'mezzanine==1.4.6']
|
|
reqs = [str(ir.req) for ir in install_reqs]
|