dependabot[bot] 1ca5b5841b build(deps-dev): bump pytest from 8.2.0 to 8.2.1 (#174) | 5 ay önce | |
---|---|---|
.github | 11 ay önce | |
tests | 3 yıl önce | |
tooncher | 1 yıl önce | |
.gitignore | 4 yıl önce | |
.pylintrc | 2 yıl önce | |
CHANGELOG.md | 1 yıl önce | |
LICENSE.txt | 4 yıl önce | |
Pipfile | 1 yıl önce | |
Pipfile.lock | 5 ay önce | |
README.md | 4 yıl önce | |
mypy.ini | 4 yıl önce | |
setup.cfg | 7 yıl önce | |
setup.py | 1 yıl önce |
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',
)