22 lines
370 B
Markdown
22 lines
370 B
Markdown
|
|
# development
|
||
|
|
|
||
|
|
This module has only been tested with Python 3.11
|
||
|
|
|
||
|
|
How to run:
|
||
|
|
|
||
|
|
1. create a venv and install the requirements
|
||
|
|
|
||
|
|
```bash
|
||
|
|
python3 -m venv venv
|
||
|
|
source venv/bin/activate
|
||
|
|
pip install -r requirements.txt
|
||
|
|
```
|
||
|
|
|
||
|
|
2. run the main.py file
|
||
|
|
|
||
|
|
```bash
|
||
|
|
source venv/bin/activate
|
||
|
|
python src/main.py
|
||
|
|
```
|
||
|
|
|
||
|
|
Make sure to set the `OSU_API_KEY` env variable to your osu!api v1 key.
|