Most of the code (riot auth) came from https://github.com/GamerNoTitle/Valora so shout out that guy
- Modify/create a file in the same directory as
main.py
calledconfig.yaml
and make it look something like:
accounts:
- user: test
pw: pass
- user: account2
pw: pass3
- Run the following:
python ./main.py
- To open all images automatically in browser:
python ./main.py --open-images
- To pass a separate config file:
python ./main.py -c config2.yaml
- To pass specific accounts to check:
python ./main.py --accounts profile1,profile3
- Exit instead of printing and waiting for user input
python ./main.py --dont-stall
- You can combine different parameters:
python ./main.py -c config2.yaml --open-images --dont-stall