├── .gitignore ├── README.md ├── Tool-R.py ├── main ├── style.py └── version.py ├── requirements.txt ├── tool ├── base64.py ├── menu.py ├── ports.py └── tts.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | README.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/README.md -------------------------------------------------------------------------------- /Tool-R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/Tool-R.py -------------------------------------------------------------------------------- /main/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/main/style.py -------------------------------------------------------------------------------- /main/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/main/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gTTS 2 | colorama 3 | -------------------------------------------------------------------------------- /tool/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/tool/base64.py -------------------------------------------------------------------------------- /tool/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/tool/menu.py -------------------------------------------------------------------------------- /tool/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/tool/ports.py -------------------------------------------------------------------------------- /tool/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sir-God/Tool-R/HEAD/tool/tts.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.5 2 | 3 | --------------------------------------------------------------------------------