Skip to content

Latest commit

 

History

History
59 lines (36 loc) · 881 Bytes

README.md

File metadata and controls

59 lines (36 loc) · 881 Bytes

Steam Review Scraper

A script for scraping user reviews from the gaming platform "Steam".

Steam Review API: Documentation

Setup

Install the required libraries:

pip install sqlite3
pip install requests

Create Database

Run the following script to create the database:

python create_database.py

Insert Games

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

Fetch Steam User Reviews

Run the following script to fetch user reviews:

python main.py`

For help use:

python main.py --help

Database

Your database will be saved by default in database/database.db.

Questions

...