Skip to content

Emco878/CS2-Stat-Scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS2 Stat Scraper

Disclaimer: This tool is intended for personal and educational use only.

Example Image

forthebadge forthebadge

GitHub Created At GitHub last commit (branch) GitHub release

📌 Description

CS2 Stat Scraper is a tool that processes multiple Steam profiles and retrieves their stats from SteamAPI.

🛠️ Installation

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 in main.py

✨ Features

  • Input up to 10 Steam Profiles
  • Score System
  • Simple and easy-to-use interface

🎥 Demo

Demo

📊 Score System

⚠️ Note: These are examples of the logic. This is not actual code from main.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")

⚠️ Fail-Safes

There are 4 possible error messages:

  • ❗ Invalid Steam Profile Link
    • The link you entered is not in the correct format https://steamcommunity.com/.
  • ❗ Playtime Hidden or Account Private
    • No data exists for that player on Steam.
  • ❗ Max 10 Links Allowed
    • You can only input up to 10 Steam Profile Url's.

📦 Requirements

  • Python 3.12 (Recommended)

👨‍💻 Development

Want to contribute? Great!

  • Fork the repository: click the Fork button 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.

📝 License

MIT