dependabot[bot] 1ca5b5841b build(deps-dev): bump pytest from 8.2.0 to 8.2.1 (#174) | преди 5 месеца | |
---|---|---|
.github | преди 11 месеца | |
tests | преди 3 години | |
tooncher | преди 1 година | |
.gitignore | преди 4 години | |
.pylintrc | преди 2 години | |
CHANGELOG.md | преди 1 година | |
LICENSE.txt | преди 4 години | |
Pipfile | преди 1 година | |
Pipfile.lock | преди 5 месеца | |
README.md | преди 4 години | |
mypy.ini | преди 4 години | |
setup.cfg | преди 7 години | |
setup.py | преди 1 година |
automates toontown rewritten's login process
$ pip3 install --user --upgrade tooncher
# or
$ pip3 install --user git+https://github.com/fphammerle/tooncher@master
Optional: Install cpulimit to enable use of parameter --cpu-limit
$ sudo apt-get install cpulimit
# default path: $HOME/.tooncher
accounts:
- username: toon
password: secret
- username: ceo
password: golf
- username: cfo
password: train
engine_path: '/opt/Toontown Rewritten/TTREngine'
$ tooncher [username]
tooncher --help
shows all available options.
$ tooncher toon
$ tooncher ceo
$ tooncher --cpu-limit 70 cfo
import pathlib
import tooncher
tooncher.launch(
engine_path=pathlib.Path('/somewhere/toontown-rewritten/TTREngine'),
username='toon',
password='secret',
)