A script for scraping user reviews from the gaming platform "Steam".
Steam Review API: Documentation
Install the required libraries:
pip install sqlite3
pip install requests
Run the following script to create the database:
python create_database.py
You 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.py
For help use:
python insert_apps.py --help
Run the following script to fetch user reviews:
python main.py`
For help use:
python main.py --help
Your database will be saved by default in database/database.db
.
...