├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── RenaBot ├── FastTelethon.py ├── Thumbs │ └── ok ├── __main__.py ├── breh.py ├── config.py └── renamer.py ├── Thumbs └── Test ├── app.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/README.md -------------------------------------------------------------------------------- /RenaBot/FastTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/RenaBot/FastTelethon.py -------------------------------------------------------------------------------- /RenaBot/Thumbs/ok: -------------------------------------------------------------------------------- 1 | Bruh 2 | -------------------------------------------------------------------------------- /RenaBot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/RenaBot/__main__.py -------------------------------------------------------------------------------- /RenaBot/breh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/RenaBot/breh.py -------------------------------------------------------------------------------- /RenaBot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/RenaBot/config.py -------------------------------------------------------------------------------- /RenaBot/renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/RenaBot/renamer.py -------------------------------------------------------------------------------- /Thumbs/Test: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfy024/Renamer-Bot/HEAD/app.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | telethon~=1.22.0 2 | --------------------------------------------------------------------------------