├── .gitignore ├── Dockerfile ├── README.md ├── amemv-video-ripper.py ├── download └── 下载的文件在这里.txt ├── fuck-byted-acrawler.js ├── requirements.txt └── share-url.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | download 4 | videoids.json 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/README.md -------------------------------------------------------------------------------- /amemv-video-ripper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/amemv-video-ripper.py -------------------------------------------------------------------------------- /download/下载的文件在这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuck-byted-acrawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/fuck-byted-acrawler.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/requirements.txt -------------------------------------------------------------------------------- /share-url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsneed/GetDouYin/HEAD/share-url.txt --------------------------------------------------------------------------------