├── .gitignore ├── GetDanMu.py ├── LICENSE ├── README.md ├── __init__.py ├── basic ├── ass.py └── vars.py ├── config.json ├── methods ├── assbase.py └── sameheight.py ├── pfunc ├── cfunc.py ├── dump_to_ass.py └── request_info.py ├── requirements.txt └── sites ├── iqiyi.py ├── mgtv.py ├── qq.py ├── sohu.py └── youku.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/.gitignore -------------------------------------------------------------------------------- /GetDanMu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/GetDanMu.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basic/ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/basic/ass.py -------------------------------------------------------------------------------- /basic/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/basic/vars.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/config.json -------------------------------------------------------------------------------- /methods/assbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/methods/assbase.py -------------------------------------------------------------------------------- /methods/sameheight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/methods/sameheight.py -------------------------------------------------------------------------------- /pfunc/cfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/pfunc/cfunc.py -------------------------------------------------------------------------------- /pfunc/dump_to_ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/pfunc/dump_to_ass.py -------------------------------------------------------------------------------- /pfunc/request_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/pfunc/request_info.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/requirements.txt -------------------------------------------------------------------------------- /sites/iqiyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/sites/iqiyi.py -------------------------------------------------------------------------------- /sites/mgtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/sites/mgtv.py -------------------------------------------------------------------------------- /sites/qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/sites/qq.py -------------------------------------------------------------------------------- /sites/sohu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/sites/sohu.py -------------------------------------------------------------------------------- /sites/youku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhlove/GetDanMu/HEAD/sites/youku.py --------------------------------------------------------------------------------