Auto generuj wymagania. Pytht TXT

# You can use the following code to generate a requirements.txt file:
> pip install pipreqs
> pipreqs /path/to/project

# other popular way 
> pip freeze

# pip freeze saves all packages in the environment including those that
# you don't use in your current project. (so use wisely)
Darkstar