https://github.com/fphammerle/tooncher
automates toontown rewritten's login process
https://github.com/fphammerle/tooncher
automation game launcher login toontown-rewritten
Last synced: about 2 months ago
JSON representation
automates toontown rewritten's login process
- Host: GitHub
- URL: https://github.com/fphammerle/tooncher
- Owner: fphammerle
- License: mit
- Archived: true
- Created: 2016-12-24T13:52:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-07T10:45:55.000Z (6 months ago)
- Last Synced: 2025-05-01T06:03:20.335Z (about 2 months ago)
- Topics: automation, game, launcher, login, toontown-rewritten
- Language: Python
- Homepage: https://pypi.org/project/tooncher
- Size: 712 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# tooncher
automates toontown rewritten's login process[](https://github.com/psf/black)
[](https://pypi.org/project/tooncher/#history)
[](https://pypi.org/project/tooncher/)## Installation
```sh
$ 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`
```sh
$ sudo apt-get install cpulimit
```## Configuration
```yaml
# default path: $HOME/.tooncher
accounts:
- username: toon
password: secret
- username: ceo
password: golf
- username: cfo
password: train
engine_path: '/opt/Toontown Rewritten/TTREngine'
```## Usage
```sh
$ tooncher [username]
````tooncher --help` shows all available options.
### Examples
```sh
$ tooncher toon
$ tooncher ceo
$ tooncher --cpu-limit 70 cfo
```### Python Interface
```python
import pathlib
import toonchertooncher.launch(
engine_path=pathlib.Path('/somewhere/toontown-rewritten/TTREngine'),
username='toon',
password='secret',
)
```