A script for scraping user reviews from the gaming platform "Steam".
Steam Review API: Documentation
Install the required libraries:
pip install sqlite3
pip install requestsRun the following script to create the database:
python create_database.pyYou can import your data from data/apps.csv or manually insert data into the apps table using a tool like DB Browser for SQLite.
python insert_apps.pyFor help use:
python insert_apps.py --helpRun the following script to fetch user reviews:
python main.py`For help use:
python main.py --helpYour database will be saved by default in database/database.db.
...