Initial implementations

Okay not really, but I have lost the original git repo so this is where we're at qq
This commit is contained in:
2023-09-08 23:20:22 -07:00
parent 8936cccd29
commit 1ff0631915
2 changed files with 176 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
token-current:
zip wow-token-current.zip wow-token-current.py
token-historical:
zip wow-token-historical.zip wow-token-historical.py
token-updater:
cd venv/lib/python3.9/site-packages && zip -r ../../../../wow-token-updater.zip .
zip -g wow-token-updater.zip wow-token-updater.py
clean:
rm -v wow-token-current.zip wow-token-historical.zip wow-token-updater.zip
all: token-current token-historical token-updater