Skip to main content

Listreqs is a simple requirements.txt generator. It's an alternative to pipreqs.

Project description

âš¡Listreqs

Contributions Welcome
GitHub

Listreqs is a simple requirements.txt generator. It's an alternative to pipreqs. Where in Pipreqs, it helps you to Generate requirements.txt file for any project based on imports, but in Listreqs you need to create a virtual environment first, and do your required installations there. And when you need to create your requirements.txt use Listreqs.


Using shell script Using python script

How to use:

Use the only python script:

  1. Create your virtual env,
    - pip install virtualenv
    - mkdir TextGenEnv
    - virtualenv TextGenEnv
    - activate the env:  
      + for cmd -> TextGenEnv\Scripts\activate 
      + (for git bash, source ./Scripts/activate)
      + (for linux terminal, source TextGenEnv/bin/activate)
    
  2. do your required installations there
  3. And when you need to create your requirements.txt do these steps,
    • activate the environment using above command
    • pip list > requirements.txt -> it will put the output of the pip list command inside the requirements.txt
    • python listreqs.py and give the path of the previously created requirements.txt
  4. Boom!!!

Use only shell script:

  1. Create your virtual env,
    - pip install virtualenv
    - mkdir TextGenEnv
    - virtualenv TextGenEnv
    - activate the env:  
      + TextGenEnv\Scripts\activate 
      + (for bash source ./Scripts/activate)
    
  2. do your required installations there
  3. And when you need to create your requirements.txt do these steps,
    • sh listreqs.sh and pass the file name requirements.txt.
    • Boom!!!
    • heads up while using the shell script,
      • Usage:

        1. Can pass in as a positional(command line) argument:
        bash listreqs.sh reqs.txt
        
        1. Can input the file name from the prompt after running the shell script
        bash listreqs.sh
        Enter the requirements file name : reqs.txt
        
        1. Not passing any input will lead to the creation of a default file called requirements.txt.
        bash listreqs.sh
        Enter the requirements file name : 
        

Know more about How to create virtual environment:

Recent Article 3

todos:

  • Create a single shell script to get the job done.
  • Use the python script to create a python library: It should be like a shell command,like doing Listreqs requirements.txt after activating the virtual environment should create a requirements.txt with all the installed package name and verison inside the current directory.
  • Create requirements.txt from a public repo where requirements.txt is not given. Use python poetry for this.
  • Create requirements.txt from base environment, using basic regex

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Listreqs-0.0.5.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

Listreqs-0.0.5-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page