├── .gitignore ├── LICENSE ├── README.md ├── ScreenShot └── 3.0.png ├── pyproject.toml ├── requirements.txt ├── src └── pixivd │ ├── AESCipher.py │ ├── api.py │ ├── i18n.py │ ├── locale │ ├── en_US │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ ├── model.py │ └── pixivd.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/ScreenShot/3.0.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/pixivd/AESCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/AESCipher.py -------------------------------------------------------------------------------- /src/pixivd/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/api.py -------------------------------------------------------------------------------- /src/pixivd/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/i18n.py -------------------------------------------------------------------------------- /src/pixivd/locale/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/locale/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /src/pixivd/locale/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/locale/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/pixivd/locale/zh_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/locale/zh_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /src/pixivd/locale/zh_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/locale/zh_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/pixivd/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/model.py -------------------------------------------------------------------------------- /src/pixivd/pixivd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/src/pixivd/pixivd.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bebound/pixivd/HEAD/uv.lock --------------------------------------------------------------------------------