├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example.config.toml ├── make_release.bat ├── requirements.txt ├── run.py ├── tools ├── README.md ├── convernt_old_config.py └── manual_login.py └── utils ├── __init__.py ├── config.py ├── email.py ├── ftqq.py ├── log.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/README.md -------------------------------------------------------------------------------- /example.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/example.config.toml -------------------------------------------------------------------------------- /make_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/make_release.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyxiaoheihe>=1.0.8 2 | requests 3 | toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/run.py -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/convernt_old_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/tools/convernt_old_config.py -------------------------------------------------------------------------------- /tools/manual_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/tools/manual_login.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/email.py -------------------------------------------------------------------------------- /utils/ftqq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/ftqq.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/xhh_auto/HEAD/utils/version.py --------------------------------------------------------------------------------