Skip to content

Files

Latest commit

 

History

History
46 lines (32 loc) · 1.37 KB

README.md

File metadata and controls

46 lines (32 loc) · 1.37 KB

Slay the Spire run data

Repo containing run history data for vmService, and other streamers (with permissions). And the associated code used to generate the reports.

TL;DR: If you are only looking for the run history data, see Data sets.

Otherwise, you can use the code provided to generate similar reports on your own run history files.

Data sets

How to use on your own run history files

Requirements

Instructions

# Create a Python virtual environment (only needed to do this once)
python -m venv venv

# Activate the venv (need to do every time)
source ./venv/bin/activate

# Install dependencies (only need to to this once)
pip install -U pip
pip install poetry
poetry install

# View Program help text (optional)
python analyze/analyze.py  --help

# Example usage
python analyze/analyze.py <path to run history folder> <path to results output folder>