├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── douyin_downloader.py ├── douyin_tool.py ├── img ├── URgood.jpg ├── deleted.jpg ├── downloading.png ├── girl.ico ├── owner.jpg ├── result.png └── timeout.jpg ├── json_demo ├── comment_demo.json ├── follow_list.json ├── main_page.json ├── search_result.json ├── user_info.json └── video_list.json ├── requirement.txt ├── setup.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /douyin_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/douyin_downloader.py -------------------------------------------------------------------------------- /douyin_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/douyin_tool.py -------------------------------------------------------------------------------- /img/URgood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/URgood.jpg -------------------------------------------------------------------------------- /img/deleted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/deleted.jpg -------------------------------------------------------------------------------- /img/downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/downloading.png -------------------------------------------------------------------------------- /img/girl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/girl.ico -------------------------------------------------------------------------------- /img/owner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/owner.jpg -------------------------------------------------------------------------------- /img/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/result.png -------------------------------------------------------------------------------- /img/timeout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/img/timeout.jpg -------------------------------------------------------------------------------- /json_demo/comment_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/comment_demo.json -------------------------------------------------------------------------------- /json_demo/follow_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/follow_list.json -------------------------------------------------------------------------------- /json_demo/main_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/main_page.json -------------------------------------------------------------------------------- /json_demo/search_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/search_result.json -------------------------------------------------------------------------------- /json_demo/user_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/user_info.json -------------------------------------------------------------------------------- /json_demo/video_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/json_demo/video_list.json -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/requirement.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/setup.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeLiangHIT/douyin_downloader/HEAD/util.py --------------------------------------------------------------------------------