├── .idea ├── .gitignore ├── .name ├── alicebot-starter.iml ├── flowerbot.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── config.toml ├── main.py ├── plugins ├── DuelFrontend.py ├── FlowerCore │ ├── account │ │ ├── __init__.py │ │ ├── bind.py │ │ ├── duel.py │ │ └── user.py │ ├── configs.py │ ├── crawler.py │ └── executer.py ├── authPlugin.py ├── authconfigs.py ├── config.toml ├── data │ └── wordle │ │ ├── wiki-100k.txt │ │ ├── words1.txt │ │ └── words_dictionary.json ├── filemanage.py ├── hello.py ├── storage │ ├── admin.json │ ├── blacklist.json │ ├── groupauth.json │ ├── memory.pkl │ ├── memory.pkl.bak │ └── wordle.json ├── wordle.png └── wordle.py ├── readme.md └── wordle.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | authconfigs.py -------------------------------------------------------------------------------- /.idea/alicebot-starter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/alicebot-starter.iml -------------------------------------------------------------------------------- /.idea/flowerbot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/flowerbot.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/config.toml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/main.py -------------------------------------------------------------------------------- /plugins/DuelFrontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/DuelFrontend.py -------------------------------------------------------------------------------- /plugins/FlowerCore/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/FlowerCore/account/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/account/bind.py -------------------------------------------------------------------------------- /plugins/FlowerCore/account/duel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/account/duel.py -------------------------------------------------------------------------------- /plugins/FlowerCore/account/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/account/user.py -------------------------------------------------------------------------------- /plugins/FlowerCore/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/configs.py -------------------------------------------------------------------------------- /plugins/FlowerCore/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/crawler.py -------------------------------------------------------------------------------- /plugins/FlowerCore/executer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/FlowerCore/executer.py -------------------------------------------------------------------------------- /plugins/authPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/authPlugin.py -------------------------------------------------------------------------------- /plugins/authconfigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/authconfigs.py -------------------------------------------------------------------------------- /plugins/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/config.toml -------------------------------------------------------------------------------- /plugins/data/wordle/wiki-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/data/wordle/wiki-100k.txt -------------------------------------------------------------------------------- /plugins/data/wordle/words1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/data/wordle/words1.txt -------------------------------------------------------------------------------- /plugins/data/wordle/words_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/data/wordle/words_dictionary.json -------------------------------------------------------------------------------- /plugins/filemanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/filemanage.py -------------------------------------------------------------------------------- /plugins/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/hello.py -------------------------------------------------------------------------------- /plugins/storage/admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/admin.json -------------------------------------------------------------------------------- /plugins/storage/blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/blacklist.json -------------------------------------------------------------------------------- /plugins/storage/groupauth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/groupauth.json -------------------------------------------------------------------------------- /plugins/storage/memory.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/memory.pkl -------------------------------------------------------------------------------- /plugins/storage/memory.pkl.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/memory.pkl.bak -------------------------------------------------------------------------------- /plugins/storage/wordle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/storage/wordle.json -------------------------------------------------------------------------------- /plugins/wordle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/wordle.png -------------------------------------------------------------------------------- /plugins/wordle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/plugins/wordle.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/readme.md -------------------------------------------------------------------------------- /wordle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EternalAlexander/FlowerBot/HEAD/wordle.png --------------------------------------------------------------------------------