吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2784|回复: 19
收起左侧

[Python 原创] 抖音点赞和公屏检测回复,不完整程序

  [复制链接]
wawx 发表于 2023-10-25 15:29
本帖最后由 苏紫方璇 于 2023-10-29 21:39 编辑

[Python] 纯文本查看 复制代码
from selenium import webdriver
import time
import pickle
edge = webdriver.Edge()
edge.maximize_window()
# 设置最大等待时长为 10秒
edge.implicitly_wait(10)
edge.get('https://www.douyin.com/')
time.sleep(1)
input("登入抖音账号后,请输入任意键继续...")
time.sleep(0.3)
with open("ph.pickle",'wb') as file:
    pickle.dump(edge.get_cookies(), file)
edge.delete_all_cookies()
time.sleep(1)
edge.quit()
使用以上代码保存cookie


使用以下代码工作
from selenium import webdriver
import time
import pickle
import random
import pyautogui
import threading
from selenium.webdriver.common.by import By


def main():
    # 新创建线程
    s1 = threading.Thread(target=job1, name="T1")
    s2 = threading.Thread(target=job2, name="T1")
    # 启动新线程
    s1.start()
    s2.start()


def job1():
    # 进入直播间先点赞300次
    for i in range(300):
        a = random.randrange(300, 550)
        b = random.randrange(400, 550)
        pyautogui.click(a, b)
        time.sleep(0.2)

    arr0 = ([["大家戳戳屏幕点点关注,点点赞,主播需要你们的支持哦"], ["亮一个抖币\
    可以加群哦,群里面有高清手稿分享"], ["主播现在写的字是形楷,喜欢的可以加群跟着练哦"], ["来吧,大家把赞点起来!"]])
    for j in range(100):
        wartime = random.randrange(120, 180)
        time.sleep(wartime)
        while True:
            textElement = edge.find_element(By.XPATH,
                                            '//textarea[@class="webcast-chatroom___textarea"]')
            textElement.clear()
            textElement.send_keys(random.choice(arr0[random.randrange(0, 3)]))  # 输入新字符串
            time.sleep(0.5)
            sendElement = edge.find_element(By.XPATH,
                                            '//button[@class="webcast-chatroom___send-btn"][@type="button"]')
            time.sleep(1)
            sendElement.click()
            break
         
def job2():
    # 第二线程,关键字检测消息回复
    # 提取公屏的最后一个发言,和数组比对,如果能匹配就发送对应的消息
    # 直到浏览器退出
    arrT1 = ([["9390"], ["80g木浆纸"], ["主播使用的垫子在橱窗有哦"]])
    var = 1
    while var == 1:
        WebText = edge.find_elements(By.XPATH, '//a[contains(text())]')  # 可能这里还有点小问题,查找的文本应该不准确,或者差参数
        match WebText:
            case "笔":
                while True:
                    textElement = edge.find_element(By.XPATH,
                                                    '//textarea[@class="webcast-chatroom___textarea"]')
                    textElement.clear()
                    textElement.send_keys(random.choice(arrT1[0]))  # 输入新字符串
                    time.sleep(0.5)
                    sendElement = edge.find_element(By.XPATH,
                                                    '//button[@class="webcast-chatroom___send-btn"][@type="button"]')
                    time.sleep(1)
                    sendElement.click()
                    break
            case "纸":
                while True:
                    textElement = edge.find_element(By.XPATH,
                                                    '//textarea[@class="webcast-chatroom___textarea"]')
                    textElement.clear()
                    textElement.send_keys(random.choice(arrT1[1]))  # 输入新字符串
                    time.sleep(0.5)
                    sendElement = edge.find_element(By.XPATH,
                                                    '//button[@class="webcast-chatroom___send-btn"][@type="button"]')
                    time.sleep(1)
                    sendElement.click()
                    break
            case "垫":
                while True:
                    textElement = edge.find_element(By.XPATH,
                                                    '//textarea[@class="webcast-chatroom___textarea"]')
                    textElement.clear()
                    textElement.send_keys(random.choice(arrT1[2]))  # 输入新字符串
                    time.sleep(0.5)
                    sendElement = edge.find_element(By.XPATH,
                                                    '//button[@class="webcast-chatroom___send-btn"][@type="button"]')
                    time.sleep(1)
                    sendElement.click()
                    break


if __name__ == '__main__':
    with open("ph.pickle", 'rb') as file:
        cookiesList = pickle.load(file)
    edge = webdriver.Edge()
    edge.maximize_window()
    edge.get('https://www.douyin.com/')
    for cookie in cookiesList:
        edge.add_cookie(cookie)
    # 自己修改本行满足自己的直播间
    edge.get('https://live.douyin.com/143865879903')
    time.sleep(10)
    main()

免费评分

参与人数 3吾爱币 +8 热心值 +3 收起 理由
XMQ + 1 我很赞同!
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
wanfon + 1 + 1 热心回复!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

苏紫方璇 发表于 2023-10-29 21:40
推荐使用这个帖子的方法插入代码
【公告】发帖代码插入以及添加链接教程(有福利)
https://www.52pojie.cn/thread-713042-1-1.html
(出处: 吾爱破解论坛)
微个宝马 发表于 2023-10-25 18:57
afti 发表于 2023-10-25 19:30
无法无天2020 发表于 2023-10-25 19:31
自动回复????
微个宝马 发表于 2023-10-25 20:22
afti 发表于 2023-10-25 19:30
这是方便主播的

好吧 还是没有懂呀
yuaolu1 发表于 2023-10-25 20:34
这是自动点的吗
艺达 发表于 2023-10-26 08:25
没啥实用性。现在点赞有限制
鹏优CX-5 发表于 2023-10-26 09:17
写了个什么呢
wanfon 发表于 2023-10-26 12:07
公屏检测是过滤敏感词语吗
BI3NWQ 发表于 2023-10-26 12:07
各位主播门,快快收藏
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 20:48

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表