User Interface for the OSCR parser.
The STOCD team provides a companion web application for OSCR located at oscr.stobuilds.com. This allows users to view and download combat log data without OSCR installed, however uploads and more detailed analysis of combat logs requires OSCR or a parser that supports interracting with OSCR's backend such as CLA.
For Windows users we have an installer available on the Releases page.
python3 -m pip install OSCR-UIThe recommended way is using pipx to install from PyPi without --break-system-packages, if you don't already have it, you can install it through pacman.
pacman -Sy python-pipx
pipx install OSCR-UIpython3 -m pip install git+https://github.com/STOCD/OSCR-UI.gitoscrIt is recommended to use a python virtual environment to house this app.
# Clone the repository
git clone https://github.com/STOCD/OSCR-UI.git
cd OSCR-UI
# Set up the virtual environment
virtualenv venv
# Windows
.\venv\Scripts\activate
# Linux
source ./venv/bin/activate
# Install OSCR + Requirements.
python3 -m pip install .