练手小爬虫:爬取抖音

  • 前期准备:

pip3 install douyin

  • 完整代码:
# 导入需要的模块
import douyin
from douyin.structures import Topic, Music

# 指定保存文件夹,folder可指定任意想保存的路径
video_file_handler = douyin.handlers.VideoFileHandler(folder='./videos')
music_file_handler = douyin.handlers.MusicFileHandler(folder='./musics')

# 抖音mongo处理
mongo_handler = douyin.handlers.MongoHandler()

# 下载
downloader = douyin.downloaders.VideoDownloader([mongo_handler, video_file_handler, music_file_handler])

# 遍历循环抖音最热门信息
for result in douyin.hot.trend():
    for item in result.data:
        downloader.download(item.videos(max=100))
  • 哇,公司的破网,好像是限制了抖音,爬不到,回家测试后,发结果

你可能感兴趣的:(爬虫)