├── .gitignore ├── .travis.yml ├── CDNDrive ├── __init__.py ├── __main__.py ├── drivers │ ├── AliApi.py │ ├── AutoHomeApi.py │ ├── BaijiaApi.py │ ├── BaseApi.py │ ├── BiliApi.py │ ├── CsdnApi.py │ ├── JianApi.py │ ├── NeteApi.py │ ├── OscApi.py │ ├── SogouApi.py │ ├── SohuApi.py │ ├── WeiboApi.py │ └── __init__.py ├── encoders │ ├── GifEncoder.py │ ├── JpgCatEncoder.py │ ├── PngEncoder.py │ └── __init__.py └── util.py ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ci-examples ├── cdrive-batch.py └── gitlab-ci.yml ├── clean.sh ├── icon.ico ├── install.sh ├── publish.sh ├── requirements.txt ├── setup.py └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/.travis.yml -------------------------------------------------------------------------------- /CDNDrive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/__init__.py -------------------------------------------------------------------------------- /CDNDrive/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/__main__.py -------------------------------------------------------------------------------- /CDNDrive/drivers/AliApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/AliApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/AutoHomeApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/AutoHomeApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/BaijiaApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/BaijiaApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/BaseApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/BaseApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/BiliApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/BiliApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/CsdnApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/CsdnApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/JianApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/JianApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/NeteApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/NeteApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/OscApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/OscApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/SogouApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/SogouApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/SohuApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/SohuApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/WeiboApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/WeiboApi.py -------------------------------------------------------------------------------- /CDNDrive/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/drivers/__init__.py -------------------------------------------------------------------------------- /CDNDrive/encoders/GifEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/encoders/GifEncoder.py -------------------------------------------------------------------------------- /CDNDrive/encoders/JpgCatEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/encoders/JpgCatEncoder.py -------------------------------------------------------------------------------- /CDNDrive/encoders/PngEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/encoders/PngEncoder.py -------------------------------------------------------------------------------- /CDNDrive/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/encoders/__init__.py -------------------------------------------------------------------------------- /CDNDrive/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CDNDrive/util.py -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/README.md -------------------------------------------------------------------------------- /ci-examples/cdrive-batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/ci-examples/cdrive-batch.py -------------------------------------------------------------------------------- /ci-examples/gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/ci-examples/gitlab-ci.yml -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/clean.sh -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/icon.ico -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/install.sh -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/publish.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | rsa 3 | pillow 4 | numpy 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/setup.py -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apachecn/CDNDrive/HEAD/update.sh --------------------------------------------------------------------------------