Как генерировать требования вашего проекта Python на основе вашего импорта
# How To Generate The Requirements Of Your Python Project Based On Your Imports
# Step1: first install one module-->
pip install pipreqs
#Step2: after installing above module. goto project directory
#where every you code and import files existed then run the below command.
pipreqs --force
#step3: after running above command it will generate requirements.txt file
#it having only module which you are imported corrent code only.
visualscrapper