├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── StringGenBot ├── bot_users.py ├── callbacks.py ├── db │ ├── O │ ├── __init__.py │ └── users.py ├── eval.py ├── generate.py ├── must_join.py └── start.py ├── app.json ├── config.py ├── main.py ├── requirements.txt ├── runtime.txt └── sample.env /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ 3 | .gitattributes 4 | *.pyc 5 | .env 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/README.md -------------------------------------------------------------------------------- /StringGenBot/bot_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/bot_users.py -------------------------------------------------------------------------------- /StringGenBot/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/callbacks.py -------------------------------------------------------------------------------- /StringGenBot/db/O: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StringGenBot/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/db/__init__.py -------------------------------------------------------------------------------- /StringGenBot/db/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/db/users.py -------------------------------------------------------------------------------- /StringGenBot/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/eval.py -------------------------------------------------------------------------------- /StringGenBot/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/generate.py -------------------------------------------------------------------------------- /StringGenBot/must_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/must_join.py -------------------------------------------------------------------------------- /StringGenBot/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/StringGenBot/start.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.9 2 | -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THE-VIP-BOY-OP/STRING-ROBOT/HEAD/sample.env --------------------------------------------------------------------------------