1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039 |
- # -*- coding: utf-8 -*-
- # @Author: wangkun
- # @Time: 2023/2/17
- import base64
- import json
- import os
- import random
- import shutil
- import string
- import sys
- import time
- from hashlib import md5
- import requests
- import urllib3
- from requests.adapters import HTTPAdapter
- # from selenium.webdriver import DesiredCapabilities
- # from selenium.webdriver.chrome.service import Service
- # from selenium.webdriver.common.by import By
- # from selenium import webdriver
- from lxml import etree
- sys.path.append(os.getcwd())
- from common.db import MysqlHelper
- from common.getuser import getUser
- from common.common import Common
- from common.feishu import Feishu
- from common.publish import Publish
- from common.public import get_user_from_mysql, random_title, get_config_from_mysql
- class Follow:
- # 个人主页视频翻页参数
- offset = 0
- platform = "西瓜视频"
- tag = "西瓜视频爬虫,定向爬虫策略"
- @classmethod
- def get_rule(cls, log_type, crawler):
- try:
- while True:
- rule_sheet = Feishu.get_values_batch(log_type, crawler, "4kxd31")
- if rule_sheet is None:
- Common.logger(log_type, crawler).warning("rule_sheet is None! 10秒后重新获取")
- time.sleep(10)
- continue
- rule_dict = {
- "play_cnt": int(rule_sheet[1][2]),
- "comment_cnt": int(rule_sheet[2][2]),
- "like_cnt": int(rule_sheet[3][2]),
- "duration": int(rule_sheet[4][2]),
- "publish_time": int(rule_sheet[5][2]),
- "video_width": int(rule_sheet[6][2]),
- "video_height": int(rule_sheet[7][2]),
- }
- return rule_dict
- except Exception as e:
- Common.logger(log_type, crawler).error(f"get_rule:{e}\n")
- # 下载规则
- @classmethod
- def download_rule(cls, video_info_dict, rule_dict):
- if video_info_dict['play_cnt'] >= rule_dict['play_cnt']:
- if video_info_dict['comment_cnt'] >= rule_dict['comment_cnt']:
- if video_info_dict['like_cnt'] >= rule_dict['like_cnt']:
- if video_info_dict['duration'] >= rule_dict['duration']:
- if video_info_dict['video_width'] >= rule_dict['video_width'] \
- or video_info_dict['video_height'] >= rule_dict['video_height']:
- return True
- else:
- return False
- else:
- return False
- else:
- return False
- else:
- return False
- else:
- return False
- # 过滤词库
- @classmethod
- def filter_words(cls, log_type, crawler):
- try:
- while True:
- filter_words_sheet = Feishu.get_values_batch(log_type, crawler, 'KGB4Hc')
- if filter_words_sheet is None:
- Common.logger(log_type, crawler).warning(f"filter_words_sheet:{filter_words_sheet} 10秒钟后重试")
- continue
- filter_words_list = []
- for x in filter_words_sheet:
- for y in x:
- if y is None:
- pass
- else:
- filter_words_list.append(y)
- return filter_words_list
- except Exception as e:
- Common.logger(log_type, crawler).error(f'filter_words异常:{e}\n')
- @classmethod
- def get_out_user_info(cls, log_type, crawler, out_uid):
- try:
- headers = {
- 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.41',
- 'referer': f'https://www.ixigua.com/home/{out_uid}',
- 'Cookie': f'ixigua-a-s=1; support_webp=true; support_avif=false; csrf_session_id=a5355d954d3c63ed1ba35faada452b4d; __ac_signature={cls.random_signature()}; MONITOR_WEB_ID=67cb5099-a022-4ec3-bb8e-c4de6ba51dd0; s_v_web_id=verify_lef4i99x_32SosrdH_Qrtk_4LJn_8S7q_fhu16xe3s8ZV; tt_scid=QLJjPuHf6wxVqu6IIq6gHiJXQpVrCwrdhjH2zpm7-E3ZniE1RXBcP6M8b41FJOdo41e1; ttwid=1%7CHHtv2QqpSGuSu8r-zXF1QoWsvjmNi1SJrqOrZzg-UCY%7C1677047013%7C5866a444e5ae10a9df8c11551db75010fb77b657f214ccf84e503fae8d313d09; msToken=PerXJcDdIsZ6zXkGITsftXX4mDaVaW21GuqtzSVdctH46oXXT2GcELIs9f0XW2hunRzP6KVHLZaYElRvNYflLKUXih7lC27XKxs3HjdZiXPK9NQaoKbLfA==; ixigua-a-s=1', }
- url = f"https://www.ixigua.com/home/{out_uid}"
- urllib3.disable_warnings()
- s = requests.session()
- # max_retries=3 重试3次
- s.mount('http://', HTTPAdapter(max_retries=3))
- s.mount('https://', HTTPAdapter(max_retries=3))
- response = s.get(url=url, headers=headers, proxies=Common.tunnel_proxies(), verify=False, timeout=5).text
- html = etree.HTML(response)
- out_follow_str = html.xpath('//div[@class="userDetailV3__header__detail2"]/*[1]/span')[0].text.encode(
- 'raw_unicode_escape').decode()
- out_fans_str = html.xpath('//div[@class="userDetailV3__header__detail2"]/*[2]/span')[0].text.encode(
- 'raw_unicode_escape').decode()
- out_like_str = html.xpath('//div[@class="userDetailV3__header__detail2"]/*[3]/span')[0].text.encode(
- 'raw_unicode_escape').decode()
- out_avatar_url = f"""https:{html.xpath('//span[@class="component-avatar__inner"]//img/@src')[0]}"""
- if "万" in out_follow_str:
- out_follow = int(float(out_follow_str.split("万")[0]) * 10000)
- else:
- out_follow = int(out_follow_str.replace(",", ""))
- if "万" in out_fans_str:
- out_fans = int(float(out_fans_str.split("万")[0]) * 10000)
- else:
- out_fans = int(out_fans_str.replace(",", ""))
- if "万" in out_like_str:
- out_like = int(float(out_like_str.split("万")[0]) * 10000)
- else:
- out_like = int(out_like_str.replace(",", ""))
- out_user_dict = {
- "out_follow": out_follow,
- "out_fans": out_fans,
- "out_like": out_like,
- "out_avatar_url": out_avatar_url,
- }
- # for k, v in out_user_dict.items():
- # print(f"{k}:{v}")
- return out_user_dict
- except Exception as e:
- Common.logger(log_type, crawler).error(f"get_out_user_info:{e}\n")
- # 获取用户信息(字典格式). 注意:部分 user_id 字符类型是 int / str
- @classmethod
- def get_user_list(cls, log_type, crawler, sheetid, env, machine):
- try:
- while True:
- user_sheet = Feishu.get_values_batch(log_type, crawler, sheetid)
- if user_sheet is None:
- Common.logger(log_type, crawler).warning(f"user_sheet:{user_sheet} 10秒钟后重试")
- continue
- our_user_list = []
- for i in range(1, len(user_sheet)):
- # for i in range(428, len(user_sheet)):
- out_uid = user_sheet[i][2]
- user_name = user_sheet[i][3]
- our_uid = user_sheet[i][6]
- our_user_link = user_sheet[i][7]
- if out_uid is None or user_name is None:
- Common.logger(log_type, crawler).info("空行\n")
- else:
- Common.logger(log_type, crawler).info(f"正在更新 {user_name} 用户信息\n")
- if our_uid is None:
- try:
- out_user_info = cls.get_out_user_info(log_type, crawler, out_uid)
- except Exception as e:
- continue
- out_user_dict = {
- "out_uid": out_uid,
- "user_name": user_name,
- "out_avatar_url": out_user_info["out_avatar_url"],
- "out_create_time": '',
- "out_tag": '',
- "out_play_cnt": 0,
- "out_fans": out_user_info["out_fans"],
- "out_follow": out_user_info["out_follow"],
- "out_friend": 0,
- "out_like": out_user_info["out_like"],
- "platform": cls.platform,
- "tag": cls.tag,
- }
- our_user_dict = getUser.create_user(log_type=log_type, crawler=crawler,
- out_user_dict=out_user_dict, env=env, machine=machine)
- our_uid = our_user_dict['our_uid']
- our_user_link = our_user_dict['our_user_link']
- Feishu.update_values(log_type, crawler, sheetid, f'G{i + 1}:H{i + 1}',
- [[our_uid, our_user_link]])
- Common.logger(log_type, crawler).info(f'站内用户信息写入飞书成功!\n')
- our_user_list.append(our_user_dict)
- else:
- our_user_dict = {
- 'out_uid': out_uid,
- 'user_name': user_name,
- 'our_uid': our_uid,
- 'our_user_link': our_user_link,
- }
- our_user_list.append(our_user_dict)
- return our_user_list
- except Exception as e:
- Common.logger(log_type, crawler).error(f'get_user_id_from_feishu异常:{e}\n')
- @classmethod
- def random_signature(cls):
- src_digits = string.digits # string_数字
- src_uppercase = string.ascii_uppercase # string_大写字母
- src_lowercase = string.ascii_lowercase # string_小写字母
- digits_num = random.randint(1, 6)
- uppercase_num = random.randint(1, 26 - digits_num - 1)
- lowercase_num = 26 - (digits_num + uppercase_num)
- password = random.sample(src_digits, digits_num) + random.sample(src_uppercase, uppercase_num) + random.sample(
- src_lowercase, lowercase_num)
- random.shuffle(password)
- new_password = 'AAAAAAAAAA' + ''.join(password)[10:-4] + 'AAAB'
- new_password_start = new_password[0:18]
- new_password_end = new_password[-7:]
- if new_password[18] == '8':
- new_password = new_password_start + 'w' + new_password_end
- elif new_password[18] == '9':
- new_password = new_password_start + 'x' + new_password_end
- elif new_password[18] == '-':
- new_password = new_password_start + 'y' + new_password_end
- elif new_password[18] == '.':
- new_password = new_password_start + 'z' + new_password_end
- else:
- new_password = new_password_start + 'y' + new_password_end
- return new_password
- # @classmethod
- # def get_signature(cls, log_type, crawler, out_uid, machine):
- # try:
- # # 打印请求配置
- # ca = DesiredCapabilities.CHROME
- # ca["goog:loggingPrefs"] = {"performance": "ALL"}
- #
- # # 不打开浏览器运行
- # chrome_options = webdriver.ChromeOptions()
- # chrome_options.add_argument("--headless")
- # chrome_options.add_argument('--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36')
- # chrome_options.add_argument("--no-sandbox")
- #
- # # driver初始化
- # if machine == 'aliyun' or machine == 'aliyun_hk':
- # driver = webdriver.Chrome(desired_capabilities=ca, options=chrome_options)
- # elif machine == 'macpro':
- # driver = webdriver.Chrome(desired_capabilities=ca, options=chrome_options,
- # service=Service('/Users/lieyunye/Downloads/chromedriver_v86/chromedriver'))
- # elif machine == 'macair':
- # driver = webdriver.Chrome(desired_capabilities=ca, options=chrome_options,
- # service=Service('/Users/piaoquan/Downloads/chromedriver'))
- # else:
- # driver = webdriver.Chrome(desired_capabilities=ca, options=chrome_options, service=Service('/Users/wangkun/Downloads/chromedriver/chromedriver_v110/chromedriver'))
- # driver.implicitly_wait(10)
- # driver.get(f'https://www.ixigua.com/home/{out_uid}/')
- # time.sleep(3)
- # data_src = driver.find_elements(By.XPATH, '//img[@class="tt-img BU-MagicImage tt-img-loaded"]')[1].get_attribute("data-src")
- # signature = data_src.split("x-signature=")[-1]
- # return signature
- # except Exception as e:
- # Common.logger(log_type, crawler).error(f'get_signature异常:{e}\n')
- # 获取视频详情
- @classmethod
- def get_video_url(cls, log_type, crawler, gid):
- try:
- url = 'https://www.ixigua.com/api/mixVideo/information?'
- headers = {
- "accept-encoding": "gzip, deflate",
- "accept-language": "zh-CN,zh-Hans;q=0.9",
- "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
- "AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15",
- "referer": "https://www.ixigua.com/7102614741050196520?logTag=0531c88ac04f38ab2c62",
- }
- params = {
- 'mixId': gid,
- 'msToken': 'IlG0wd0Pylyw9ghcYiB2YseUmTwrsrqqhXrbIcsSaTcLTJyVlbYJzk20zw3UO-CfrfC'
- 'NVVIOBNjIl7vfBoxnVUwO9ZyzAI3umSKsT5-pef_RRfQCJwmA',
- 'X-Bogus': 'DFSzswVupYTANCJOSBk0P53WxM-r',
- '_signature': '_02B4Z6wo0000119LvEwAAIDCuktNZ0y5wkdfS7jAALThuOR8D9yWNZ.EmWHKV0WSn6Px'
- 'fPsH9-BldyxVje0f49ryXgmn7Tzk-swEHNb15TiGqa6YF.cX0jW8Eds1TtJOIZyfc9s5emH7gdWN94',
- }
- cookies = {
- 'ixigua-a-s': '1',
- 'msToken': 'IlG0wd0Pylyw9ghcYiB2YseUmTwrsrqqhXrbIcsSaTcLTJyVlbYJzk20zw3UO-CfrfCNVVIOB'
- 'NjIl7vfBoxnVUwO9ZyzAI3umSKsT5-pef_RRfQCJwmA',
- 'ttwid': '1%7C_yXQeHWwLZgCsgHClOwTCdYSOt_MjdOkgnPIkpi-Sr8%7C1661241238%7Cf57d0c5ef3f1d7'
- '6e049fccdca1ac54887c34d1f8731c8e51a49780ff0ceab9f8',
- 'tt_scid': 'QZ4l8KXDG0YAEaMCSbADdcybdKbUfG4BC6S4OBv9lpRS5VyqYLX2bIR8CTeZeGHR9ee3',
- 'MONITOR_WEB_ID': '0a49204a-7af5-4e96-95f0-f4bafb7450ad',
- '__ac_nonce': '06304878000964fdad287',
- '__ac_signature': '_02B4Z6wo00f017Rcr3AAAIDCUVxeW1tOKEu0fKvAAI4cvoYzV-wBhq7B6D8k0no7lb'
- 'FlvYoinmtK6UXjRIYPXnahUlFTvmWVtb77jsMkKAXzAEsLE56m36RlvL7ky.M3Xn52r9t1IEb7IR3ke8',
- 'ttcid': 'e56fabf6e85d4adf9e4d91902496a0e882',
- '_tea_utm_cache_1300': 'undefined',
- 'support_avif': 'false',
- 'support_webp': 'false',
- 'xiguavideopcwebid': '7134967546256016900',
- 'xiguavideopcwebid.sig': 'xxRww5R1VEMJN_dQepHorEu_eAc',
- }
- urllib3.disable_warnings()
- s = requests.session()
- # max_retries=3 重试3次
- s.mount('http://', HTTPAdapter(max_retries=3))
- s.mount('https://', HTTPAdapter(max_retries=3))
- response = s.get(url=url, headers=headers, params=params, cookies=cookies, verify=False,
- proxies=Common.tunnel_proxies(), timeout=5)
- response.close()
- if 'data' not in response.json() or response.json()['data'] == '':
- Common.logger(log_type, crawler).warning('get_video_info: response: {}', response)
- else:
- video_info = response.json()['data']['gidInformation']['packerData']['video']
- video_url_dict = {}
- # video_url
- if 'videoResource' not in video_info:
- video_url_dict["video_url"] = ''
- video_url_dict["audio_url"] = ''
- video_url_dict["video_width"] = 0
- video_url_dict["video_height"] = 0
- elif 'dash_120fps' in video_info['videoResource']:
- if "video_list" in video_info['videoResource']['dash_120fps'] and 'video_4' in \
- video_info['videoResource']['dash_120fps']['video_list']:
- video_url = video_info['videoResource']['dash_120fps']['video_list']['video_4']['backup_url_1']
- audio_url = video_info['videoResource']['dash_120fps']['video_list']['video_4']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash_120fps']['video_list']['video_4']['vwidth']
- video_height = video_info['videoResource']['dash_120fps']['video_list']['video_4']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash_120fps'] and 'video_3' in \
- video_info['videoResource']['dash_120fps']['video_list']:
- video_url = video_info['videoResource']['dash_120fps']['video_list']['video_3']['backup_url_1']
- audio_url = video_info['videoResource']['dash_120fps']['video_list']['video_3']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash_120fps']['video_list']['video_3']['vwidth']
- video_height = video_info['videoResource']['dash_120fps']['video_list']['video_3']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash_120fps'] and 'video_2' in \
- video_info['videoResource']['dash_120fps']['video_list']:
- video_url = video_info['videoResource']['dash_120fps']['video_list']['video_2']['backup_url_1']
- audio_url = video_info['videoResource']['dash_120fps']['video_list']['video_2']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash_120fps']['video_list']['video_2']['vwidth']
- video_height = video_info['videoResource']['dash_120fps']['video_list']['video_2']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash_120fps'] and 'video_1' in \
- video_info['videoResource']['dash_120fps']['video_list']:
- video_url = video_info['videoResource']['dash_120fps']['video_list']['video_1']['backup_url_1']
- audio_url = video_info['videoResource']['dash_120fps']['video_list']['video_1']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash_120fps']['video_list']['video_1']['vwidth']
- video_height = video_info['videoResource']['dash_120fps']['video_list']['video_1']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif 'dynamic_video' in video_info['videoResource']['dash_120fps'] \
- and 'dynamic_video_list' in video_info['videoResource']['dash_120fps']['dynamic_video'] \
- and 'dynamic_audio_list' in video_info['videoResource']['dash_120fps']['dynamic_video'] \
- and len(
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_video_list']) != 0 \
- and len(
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_audio_list']) != 0:
- video_url = \
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_video_list'][-1][
- 'backup_url_1']
- audio_url = \
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_audio_list'][-1][
- 'backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = \
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_video_list'][-1][
- 'vwidth']
- video_height = \
- video_info['videoResource']['dash_120fps']['dynamic_video']['dynamic_video_list'][-1][
- 'vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- else:
- video_url_dict["video_url"] = ''
- video_url_dict["audio_url"] = ''
- video_url_dict["video_width"] = 0
- video_url_dict["video_height"] = 0
- elif 'dash' in video_info['videoResource']:
- if "video_list" in video_info['videoResource']['dash'] and 'video_4' in \
- video_info['videoResource']['dash']['video_list']:
- video_url = video_info['videoResource']['dash']['video_list']['video_4']['backup_url_1']
- audio_url = video_info['videoResource']['dash']['video_list']['video_4']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash']['video_list']['video_4']['vwidth']
- video_height = video_info['videoResource']['dash']['video_list']['video_4']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash'] and 'video_3' in \
- video_info['videoResource']['dash']['video_list']:
- video_url = video_info['videoResource']['dash']['video_list']['video_3']['backup_url_1']
- audio_url = video_info['videoResource']['dash']['video_list']['video_3']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash']['video_list']['video_3']['vwidth']
- video_height = video_info['videoResource']['dash']['video_list']['video_3']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash'] and 'video_2' in \
- video_info['videoResource']['dash']['video_list']:
- video_url = video_info['videoResource']['dash']['video_list']['video_2']['backup_url_1']
- audio_url = video_info['videoResource']['dash']['video_list']['video_2']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash']['video_list']['video_2']['vwidth']
- video_height = video_info['videoResource']['dash']['video_list']['video_2']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['dash'] and 'video_1' in \
- video_info['videoResource']['dash']['video_list']:
- video_url = video_info['videoResource']['dash']['video_list']['video_1']['backup_url_1']
- audio_url = video_info['videoResource']['dash']['video_list']['video_1']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash']['video_list']['video_1']['vwidth']
- video_height = video_info['videoResource']['dash']['video_list']['video_1']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif 'dynamic_video' in video_info['videoResource']['dash'] \
- and 'dynamic_video_list' in video_info['videoResource']['dash']['dynamic_video'] \
- and 'dynamic_audio_list' in video_info['videoResource']['dash']['dynamic_video'] \
- and len(video_info['videoResource']['dash']['dynamic_video']['dynamic_video_list']) != 0 \
- and len(video_info['videoResource']['dash']['dynamic_video']['dynamic_audio_list']) != 0:
- video_url = video_info['videoResource']['dash']['dynamic_video']['dynamic_video_list'][-1][
- 'backup_url_1']
- audio_url = video_info['videoResource']['dash']['dynamic_video']['dynamic_audio_list'][-1][
- 'backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['dash']['dynamic_video']['dynamic_video_list'][-1][
- 'vwidth']
- video_height = video_info['videoResource']['dash']['dynamic_video']['dynamic_video_list'][-1][
- 'vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- else:
- video_url_dict["video_url"] = ''
- video_url_dict["audio_url"] = ''
- video_url_dict["video_width"] = 0
- video_url_dict["video_height"] = 0
- elif 'normal' in video_info['videoResource']:
- if "video_list" in video_info['videoResource']['normal'] and 'video_4' in \
- video_info['videoResource']['normal']['video_list']:
- video_url = video_info['videoResource']['normal']['video_list']['video_4']['backup_url_1']
- audio_url = video_info['videoResource']['normal']['video_list']['video_4']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['normal']['video_list']['video_4']['vwidth']
- video_height = video_info['videoResource']['normal']['video_list']['video_4']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['normal'] and 'video_3' in \
- video_info['videoResource']['normal']['video_list']:
- video_url = video_info['videoResource']['normal']['video_list']['video_3']['backup_url_1']
- audio_url = video_info['videoResource']['normal']['video_list']['video_3']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['normal']['video_list']['video_3']['vwidth']
- video_height = video_info['videoResource']['normal']['video_list']['video_3']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['normal'] and 'video_2' in \
- video_info['videoResource']['normal']['video_list']:
- video_url = video_info['videoResource']['normal']['video_list']['video_2']['backup_url_1']
- audio_url = video_info['videoResource']['normal']['video_list']['video_2']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['normal']['video_list']['video_2']['vwidth']
- video_height = video_info['videoResource']['normal']['video_list']['video_2']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif "video_list" in video_info['videoResource']['normal'] and 'video_1' in \
- video_info['videoResource']['normal']['video_list']:
- video_url = video_info['videoResource']['normal']['video_list']['video_1']['backup_url_1']
- audio_url = video_info['videoResource']['normal']['video_list']['video_1']['backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['normal']['video_list']['video_1']['vwidth']
- video_height = video_info['videoResource']['normal']['video_list']['video_1']['vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- elif 'dynamic_video' in video_info['videoResource']['normal'] \
- and 'dynamic_video_list' in video_info['videoResource']['normal']['dynamic_video'] \
- and 'dynamic_audio_list' in video_info['videoResource']['normal']['dynamic_video'] \
- and len(video_info['videoResource']['normal']['dynamic_video']['dynamic_video_list']) != 0 \
- and len(video_info['videoResource']['normal']['dynamic_video']['dynamic_audio_list']) != 0:
- video_url = video_info['videoResource']['normal']['dynamic_video']['dynamic_video_list'][-1][
- 'backup_url_1']
- audio_url = video_info['videoResource']['normal']['dynamic_video']['dynamic_audio_list'][-1][
- 'backup_url_1']
- if len(video_url) % 3 == 1:
- video_url += '=='
- elif len(video_url) % 3 == 2:
- video_url += '='
- elif len(audio_url) % 3 == 1:
- audio_url += '=='
- elif len(audio_url) % 3 == 2:
- audio_url += '='
- video_url = base64.b64decode(video_url).decode('utf8')
- audio_url = base64.b64decode(audio_url).decode('utf8')
- video_width = video_info['videoResource']['normal']['dynamic_video']['dynamic_video_list'][-1][
- 'vwidth']
- video_height = video_info['videoResource']['normal']['dynamic_video']['dynamic_video_list'][-1][
- 'vheight']
- video_url_dict["video_url"] = video_url
- video_url_dict["audio_url"] = audio_url
- video_url_dict["video_width"] = video_width
- video_url_dict["video_height"] = video_height
- else:
- video_url_dict["video_url"] = ''
- video_url_dict["audio_url"] = ''
- video_url_dict["video_width"] = 0
- video_url_dict["video_height"] = 0
- else:
- video_url_dict["video_url"] = ''
- video_url_dict["audio_url"] = ''
- video_url_dict["video_width"] = 0
- video_url_dict["video_height"] = 0
- return video_url_dict
- except Exception as e:
- Common.logger(log_type, crawler).error(f'get_video_url:{e}\n')
- @classmethod
- def get_videolist(cls, log_type, crawler, strategy, our_uid, out_uid, oss_endpoint, env, machine):
- try:
- signature = cls.random_signature()
- while True:
- url = "https://www.ixigua.com/api/videov2/author/new_video_list?"
- params = {
- 'to_user_id': str(out_uid),
- 'offset': str(cls.offset),
- 'limit': '30',
- 'maxBehotTime': '0',
- 'order': 'new',
- 'isHome': '0',
- # 'msToken': 'G0eRzNkw189a8TLaXjc6nTHVMQwh9XcxVAqTbGKi7iPJdQcLwS3-XRrJ3MZ7QBfqErpxp3EX1WtvWOIcZ3NIgr41hgcd-v64so_RRj3YCRw1UsKW8mIssNLlIMspsg==',
- # 'X-Bogus': 'DFSzswVuEkUANjW9ShFTgR/F6qHt',
- '_signature': signature,
- }
- headers = {
- 'referer': f'https://www.ixigua.com/home/{out_uid}/video/?preActiveKey=hotsoon&list_entrance=userdetail',
- 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.41',
- }
- urllib3.disable_warnings()
- s = requests.session()
- # max_retries=3 重试3次
- s.mount('http://', HTTPAdapter(max_retries=3))
- s.mount('https://', HTTPAdapter(max_retries=3))
- response = s.get(url=url, headers=headers, params=params, proxies=Common.tunnel_proxies(), verify=False,
- timeout=5)
- response.close()
- cls.offset += 30
- if response.status_code != 200:
- Common.logger(log_type, crawler).warning(f"get_videolist_response:{response.text}\n")
- cls.offset = 0
- return
- elif 'data' not in response.text:
- Common.logger(log_type, crawler).warning(f"get_videolist_response:{response.text}\n")
- cls.offset = 0
- return
- elif not response.json()["data"]['videoList']:
- Common.logger(log_type, crawler).warning(f"get_videolist_response:{response.json()}\n")
- cls.offset = 0
- return
- else:
- videoList = response.json()['data']['videoList']
- for i in range(len(videoList)):
- # video_title
- if 'title' not in videoList[i]:
- video_title = 0
- else:
- video_title = videoList[i]['title'].strip().replace('手游', '') \
- .replace('/', '').replace('\/', '').replace('\n', '').replace('"', '').replace("'", '')
- # video_id
- if 'video_id' not in videoList[i]:
- video_id = 0
- else:
- video_id = videoList[i]['video_id']
- # gid
- if 'gid' not in videoList[i]:
- gid = 0
- else:
- gid = videoList[i]['gid']
- # play_cnt
- if 'video_detail_info' not in videoList[i]:
- play_cnt = 0
- elif 'video_watch_count' not in videoList[i]['video_detail_info']:
- play_cnt = 0
- else:
- play_cnt = videoList[i]['video_detail_info']['video_watch_count']
- # comment_cnt
- if 'comment_count' not in videoList[i]:
- comment_cnt = 0
- else:
- comment_cnt = videoList[i]['comment_count']
- # like_cnt
- if 'digg_count' not in videoList[i]:
- like_cnt = 0
- else:
- like_cnt = videoList[i]['digg_count']
- # share_cnt
- share_cnt = 0
- # video_duration
- if 'video_duration' not in videoList[i]:
- video_duration = 0
- else:
- video_duration = int(videoList[i]['video_duration'])
- # send_time
- if 'publish_time' not in videoList[i]:
- publish_time = 0
- else:
- publish_time = videoList[i]['publish_time']
- publish_time_str = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(publish_time))
- # is_top
- if 'is_top' not in videoList[i]:
- is_top = 0
- else:
- is_top = videoList[i]['is_top']
- # user_name
- if 'user_info' not in videoList[i]:
- user_name = 0
- elif 'name' not in videoList[i]['user_info']:
- user_name = 0
- else:
- user_name = videoList[i]['user_info']['name']
- # user_id
- if 'user_info' not in videoList[i]:
- user_id = 0
- elif 'user_id' not in videoList[i]['user_info']:
- user_id = 0
- else:
- user_id = videoList[i]['user_info']['user_id']
- # avatar_url
- if 'user_info' not in videoList[i]:
- avatar_url = 0
- elif 'avatar_url' not in videoList[i]['user_info']:
- avatar_url = 0
- else:
- avatar_url = videoList[i]['user_info']['avatar_url']
- # cover_url
- if 'video_detail_info' not in videoList[i]:
- cover_url = 0
- elif 'detail_video_large_image' not in videoList[i]['video_detail_info']:
- cover_url = 0
- elif 'url' in videoList[i]['video_detail_info']['detail_video_large_image']:
- cover_url = videoList[i]['video_detail_info']['detail_video_large_image']['url']
- else:
- cover_url = videoList[i]['video_detail_info']['detail_video_large_image']['url_list'][0][
- 'url']
- Common.logger(log_type, crawler).info(f'---开始读取规则---')
- rule_dict = cls.get_rule(log_type, crawler)
- Common.logger(log_type, crawler).info(f'---读取规则完成---')
- if gid == 0 or video_id == 0 or cover_url == 0:
- Common.logger(log_type, crawler).info('无效视频\n')
- elif is_top is True and int(time.time()) - int(publish_time) > 3600 * 24 * rule_dict[
- 'publish_time']:
- Common.logger(log_type, crawler).info(
- f'置顶视频,且发布时间:{publish_time_str} 超过{rule_dict["publish_time"]}天\n')
- elif int(time.time()) - int(publish_time) > 3600 * 24 * rule_dict['publish_time']:
- Common.logger(log_type, crawler).info(
- f'发布时间:{publish_time_str}超过{rule_dict["publish_time"]}天\n')
- cls.offset = 0
- return
- else:
- video_url_dict = cls.get_video_url(log_type, crawler, gid)
- video_url = video_url_dict["video_url"]
- audio_url = video_url_dict["audio_url"]
- video_width = video_url_dict["video_width"]
- video_height = video_url_dict["video_height"]
- video_dict = {'video_title': video_title,
- 'video_id': video_id,
- 'gid': gid,
- 'play_cnt': play_cnt,
- 'comment_cnt': comment_cnt,
- 'like_cnt': like_cnt,
- 'share_cnt': share_cnt,
- 'video_width': video_width,
- 'video_height': video_height,
- 'duration': video_duration,
- 'publish_time_stamp': publish_time,
- 'publish_time_str': publish_time_str,
- 'is_top': is_top,
- 'user_name': user_name,
- 'user_id': user_id,
- 'avatar_url': avatar_url,
- 'cover_url': cover_url,
- 'audio_url': audio_url,
- 'video_url': video_url,
- 'session': signature}
- for k, v in video_dict.items():
- Common.logger(log_type, crawler).info(f"{k}:{v}")
- cls.download_publish(log_type=log_type,
- crawler=crawler,
- video_dict=video_dict,
- rule_dict=rule_dict,
- strategy=strategy,
- our_uid=our_uid,
- oss_endpoint=oss_endpoint,
- env=env,
- machine=machine)
- except Exception as e:
- Common.logger(log_type, crawler).error(f"get_videolist:{e}\n")
- @classmethod
- def repeat_video(cls, log_type, crawler, video_id, env, machine):
- sql = f""" select * from crawler_video where platform="{cls.platform}" and out_video_id="{video_id}"; """
- repeat_video = MysqlHelper.get_values(log_type, crawler, sql, env, machine)
- return len(repeat_video)
- # 下载 / 上传
- @classmethod
- def download_publish(cls, log_type, crawler, strategy, video_dict, rule_dict, our_uid, oss_endpoint, env, machine):
- try:
- filter_words = get_config_from_mysql(log_type, crawler, env, text='filter')
- for filter_word in filter_words:
- if filter_word in video_dict['video_title']:
- Common.logger(log_type, crawler).info('标题已中过滤词:{}\n', video_dict['video_title'])
- return
- if cls.download_rule(video_dict, rule_dict) is False:
- Common.logger(log_type, crawler).info('不满足抓取规则\n')
- elif cls.repeat_video(log_type, crawler, video_dict['video_id'], env, machine) != 0:
- Common.logger(log_type, crawler).info('视频已下载\n')
- else:
- # 下载视频
- Common.download_method(log_type=log_type, crawler=crawler, text='xigua_video',
- title=video_dict['video_title'], url=video_dict['video_url'])
- # 下载音频
- Common.download_method(log_type=log_type, crawler=crawler, text='xigua_audio',
- title=video_dict['video_title'], url=video_dict['audio_url'])
- # 合成音视频
- Common.video_compose(log_type=log_type, crawler=crawler,
- video_dir=f"./{crawler}/videos/{video_dict['video_title']}")
- md_title = md5(video_dict['video_title'].encode('utf8')).hexdigest()
- if os.path.getsize(f"./{crawler}/videos/{md_title}/video.mp4") == 0:
- # 删除视频文件夹
- shutil.rmtree(f"./{crawler}/videos/{md_title}")
- Common.logger(log_type, crawler).info("视频size=0,删除成功\n")
- return
- # ffmpeg_dict = Common.ffmpeg(log_type, crawler, f"./{crawler}/videos/{video_dict['video_title']}/video.mp4")
- # if ffmpeg_dict is None or ffmpeg_dict['size'] == 0:
- # Common.logger(log_type, crawler).warning(f"下载的视频无效,已删除\n")
- # # 删除视频文件夹
- # shutil.rmtree(f"./{crawler}/videos/{video_dict['video_title']}")
- # return
- # 下载封面
- Common.download_method(log_type=log_type, crawler=crawler, text='cover',
- title=video_dict['video_title'], url=video_dict['cover_url'])
- # 保存视频信息至txt
- Common.save_video_info(log_type=log_type, crawler=crawler, video_dict=video_dict)
- # 上传视频
- Common.logger(log_type, crawler).info("开始上传视频...")
- our_video_id = Publish.upload_and_publish(log_type=log_type,
- crawler=crawler,
- strategy=strategy,
- our_uid=our_uid,
- env=env,
- oss_endpoint=oss_endpoint)
- if env == 'dev':
- our_video_link = f"https://testadmin.piaoquantv.com/cms/post-detail/{our_video_id}/info"
- else:
- our_video_link = f"https://admin.piaoquantv.com/cms/post-detail/{our_video_id}/info"
- Common.logger(log_type, crawler).info("视频上传完成")
- if our_video_id is None:
- # 删除视频文件夹
- shutil.rmtree(f"./{crawler}/videos/{video_dict['video_title']}")
- return
- # 视频写入飞书
- Feishu.insert_columns(log_type, 'xigua', "e075e9", "ROWS", 1, 2)
- upload_time = int(time.time())
- values = [[time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(upload_time)),
- "定向榜",
- video_dict['video_title'],
- str(video_dict['video_id']),
- our_video_link,
- video_dict['gid'],
- video_dict['play_cnt'],
- video_dict['comment_cnt'],
- video_dict['like_cnt'],
- video_dict['share_cnt'],
- video_dict['duration'],
- str(video_dict['video_width']) + '*' + str(video_dict['video_height']),
- video_dict['publish_time_str'],
- video_dict['user_name'],
- video_dict['user_id'],
- video_dict['avatar_url'],
- video_dict['cover_url'],
- video_dict['video_url'],
- video_dict['audio_url']]]
- time.sleep(1)
- Feishu.update_values(log_type, 'xigua', "e075e9", "F2:Z2", values)
- Common.logger(log_type, crawler).info(f"视频已保存至云文档\n")
- # 视频信息保存数据库
- insert_sql = f""" insert into crawler_video(video_id,
- user_id,
- out_user_id,
- platform,
- strategy,
- out_video_id,
- video_title,
- cover_url,
- video_url,
- duration,
- publish_time,
- play_cnt,
- crawler_rule,
- width,
- height)
- values({our_video_id},
- {our_uid},
- "{video_dict['user_id']}",
- "{cls.platform}",
- "定向爬虫策略",
- "{video_dict['video_id']}",
- "{video_dict['video_title']}",
- "{video_dict['cover_url']}",
- "{video_dict['video_url']}",
- {int(video_dict['duration'])},
- "{video_dict['publish_time_str']}",
- {int(video_dict['play_cnt'])},
- '{json.dumps(rule_dict)}',
- {int(video_dict['video_width'])},
- {int(video_dict['video_height'])}) """
- Common.logger(log_type, crawler).info(f"insert_sql:{insert_sql}")
- MysqlHelper.update_values(log_type, crawler, insert_sql, env, machine)
- Common.logger(log_type, crawler).info('视频信息插入数据库成功!\n')
- except Exception as e:
- Common.logger(log_type, crawler).error(f'download_publish异常:{e}\n')
- @classmethod
- def get_follow_videos(cls, log_type, crawler, strategy, oss_endpoint, env, machine):
- user_list = get_user_from_mysql(log_type, crawler, crawler, env)
- for user in user_list:
- spider_link = user["spider_link"]
- out_uid = spider_link.split('/')[-1]
- user_name = user["nick_name"]
- our_uid = user["media_id"]
- Common.logger(log_type, crawler).info(f"开始抓取 {user_name} 用户主页视频\n")
- cls.get_videolist(log_type=log_type,
- crawler=crawler,
- strategy=strategy,
- our_uid=our_uid,
- out_uid=out_uid,
- oss_endpoint=oss_endpoint,
- env=env,
- machine=machine)
- cls.offset = 0
- if __name__ == '__main__':
- Follow.get_follow_videos('follow', 'xigua', '定向抓取策略', 'inner', 'prod', 'aliyun')
|