├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── config.py ├── install.sh ├── launch.sh └── telebot ├── __init__.py ├── apihelper.py ├── types.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/config.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/install.sh -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- 1 | while true; do 2 | python ./bot.py 3 | done 4 | -------------------------------------------------------------------------------- /telebot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/telebot/__init__.py -------------------------------------------------------------------------------- /telebot/apihelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/telebot/apihelper.py -------------------------------------------------------------------------------- /telebot/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/telebot/types.py -------------------------------------------------------------------------------- /telebot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicNews/ASMagic/HEAD/telebot/util.py --------------------------------------------------------------------------------