├── .gitignore ├── LICENSE ├── README.md ├── assets └── 1.jpeg ├── browser_manager ├── __init__.py ├── browser_manager.py ├── comment_manager.py ├── file_utils.py ├── logger.py └── page_interactions.py ├── cookie └── .gitkeep ├── get_cookie.py ├── main.py ├── requirements.txt ├── stealth.min.js └── utils ├── __init__.py ├── config.py ├── logger.py └── path_manager.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/assets/1.jpeg -------------------------------------------------------------------------------- /browser_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /browser_manager/browser_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/browser_manager/browser_manager.py -------------------------------------------------------------------------------- /browser_manager/comment_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/browser_manager/comment_manager.py -------------------------------------------------------------------------------- /browser_manager/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/browser_manager/file_utils.py -------------------------------------------------------------------------------- /browser_manager/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/browser_manager/logger.py -------------------------------------------------------------------------------- /browser_manager/page_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/browser_manager/page_interactions.py -------------------------------------------------------------------------------- /cookie/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /get_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/get_cookie.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stealth.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/stealth.min.js -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/path_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withwz/douyin_comment/HEAD/utils/path_manager.py --------------------------------------------------------------------------------