ThePornDatabase / stash_theporndb_scraper

A python script to scrape Stash data from thePornDB
MIT License
68 stars 18 forks source link

ModuleNotFoundError: No module named 'requests' #51

Closed bradydjohnson closed 1 year ago

bradydjohnson commented 1 year ago

When I try to run scrapeScenes.py, it returns

  File "/Users/bradyjohnson/Downloads/stash_theporndb_scraper-master/scrapeScenes.py", line 16, in <module>
    import requests
ModuleNotFoundError: No module named 'requests'
Darklyter commented 1 year ago

You need to install the python requests module, since it looks like it isn't in your path. https://www.geeksforgeeks.org/how-to-install-requests-in-python-for-windows-linux-mac/

bradydjohnson commented 1 year ago

Thank you!