├── .github └── workflows │ └── main.yml ├── .gitignore ├── AboutUI.py ├── ConfigUI.py ├── LoginUI.py ├── MyselfClose.py ├── README.md ├── Share ├── README.md └── myself.py ├── TrayIcon.py ├── UI ├── about.ui ├── about_ui.py ├── config.ui ├── config_ui.py ├── login.ui ├── login_ui.py ├── main.ui ├── main_ui.py ├── myself_close.ui ├── myself_close_ui.py ├── note.ui ├── note_ui.py ├── save.ui ├── save_ui.py ├── url.ui └── url_ui.py ├── UpdateLog.md ├── event ├── CheckUrl.py ├── ClickOnMainTableWidget.py ├── EndAnime.py ├── History.py ├── InitParameter.py ├── Login.py ├── MenuIconZoom.py ├── PushButtonClickedConnect.py ├── QtBrowser.py ├── SearchAnimate.py └── Version.py ├── hgalytoby └── MyselfAnimeDownloader │ ├── README.md │ ├── ghrs-data │ ├── forks.csv │ ├── snapshots │ │ ├── 2022-09-05_024635_top_paths_snapshot.csv │ │ └── 2022-09-05_024635_top_referrers_snapshot.csv │ ├── stargazers.csv │ └── views_clones_aggregate.csv │ └── latest-report │ ├── report.html │ ├── report.md │ ├── report.pdf │ ├── report_for_pdf.html │ └── resources │ └── github-markdown.css ├── image ├── config.ico ├── exit.ico ├── logo.ico ├── logo.png ├── mac_logo.icns ├── noavatar_small.gif ├── search.png └── update.ico ├── main.py ├── myself_thread.py ├── myself_tools.py ├── requirements.txt └── 指令.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /AboutUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/AboutUI.py -------------------------------------------------------------------------------- /ConfigUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/ConfigUI.py -------------------------------------------------------------------------------- /LoginUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/LoginUI.py -------------------------------------------------------------------------------- /MyselfClose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/MyselfClose.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/README.md -------------------------------------------------------------------------------- /Share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/Share/README.md -------------------------------------------------------------------------------- /Share/myself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/Share/myself.py -------------------------------------------------------------------------------- /TrayIcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/TrayIcon.py -------------------------------------------------------------------------------- /UI/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/about.ui -------------------------------------------------------------------------------- /UI/about_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/about_ui.py -------------------------------------------------------------------------------- /UI/config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/config.ui -------------------------------------------------------------------------------- /UI/config_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/config_ui.py -------------------------------------------------------------------------------- /UI/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/login.ui -------------------------------------------------------------------------------- /UI/login_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/login_ui.py -------------------------------------------------------------------------------- /UI/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/main.ui -------------------------------------------------------------------------------- /UI/main_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/main_ui.py -------------------------------------------------------------------------------- /UI/myself_close.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/myself_close.ui -------------------------------------------------------------------------------- /UI/myself_close_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/myself_close_ui.py -------------------------------------------------------------------------------- /UI/note.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/note.ui -------------------------------------------------------------------------------- /UI/note_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/note_ui.py -------------------------------------------------------------------------------- /UI/save.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/save.ui -------------------------------------------------------------------------------- /UI/save_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/save_ui.py -------------------------------------------------------------------------------- /UI/url.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/url.ui -------------------------------------------------------------------------------- /UI/url_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UI/url_ui.py -------------------------------------------------------------------------------- /UpdateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/UpdateLog.md -------------------------------------------------------------------------------- /event/CheckUrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/CheckUrl.py -------------------------------------------------------------------------------- /event/ClickOnMainTableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/ClickOnMainTableWidget.py -------------------------------------------------------------------------------- /event/EndAnime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/EndAnime.py -------------------------------------------------------------------------------- /event/History.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/History.py -------------------------------------------------------------------------------- /event/InitParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/InitParameter.py -------------------------------------------------------------------------------- /event/Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/Login.py -------------------------------------------------------------------------------- /event/MenuIconZoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/MenuIconZoom.py -------------------------------------------------------------------------------- /event/PushButtonClickedConnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/PushButtonClickedConnect.py -------------------------------------------------------------------------------- /event/QtBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/QtBrowser.py -------------------------------------------------------------------------------- /event/SearchAnimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/SearchAnimate.py -------------------------------------------------------------------------------- /event/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/event/Version.py -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/README.md -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/ghrs-data/forks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/ghrs-data/forks.csv -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/ghrs-data/snapshots/2022-09-05_024635_top_paths_snapshot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/ghrs-data/snapshots/2022-09-05_024635_top_paths_snapshot.csv -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/ghrs-data/snapshots/2022-09-05_024635_top_referrers_snapshot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/ghrs-data/snapshots/2022-09-05_024635_top_referrers_snapshot.csv -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/ghrs-data/stargazers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/ghrs-data/stargazers.csv -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/ghrs-data/views_clones_aggregate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/ghrs-data/views_clones_aggregate.csv -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/latest-report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/latest-report/report.html -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/latest-report/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/latest-report/report.md -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/latest-report/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/latest-report/report.pdf -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/latest-report/report_for_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/latest-report/report_for_pdf.html -------------------------------------------------------------------------------- /hgalytoby/MyselfAnimeDownloader/latest-report/resources/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/hgalytoby/MyselfAnimeDownloader/latest-report/resources/github-markdown.css -------------------------------------------------------------------------------- /image/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/config.ico -------------------------------------------------------------------------------- /image/exit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/exit.ico -------------------------------------------------------------------------------- /image/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/logo.ico -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/mac_logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/mac_logo.icns -------------------------------------------------------------------------------- /image/noavatar_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/noavatar_small.gif -------------------------------------------------------------------------------- /image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/search.png -------------------------------------------------------------------------------- /image/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/image/update.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/main.py -------------------------------------------------------------------------------- /myself_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/myself_thread.py -------------------------------------------------------------------------------- /myself_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/myself_tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /指令.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgalytoby/MyselfAnimeDownloader/HEAD/指令.txt --------------------------------------------------------------------------------