淘先锋技术网

首页 1 2 3 4 5 6 7

Python爬取对方微信是一项强大的技能,可以帮助我们快速获取对方的聊天记录,了解他们的生活及活动情况。

Python爬对方微信

要使用Python爬取对方微信,需要先获取到对方的微信账号,并且安装好相应的Python爬虫库。


# 导入必要的库
import requests
import re

# 设置要爬取的微信账号
wechat_id = 'XXXXX'

# 获取微信公众号文章列表
url = 'http://mp.weixin.qq.com/mp/profile_ext?action=getmsg&__biz={}&f=json&offset=0&count=10&is_ok=1&scene=124&uin=777&key=777&pass_ticket='.format(wechat_id)
response = requests.get(url)
json_data = response.json()
msg_list = json_data.get('general_msg_list', {}).get('list', [])

# 获取公众号文章详情
for msg in msg_list:
    msg_type = msg.get('msg_type', 0)
    if msg_type == 49:
        comm_msg_info = msg.get('comm_msg_info', {})
        content = comm_msg_info.get('content', '')
        # 使用正则表达式提取文章链接
        href_pattern = re.compile('(.*?)', re.S)
        href_list = href_pattern.findall(content)
        for href_item in href_list:
            href_url = href_item[0]
            href_title = href_item[1]
            print(href_url, href_title)

以上是Python爬取微信公众号文章链接的代码。我们可以将微信公众号改为对方的微信,爬取对方的聊天记录等信息。