├── README.md ├── config ├── bot.json └── bot.sh ├── jbot ├── __init__.py ├── __main__.py ├── bot │ ├── aff.py │ ├── auth.py │ ├── bean.py │ ├── beandata.py │ ├── chart.py │ ├── cmd.py │ ├── cron.py │ ├── editfile.py │ ├── forward.py │ ├── getfile.py │ ├── geturlfile.py │ ├── help.py │ ├── node.py │ ├── qlenv.py │ ├── quickchart.py │ ├── reboot.py │ ├── sendfile.py │ ├── setshort.py │ ├── setting.py │ ├── short.py │ ├── snode.py │ ├── start.py │ ├── up.py │ ├── update.py │ └── utils.py ├── diy │ └── example.py ├── ecosystem.config.js ├── font │ ├── aff.jpg │ └── jet.ttf ├── requirements.txt ├── set.json ├── user │ ├── login.py │ ├── start.py │ └── usermsg.py └── utils.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/README.md -------------------------------------------------------------------------------- /config/bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/config/bot.json -------------------------------------------------------------------------------- /config/bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/config/bot.sh -------------------------------------------------------------------------------- /jbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/__init__.py -------------------------------------------------------------------------------- /jbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/__main__.py -------------------------------------------------------------------------------- /jbot/bot/aff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/aff.py -------------------------------------------------------------------------------- /jbot/bot/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/auth.py -------------------------------------------------------------------------------- /jbot/bot/bean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/bean.py -------------------------------------------------------------------------------- /jbot/bot/beandata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/beandata.py -------------------------------------------------------------------------------- /jbot/bot/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/chart.py -------------------------------------------------------------------------------- /jbot/bot/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/cmd.py -------------------------------------------------------------------------------- /jbot/bot/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/cron.py -------------------------------------------------------------------------------- /jbot/bot/editfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/editfile.py -------------------------------------------------------------------------------- /jbot/bot/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/forward.py -------------------------------------------------------------------------------- /jbot/bot/getfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/getfile.py -------------------------------------------------------------------------------- /jbot/bot/geturlfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/geturlfile.py -------------------------------------------------------------------------------- /jbot/bot/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/help.py -------------------------------------------------------------------------------- /jbot/bot/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/node.py -------------------------------------------------------------------------------- /jbot/bot/qlenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/qlenv.py -------------------------------------------------------------------------------- /jbot/bot/quickchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/quickchart.py -------------------------------------------------------------------------------- /jbot/bot/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/reboot.py -------------------------------------------------------------------------------- /jbot/bot/sendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/sendfile.py -------------------------------------------------------------------------------- /jbot/bot/setshort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/setshort.py -------------------------------------------------------------------------------- /jbot/bot/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/setting.py -------------------------------------------------------------------------------- /jbot/bot/short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/short.py -------------------------------------------------------------------------------- /jbot/bot/snode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/snode.py -------------------------------------------------------------------------------- /jbot/bot/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/start.py -------------------------------------------------------------------------------- /jbot/bot/up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/up.py -------------------------------------------------------------------------------- /jbot/bot/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/update.py -------------------------------------------------------------------------------- /jbot/bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/bot/utils.py -------------------------------------------------------------------------------- /jbot/diy/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/diy/example.py -------------------------------------------------------------------------------- /jbot/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/ecosystem.config.js -------------------------------------------------------------------------------- /jbot/font/aff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/font/aff.jpg -------------------------------------------------------------------------------- /jbot/font/jet.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/font/jet.ttf -------------------------------------------------------------------------------- /jbot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/requirements.txt -------------------------------------------------------------------------------- /jbot/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/set.json -------------------------------------------------------------------------------- /jbot/user/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/user/login.py -------------------------------------------------------------------------------- /jbot/user/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/user/start.py -------------------------------------------------------------------------------- /jbot/user/usermsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/user/usermsg.py -------------------------------------------------------------------------------- /jbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/jbot/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuMaiKaDe/bot/HEAD/requirements.txt --------------------------------------------------------------------------------