Disclaimer: This tool is intended for personal and educational use only.
CS2 Stat Scraper is a tool that processes multiple Steam profiles and retrieves their stats from SteamAPI.
Download the latest release version of CS2 Stat Scraper.exe
⚠️ Note: This app is now signed however SmartScreen may warn you as my reputation is low. The program is safe. The source code, can be found inmain.py
- Input up to 10 Steam Profiles
- Score System
- Simple and easy-to-use interface
⚠️ Note: These are examples of the logic. This is not actual code frommain.py.
The scoring system is simple: Average High Stats are marked as 🟡 Yellow, while Suspiciously High Stats are marked as 🔴 Red.
🔵 Blue = Average
🟡 Yellow = Higher than average
🔴 Red = Very unlikely to be legit
The score is out of 12
A score between 0-8 will return a 🔵 Average Account.
A score between 9–10 will return a 🟡 Suspiciously High Account.
A score between 11–12 will return a 🔴 Likely Cheating Account.
The score is out of 12
KD
if kd >= 2.0:
print("🔴 Not Legit")
score += 2
elif kd >= 1.6:
print("🟡 Higher than Average")
score += 1
else:
print("🔵 Average")There are 4 possible error messages:
- ❗ Invalid Steam Profile Link
- The link you entered is not in the correct format
https://steamcommunity.com/.
- The link you entered is not in the correct format
- ❗ Playtime Hidden or Account Private
- No data exists for that player on
Steam.
- No data exists for that player on
- ❗ Max 10 Links Allowed
- You can only input up to 10
Steam Profile Url's.
- You can only input up to 10
- Python 3.12 (Recommended)
Want to contribute? Great!
- Fork the repository: click the
Forkbutton at the top-right of the page - Your fork will be at:
https://github.com/your_username/CS2-Stat-Scraper
Clone the repo using:
git clone https://github.com/your_username/CS2-Stat-Scraper.git🔗 For more help: Contributing To a Project.