Counter-Strike 2 Demo Parsing, Analytics and Visualization in Python
- 💻 Parse Counter-Strike demos in Python in one line.
- 💀 Access kill, damage, grenade, bomb, player trajectory data, and more
- 💹 Calculate common statistics, such as ADR, KAST, Rating and win probability
- 🎞️ Visualize Counter-Strike data, including animated round gifs
- 🔈 Active Discord community
To install Awpy (it is currently in beta), you can run
pip install --pre awpy
Note
awpy
requires Python >= 3.10. To update the library, just run pip install --upgrade awpy
. To check your current version, run pip freeze | grep awpy
.
Tip
Don't worry if you get stuck, visit us our Discord for help.
Using Awpy is easy. Just find a demo you want to analyze and use the example below to get started. For example, take NaVi vs Virtus.pro.
from awpy import Demo
# Simply call `Demo(path="...")` to parse a demo
dem = Demo("natus-vincere-vs-virtus-pro-m1-overpass.dem")
# Access various dictionaries & dataframes
dem.header
dem.rounds
dem.grenades
dem.kills
dem.damages
dem.bomb
dem.smokes
dem.infernos
dem.weapon_fires
dem.ticks
Tip
Want to learn more about the parser output? Visit the parser primer in our documentation!
Counter-Strike demos can be a bit troublesome. It is likely you'll see increased error rates in POV demos. To help us address parsing issues, please open a bug report in our Github issues as well as in our our Discord. We're committed to increasing parsing coverage rates and appreciate any errors you may find.
Take a look at the following Jupyter notebooks provided in our examples/
directory. These will help you get started parsing and analyzing Counter-Strike data.
If you use the parser for any public analysis, we kindly ask you to link to the Awpy repository, so that others may know how you parsed, analyzed or visualized your data. If you have a paper or project that uses the parser, please let us know in Discord so we can add it to our growing list!
We welcome any contributions from the community, no matter the skill-level. You can visit our issue page to see what issues are still open, the Awpy project for a different view of project priorities, or you can message us on Discord. Some examples of where you can make a difference are in documentation, quality assurance, developing new features, or creating unique content with Awpy. You can see more examples of community content here. If you are interested in contributing to Awpy, learn more here.
Tip
We are happy to walk through those that want to contribute, no matter your skill level. There are a diverse set of ways one can contribute to Awpy. We welcome first-time contributors.
Awpy is structured as follows:
.
├── awpy
│ ├── data # Data directory (PLANNED)
│ ├── stats # Stats and analytics module
│ └── visualization # Visualization module (PLANNED)
│ converters.py # Utilities for converting to readable strings
│ demo.py # Defines the base Demo class
│ parsers.py # Defines simple parsers for different events
│ utils.py # Utilities used across the project
├── doc # Documentation files
├── examples # Jupyter Notebooks showing example code
└── tests # Tests
The name "Awpy" is due to Nick Wan -- we recommend his stream for sports data analytics enthusiasts.
Awpy was first built on the amazing work done in the demoinfocs-golang Golang library. We now rely on demoparser2 for parsing, which is another fantastic parsing project, built specifically for Python.