├── .gitignore ├── LICENSE ├── README.md ├── RULE_SOURCE ├── biliauth.py ├── biliclear.py ├── biliclear_gui_webui.py ├── checker.py ├── compatible_getpass.py ├── gpt.py ├── release.bat ├── requirements.txt ├── res ├── 2233.gif ├── ChillRoundGothic_Normal.otf ├── haarcascade_frontalface_default.xml ├── icon.ico └── rules.yaml ├── syscmds.py ├── web_canvas.html └── web_canvas.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/README.md -------------------------------------------------------------------------------- /RULE_SOURCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/RULE_SOURCE -------------------------------------------------------------------------------- /biliauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/biliauth.py -------------------------------------------------------------------------------- /biliclear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/biliclear.py -------------------------------------------------------------------------------- /biliclear_gui_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/biliclear_gui_webui.py -------------------------------------------------------------------------------- /checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/checker.py -------------------------------------------------------------------------------- /compatible_getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/compatible_getpass.py -------------------------------------------------------------------------------- /gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/gpt.py -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/release.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/2233.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/res/2233.gif -------------------------------------------------------------------------------- /res/ChillRoundGothic_Normal.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/res/ChillRoundGothic_Normal.otf -------------------------------------------------------------------------------- /res/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/res/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/res/rules.yaml -------------------------------------------------------------------------------- /syscmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/syscmds.py -------------------------------------------------------------------------------- /web_canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/web_canvas.html -------------------------------------------------------------------------------- /web_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qaqFei/BiliClear/HEAD/web_canvas.py --------------------------------------------------------------------------------