├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── requirements.txt └── tgbot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixing8/yun/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixing8/yun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixing8/yun/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixing8/yun/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot==13.15 2 | -------------------------------------------------------------------------------- /tgbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixing8/yun/HEAD/tgbot.py --------------------------------------------------------------------------------