├── .idea ├── .gitignore ├── OPQBot_Plugins_Python.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── sshConfigs.xml ├── vcs.xml └── webServers.xml ├── Arial.ttf ├── BotCore.py ├── README.md ├── Utils ├── .idea │ ├── Utils.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── Arial.ttf ├── BaiduApi.py ├── SQLiteUtils.py ├── __init__.py ├── backgroud.jpg ├── ciyunUtil.py ├── forcast.jpg ├── simkai.ttf ├── utils.py └── weatherUtil.py ├── forcast.jpg ├── logs └── 2020-10-08_21-55-04_415979.log ├── morning ├── z01.jpg ├── z02.jpg ├── z03.jpg ├── z04.jpg ├── z05.jpg ├── z06.jpg ├── z07.jpg ├── z08.jpg ├── z09.jpg └── z10.jpg ├── sql ├── BotSQL.db └── setu.db ├── sucai ├── Arial.ttf └── forcast.jpg └── wyy ├── wyy01.jpeg ├── wyy02.jpeg ├── wyy03.jpeg ├── wyy04.gif ├── wyy05.gif ├── wyy06.jpg ├── wyy07.jpg ├── wyy08.jpg └── wyy09.jpg /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/OPQBot_Plugins_Python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/OPQBot_Plugins_Python.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sshConfigs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/sshConfigs.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Arial.ttf -------------------------------------------------------------------------------- /BotCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/BotCore.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/README.md -------------------------------------------------------------------------------- /Utils/.idea/Utils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/Utils.iml -------------------------------------------------------------------------------- /Utils/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Utils/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Utils/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/misc.xml -------------------------------------------------------------------------------- /Utils/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/modules.xml -------------------------------------------------------------------------------- /Utils/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/.idea/workspace.xml -------------------------------------------------------------------------------- /Utils/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/Arial.ttf -------------------------------------------------------------------------------- /Utils/BaiduApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/BaiduApi.py -------------------------------------------------------------------------------- /Utils/SQLiteUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/SQLiteUtils.py -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- 1 | from Utils import * 2 | -------------------------------------------------------------------------------- /Utils/backgroud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/backgroud.jpg -------------------------------------------------------------------------------- /Utils/ciyunUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/ciyunUtil.py -------------------------------------------------------------------------------- /Utils/forcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/forcast.jpg -------------------------------------------------------------------------------- /Utils/simkai.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/simkai.ttf -------------------------------------------------------------------------------- /Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/utils.py -------------------------------------------------------------------------------- /Utils/weatherUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/Utils/weatherUtil.py -------------------------------------------------------------------------------- /forcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/forcast.jpg -------------------------------------------------------------------------------- /logs/2020-10-08_21-55-04_415979.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/logs/2020-10-08_21-55-04_415979.log -------------------------------------------------------------------------------- /morning/z01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z01.jpg -------------------------------------------------------------------------------- /morning/z02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z02.jpg -------------------------------------------------------------------------------- /morning/z03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z03.jpg -------------------------------------------------------------------------------- /morning/z04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z04.jpg -------------------------------------------------------------------------------- /morning/z05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z05.jpg -------------------------------------------------------------------------------- /morning/z06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z06.jpg -------------------------------------------------------------------------------- /morning/z07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z07.jpg -------------------------------------------------------------------------------- /morning/z08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z08.jpg -------------------------------------------------------------------------------- /morning/z09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z09.jpg -------------------------------------------------------------------------------- /morning/z10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/morning/z10.jpg -------------------------------------------------------------------------------- /sql/BotSQL.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/sql/BotSQL.db -------------------------------------------------------------------------------- /sql/setu.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/sql/setu.db -------------------------------------------------------------------------------- /sucai/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/sucai/Arial.ttf -------------------------------------------------------------------------------- /sucai/forcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/sucai/forcast.jpg -------------------------------------------------------------------------------- /wyy/wyy01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy01.jpeg -------------------------------------------------------------------------------- /wyy/wyy02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy02.jpeg -------------------------------------------------------------------------------- /wyy/wyy03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy03.jpeg -------------------------------------------------------------------------------- /wyy/wyy04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy04.gif -------------------------------------------------------------------------------- /wyy/wyy05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy05.gif -------------------------------------------------------------------------------- /wyy/wyy06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy06.jpg -------------------------------------------------------------------------------- /wyy/wyy07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy07.jpg -------------------------------------------------------------------------------- /wyy/wyy08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy08.jpg -------------------------------------------------------------------------------- /wyy/wyy09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willyautoman/OPQBot_Plugins_Python/HEAD/wyy/wyy09.jpg --------------------------------------------------------------------------------