• 大小: 5KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: Python
  • 标签: python  抖音爬虫  

资源简介

用python爬取用户的抖音视频,根据用的的id,爬取用的所有视频

资源截图

代码片段和文件信息

# 抖音App视频下载脚本
# 作者:Charles
# 公众号:Charles的皮卡丘
import requests
import bs4
import os
import json
import re
import math
import sys
import time
import threading
from contextlib import closing
requests.packages.urllib3.disable_warnings()


# # 重写Thread
# class StoppableThread(threading.Thread):
#  def __init__(self *args **kwargs):
#  super(StoppableThread self).__init__()
#  self._stop_event = threading.Event()
#  def stop(self):
#  self._stop_event.set()
#  def stopped(self):
#  return self._stop_event.is_set()


class Spider():
def __init__(self):
self.headers = {
‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/65.0.3325.146 Safari/537.36‘
}
print(‘[INFO]:Douyin App Video downloader..

评论

共有 条评论