├── Dockerfile ├── LICENSE ├── LuciferMoringstar_Robot ├── _MoTech_ ├── autofilter │ ├── Index.py │ ├── broadcast.py │ ├── channel.py │ ├── delete.py │ ├── logger.py │ └── totals.py ├── callback.py ├── commands.py ├── database │ ├── _utils.py │ ├── autofilter_db.py │ └── broadcast_db.py └── modules │ ├── _run_.py │ ├── autofilter.py │ ├── example │ ├── file_caption.txt │ ├── photo.txt │ ├── spell_check.txt │ └── start_msg │ ├── inline.py │ ├── logo │ ├── LuciferMoringstar-Deploy-To-Heroku.jpg │ └── LuciferMoringstar-Robot-Logo.jpeg │ └── welcome.py ├── Procfile ├── README.md ├── app.json ├── config.py ├── heroku.yml ├── logging.conf ├── main.py ├── requirements.txt ├── runtime.txt ├── start.sh └── translation.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LICENSE -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/_MoTech_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/_MoTech_ -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/Index.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/broadcast.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/channel.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/delete.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/logger.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/autofilter/totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/autofilter/totals.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/callback.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/commands.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/database/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/database/_utils.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/database/autofilter_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/database/autofilter_db.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/database/broadcast_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/database/broadcast_db.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/_run_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/_run_.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/autofilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/autofilter.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/example/file_caption.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/example/file_caption.txt -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/example/photo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/example/photo.txt -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/example/spell_check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/example/spell_check.txt -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/example/start_msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/example/start_msg -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/inline.py -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/logo/LuciferMoringstar-Deploy-To-Heroku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/logo/LuciferMoringstar-Deploy-To-Heroku.jpg -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/logo/LuciferMoringstar-Robot-Logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/logo/LuciferMoringstar-Robot-Logo.jpeg -------------------------------------------------------------------------------- /LuciferMoringstar_Robot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/LuciferMoringstar_Robot/modules/welcome.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/config.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/heroku.yml -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/logging.conf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.2 2 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/start.sh -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bossstory/LuciferMoringstar-Robot/HEAD/translation.py --------------------------------------------------------------------------------