Get all modules/packages used by a python project

前端 未结 2 1515
广开言路
广开言路 2020-12-04 12:52

I have a python GUI application. And now I need to know what all libraries the application links to. So that I can check the license compatibility of all the libraries.

相关标签:
2条回答
  • 2020-12-04 13:09

    You can give a try to the library https://github.com/bndr/pipreqs found following the guide https://www.fullstackpython.com/application-dependencies.html


    The library pipreqs is pip installable and automatically generates the file requirements.txt.

    It contains all the imports libraries with versions you are using in the virtualenv or in the python correctly installed. Just type:

    pip install pipreqs
    pipreqs /home/project/location
    

    It will print:

    INFO: Successfully saved requirements file in /home/project/location/requirements.txt
    

    In addition it is compatible with the pip install -r command: if you need to create a venv of your project, or update your current python version with compatible libraries, you just need to type:

    pip install -r requirements.txt
    

    I had the same problem and this library solved it for me. Not sure if it works for multiple layers of dependencies i.e. in case you have nested level of dependent libraries.

    -- Edit 1:

    If looking for a more sophisticated version manager, please consider as well pyvenv https://github.com/pyenv/pyenv. It blends virtualenv and pipreqs in the same tool, with some improvements over the version specification of pipreqs.

    -- Edit 2:

    If you want to split your library dependencies into different files (e.g. base, test, dev, docs) and have a way of managing the dependency tree, please take a look at pip-compile-multi.

    0 讨论(0)
  • 2020-12-04 13:13

    Install yolk with:

    pip install yolk
    

    Call the following to get the list of eggs in your environment:

    yolk -l
    

    Alternatively, you can use snakefood for graphing your dependencies, as answered in this question.

    You could try going into the site-packages folder where the unpacked eggs are stored, and running this:

    ls -l */LICENSE*
    

    That will give you a list of the licence files for each project (if they're stored in the root of the egg, which they usually are).

    0 讨论(0)
提交回复
热议问题