91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 26.76MB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發布日期: 2023-07-28
  • 語言: Python
  • 標簽:

資源簡介

Python-下載指定用戶的所有抖音視頻以及收藏的視頻無水印

資源截圖

代碼片段和文件信息

#?-*-?coding:?utf-8?-*-
import?sys
import?re
import?random
import?time
from?multiprocessing?import?Queue?Pool
from?PIL?import?Image

from?douyin?import?CrawlerScheduler

if?sys.version_info.major?!=?3:
????print(‘Please?run?under?Python3‘)
????exit(1)
try:
????from?common?import?debug?config?screenshot
????from?common.auto_adb?import?auto_adb
????from?common?import?apiutil
????from?common.compression?import?crop_image
except?Exception?as?ex:
????print(ex)
????print(‘請將腳本放在項目根目錄中運行‘)
????print(‘請檢查項目根目錄中的?common?文件夾是否存在‘)
????exit(1)

VERSION?=?“0.0.1“

#?我申請的?Key,建議自己申請一個,共用容易請求過于頻繁導致接口報錯
#?申請地址?http://ai.qq.com
AppID?=?‘2119053868‘
AppKey?=?‘pYGDDlXzkEIwvPH1‘

DEBUG_SWITCH?=?True
FACE_PATH?=?‘tmp/face/‘

adb?=?auto_adb()
adb.test_device()
config?=?config.open_accordant_config()

#?審美標準
BEAUTY_THRESHOLD?=?85

#?最小年齡
GIRL_MIN_AGE?=?15

#?識別性別:?female?male
GENDER?=?‘female‘

#?進程數
PROCESS?=?5

def?yes_or_no():
????“““
????檢查是否已經為啟動程序做好了準備
????“““
????while?True:
????????yes_or_no?=?str(input(‘請確保手機打開了?ADB?并連接了電腦,‘
??????????????????????????????‘然后打開手機軟件,確定開始?[y/n]:‘))
????????if?yes_or_no?==?‘y‘:
????????????break
????????elif?yes_or_no?==?‘n‘:
????????????print(‘謝謝使用‘)
????????????exit(0)
????????else:
????????????print(‘請重新輸入‘)


def?_random_bias(num):
????“““
????random?bias
????:param?num:
????:return:
????“““
????return?random.randint(-num?num)


def?next_page():
????“““
????翻到下一頁
????:return:
????“““

????time.sleep(1.5)
????cmd?=?‘shell?input?swipe?{x1}?{y1}?{x2}?{y2}?{duration}‘.format(
????????x1=config[‘center_point‘][‘x‘]
????????y1=config[‘center_point‘][‘y‘]?+?config[‘center_point‘][‘ry‘]
????????x2=config[‘center_point‘][‘x‘]
????????y2=config[‘center_point‘][‘y‘]
????????duration=200
????)
????adb.run(cmd)


def?follow_user():
????“““
????關注用戶
????:return:
????“““
????cmd?=?‘shell?input?tap?{x}?{y}‘.format(
????????x=config[‘follow_bottom‘][‘x‘]?+?_random_bias(10)
????????y=config[‘follow_bottom‘][‘y‘]?+?_random_bias(10)
????)
????adb.run(cmd)
????time.sleep(0.5)


def?thumbs_up():
????“““
????點贊
????:return:
????“““
????cmd?=?‘shell?input?tap?{x}?{y}‘.format(
????????x=config[‘star_bottom‘][‘x‘]?+?_random_bias(10)
????????y=config[‘star_bottom‘][‘y‘]?+?_random_bias(10)
????)
????adb.run(cmd)
????time.sleep(0.5)


def?tap(x?y):
????“““
????點擊指定坐標位置

????:param?x?point
????:param?y?point
????:return?
????“““

????cmd?=?‘shell?input?tap?{x}?{y}‘.format(
????????x=x?+?_random_bias(10)
????????y=y?+?_random_bias(10)
????)
????adb.run(cmd)


def?share_video():
????“““點擊分享視頻按鈕
????:return:
????“““

????cmd?=?‘shell?input?tap?{x}?{y}‘.format(
????????x=config[‘share_bottom‘][‘x‘]?+?_random_bias(10)
????????y=config[‘share_bottom‘][‘y‘]?+?_random_bias(10)
????)
????adb.run(cmd)
????time.sleep(0.5)


def?left_swipe():
????“““向左滑動獲取分享視頻鏈接按鈕
????:return:
????“““

????#?多次滑動,確保能夠正確得到按鈕頁面
????for?_?in?range(5):
????????cmd?=?‘shell?input?swipe?{x1}?{y1}?{x2}?{y2}?{duration}‘.format(
????????????x1=config[‘left_swipe_point‘][‘x‘]
??

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\
?????文件?????????180??2019-08-03?03:48??douyin_downloader-master\.gitignore
?????文件?????????388??2019-08-03?03:48??douyin_downloader-master\CHANGELOG.md
?????文件????????1782??2019-08-03?03:48??douyin_downloader-master\DOWNLOAD.md
?????文件????????1065??2019-08-03?03:48??douyin_downloader-master\LICENSE
?????文件????????3230??2019-08-03?03:48??douyin_downloader-master\README.md
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\Tools\
?????文件???????96256??2019-08-03?03:48??douyin_downloader-master\Tools\AdbWinApi.dll
?????文件???????60928??2019-08-03?03:48??douyin_downloader-master\Tools\AdbWinUsbApi.dll
?????文件?????1009664??2019-08-03?03:48??douyin_downloader-master\Tools\adb.exe
?????文件??????196608??2019-08-03?03:48??douyin_downloader-master\Tools\fastboot.exe
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\apks\
?????文件???????10143??2019-08-03?03:48??douyin_downloader-master\apks\clipper.apk
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\common\
?????文件???????????0??2019-08-03?03:48??douyin_downloader-master\common\__init__.py
?????文件????????1869??2019-08-03?03:48??douyin_downloader-master\common\apiutil.py
?????文件????????2452??2019-08-03?03:48??douyin_downloader-master\common\auto_adb.py
?????文件????????1473??2019-08-03?03:48??douyin_downloader-master\common\compression.py
?????文件????????1405??2019-08-03?03:48??douyin_downloader-master\common\config.py
?????文件????????2760??2019-08-03?03:48??douyin_downloader-master\common\debug.py
?????文件????????1929??2019-08-03?03:48??douyin_downloader-master\common\screenshot.py
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\config\
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\config\1920x1080\
?????文件?????????721??2019-08-03?03:48??douyin_downloader-master\config\1920x1080\config.json
?????文件?????????721??2019-08-03?03:48??douyin_downloader-master\config\default.json
?????目錄???????????0??2019-08-03?03:48??douyin_downloader-master\data\
?????文件??????????41??2019-08-03?03:48??douyin_downloader-master\data\README.md
?????文件????????7167??2019-08-03?03:48??douyin_downloader-master\douyin-bot.py
?????文件?????2580122??2019-08-03?03:48??douyin_downloader-master\douyin.png
?????文件???????16303??2019-08-03?03:48??douyin_downloader-master\douyin.py
?????文件????????1941??2019-08-03?03:48??douyin_downloader-master\local_file_adapter.py
............此處省略13個文件信息

評論

共有 條評論