python验证微信好友是否把你删了

转载:http://huainian.blog.51cto.com/2602707/1748360

亲测,可以正常使用,如果你使用的python3.x就安装一个python2.x的解释器,就可以正常运行了,生成二维码,使用手机微信扫码后点击确认授权,就可以在控制台上看到哪些好友把你删了。

#!/usr/bin/env python
# coding=utf-8
from __future__ import print_function

import os
try:
    from urllib import urlencode, quote_plus
except ImportError:
    from urllib.parse import urlencode, quote_plus

try:
    import urllib2 as wdf_urllib
    from cookielib import CookieJar
except ImportError:
    import urllib.request as wdf_urllib
    from http.cookiejar import CookieJar

import re
import time
import xml.dom.minidom
import json
import sys
import math
import subprocess
import ssl
import thread

DEBUG = False

MAX_GROUP_NUM = 35  # 每组人数
INTERFACE_CALLING_INTERVAL = 20  # 接口调用时间间隔, 间隔太短容易出现"操作太频繁", 会被限制操作半小时左右
MAX_PROGRESS_LEN = 50

QRImagePath = os.path.join(os.getcwd(), ‘qrcode.jpg‘)

tip = 0
uuid = ‘‘

base_uri = ‘‘
redirect_uri = ‘‘
push_uri = ‘‘

skey = ‘‘
wxsid = ‘‘
wxuin = ‘‘
pass_ticket = ‘‘
deviceId = ‘e000000000000000‘

BaseRequest = {}

ContactList = []
My = []
SyncKey = []

try:
    xrange
    range = xrange
except:
    # python 3
    pass

def responseState(func, BaseResponse):
    ErrMsg = BaseResponse[‘ErrMsg‘]
    Ret = BaseResponse[‘Ret‘]
    if DEBUG or Ret != 0:
        print(‘func: %s, Ret: %d, ErrMsg: %s‘ % (func, Ret, ErrMsg))

    if Ret != 0:
        return False

    return True

def getRequest(url, data=None):
    try:
        data = data.encode(‘utf-8‘)
    except:
        pass
    finally:
        return wdf_urllib.Request(url=url, data=data)

def getUUID():
    global uuid

    url = ‘https://login.weixin.qq.com/jslogin‘
    params = {
        ‘appid‘: ‘wx782c26e4c19acffb‘,
        ‘fun‘: ‘new‘,
        ‘lang‘: ‘zh_CN‘,
        ‘_‘: int(time.time()),
    }

    request = getRequest(url=url, data=urlencode(params))
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    # window.QRLogin.code = 200; window.QRLogin.uuid = "oZwt_bFfRg==";
    regx = r‘window.QRLogin.code = (\d+); window.QRLogin.uuid = "(\S+?)"‘
    pm = re.search(regx, data)

    code = pm.group(1)
    uuid = pm.group(2)

    if code == ‘200‘:
        return True

    return False

def showQRImage():
    global tip

    url = ‘https://login.weixin.qq.com/qrcode/‘ + uuid
    params = {
        ‘t‘: ‘webwx‘,
        ‘_‘: int(time.time()),
    }

    request = getRequest(url=url, data=urlencode(params))
    response = wdf_urllib.urlopen(request)

    tip = 1

    f = open(QRImagePath, ‘wb‘)
    f.write(response.read())
    f.close()

    if sys.platform.find(‘darwin‘) >= 0:
        subprocess.call([‘open‘, QRImagePath])
    elif sys.platform.find(‘linux‘) >= 0:
        subprocess.call([‘xdg-open‘, QRImagePath])
    else:
        os.startfile(QRImagePath)

    print(‘请使用微信扫描二维码以登录‘)

def waitForLogin():
    global tip, base_uri, redirect_uri, push_uri

    url = ‘https://login.weixin.qq.com/cgi-bin/mmwebwx-bin/login?tip=%s&uuid=%s&_=%s‘ % (
        tip, uuid, int(time.time()))

    request = getRequest(url=url)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    # window.code=500;
    regx = r‘window.code=(\d+);‘
    pm = re.search(regx, data)

    code = pm.group(1)

    if code == ‘201‘:  # 已扫描
        print(‘成功扫描,请在手机上点击确认以登录‘)
        tip = 0
    elif code == ‘200‘:  # 已登录
        print(‘正在登录...‘)
        regx = r‘window.redirect_uri="(\S+?)";‘
        pm = re.search(regx, data)
        redirect_uri = pm.group(1) + ‘&fun=new‘
        base_uri = redirect_uri[:redirect_uri.rfind(‘/‘)]

        # push_uri与base_uri对应关系(排名分先后)(就是这么奇葩..)
        services = [
            (‘wx2.qq.com‘, ‘webpush2.weixin.qq.com‘),
            (‘qq.com‘, ‘webpush.weixin.qq.com‘),
            (‘web1.wechat.com‘, ‘webpush1.wechat.com‘),
            (‘web2.wechat.com‘, ‘webpush2.wechat.com‘),
            (‘wechat.com‘, ‘webpush.wechat.com‘),
            (‘web1.wechatapp.com‘, ‘webpush1.wechatapp.com‘),
        ]
        push_uri = base_uri
        for (searchUrl, pushUrl) in services:
            if base_uri.find(searchUrl) >= 0:
                push_uri = ‘https://%s/cgi-bin/mmwebwx-bin‘ % pushUrl
                break

        # closeQRImage
        if sys.platform.find(‘darwin‘) >= 0:  # for OSX with Preview
            os.system("osascript -e ‘quit app \"Preview\"‘")
    elif code == ‘408‘:  # 超时
        pass
    # elif code == ‘400‘ or code == ‘500‘:

    return code

def login():
    global skey, wxsid, wxuin, pass_ticket, BaseRequest

    request = getRequest(url=redirect_uri)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    doc = xml.dom.minidom.parseString(data)
    root = doc.documentElement

    for node in root.childNodes:
        if node.nodeName == ‘skey‘:
            skey = node.childNodes[0].data
        elif node.nodeName == ‘wxsid‘:
            wxsid = node.childNodes[0].data
        elif node.nodeName == ‘wxuin‘:
            wxuin = node.childNodes[0].data
        elif node.nodeName == ‘pass_ticket‘:
            pass_ticket = node.childNodes[0].data

    # print(‘skey: %s, wxsid: %s, wxuin: %s, pass_ticket: %s‘ % (skey, wxsid,
    # wxuin, pass_ticket))

    if not all((skey, wxsid, wxuin, pass_ticket)):
        return False

    BaseRequest = {
        ‘Uin‘: int(wxuin),
        ‘Sid‘: wxsid,
        ‘Skey‘: skey,
        ‘DeviceID‘: deviceId,
    }

    return True

def webwxinit():

    url = base_uri +         ‘/webwxinit?pass_ticket=%s&skey=%s&r=%s‘ % (
            pass_ticket, skey, int(time.time()))
    params = {
        ‘BaseRequest‘: BaseRequest
    }

    request = getRequest(url=url, data=json.dumps(params))
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read()

    if DEBUG:
        f = open(os.path.join(os.getcwd(), ‘webwxinit.json‘), ‘wb‘)
        f.write(data)
        f.close()

    data = data.decode(‘utf-8‘, ‘replace‘)

    # print(data)

    global ContactList, My, SyncKey
    dic = json.loads(data)
    ContactList = dic[‘ContactList‘]
    My = dic[‘User‘]
    SyncKey = dic[‘SyncKey‘]

    state = responseState(‘webwxinit‘, dic[‘BaseResponse‘])
    return state

def webwxgetcontact():

    url = base_uri +         ‘/webwxgetcontact?pass_ticket=%s&skey=%s&r=%s‘ % (
            pass_ticket, skey, int(time.time()))

    request = getRequest(url=url)
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read()

    if DEBUG:
        f = open(os.path.join(os.getcwd(), ‘webwxgetcontact.json‘), ‘wb‘)
        f.write(data)
        f.close()

    # print(data)
    data = data.decode(‘utf-8‘, ‘replace‘)

    dic = json.loads(data)
    MemberList = dic[‘MemberList‘]

    # 倒序遍历,不然删除的时候出问题..
    SpecialUsers = ["newsapp", "fmessage", "filehelper", "weibo", "qqmail", "tmessage", "qmessage", "qqsync", "floatbottle", "lbsapp", "shakeapp", "medianote", "qqfriend", "readerapp", "blogapp", "facebookapp", "masssendapp",
                    "meishiapp", "feedsapp", "voip", "blogappweixin", "weixin", "brandsessionholder", "weixinreminder", "wxid_novlwrv3lqwv11", "gh_22b87fa7cb3c", "officialaccounts", "notification_messages", "wxitil", "userexperience_alarm"]
    for i in range(len(MemberList) - 1, -1, -1):
        Member = MemberList[i]
        if Member[‘VerifyFlag‘] & 8 != 0:  # 公众号/服务号
            MemberList.remove(Member)
        elif Member[‘UserName‘] in SpecialUsers:  # 特殊账号
            MemberList.remove(Member)
        elif Member[‘UserName‘].find(‘@@‘) != -1:  # 群聊
            MemberList.remove(Member)
        elif Member[‘UserName‘] == My[‘UserName‘]:  # 自己
            MemberList.remove(Member)

    return MemberList

def createChatroom(UserNames):
    MemberList = [{‘UserName‘: UserName} for UserName in UserNames]

    url = base_uri +         ‘/webwxcreatechatroom?pass_ticket=%s&r=%s‘ % (
            pass_ticket, int(time.time()))
    params = {
        ‘BaseRequest‘: BaseRequest,
        ‘MemberCount‘: len(MemberList),
        ‘MemberList‘: MemberList,
        ‘Topic‘: ‘‘,
    }

    request = getRequest(url=url, data=json.dumps(params))
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    dic = json.loads(data)
    ChatRoomName = dic[‘ChatRoomName‘]
    MemberList = dic[‘MemberList‘]
    DeletedList = []
    BlockedList = []
    for Member in MemberList:
        if Member[‘MemberStatus‘] == 4:  # 被对方删除了
            DeletedList.append(Member[‘UserName‘])
        elif Member[‘MemberStatus‘] == 3:  # 被加入黑名单
            BlockedList.append(Member[‘UserName‘])

    state = responseState(‘createChatroom‘, dic[‘BaseResponse‘])

    return ChatRoomName, DeletedList, BlockedList

def deleteMember(ChatRoomName, UserNames):
    url = base_uri +         ‘/webwxupdatechatroom?fun=delmember&pass_ticket=%s‘ % (pass_ticket)
    params = {
        ‘BaseRequest‘: BaseRequest,
        ‘ChatRoomName‘: ChatRoomName,
        ‘DelMemberList‘: ‘,‘.join(UserNames),
    }

    request = getRequest(url=url, data=json.dumps(params))
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    dic = json.loads(data)

    state = responseState(‘deleteMember‘, dic[‘BaseResponse‘])
    return state

def addMember(ChatRoomName, UserNames):
    url = base_uri +         ‘/webwxupdatechatroom?fun=addmember&pass_ticket=%s‘ % (pass_ticket)
    params = {
        ‘BaseRequest‘: BaseRequest,
        ‘ChatRoomName‘: ChatRoomName,
        ‘AddMemberList‘: ‘,‘.join(UserNames),
    }

    request = getRequest(url=url, data=json.dumps(params))
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    dic = json.loads(data)
    MemberList = dic[‘MemberList‘]
    DeletedList = []
    BlockedList = []
    for Member in MemberList:
        if Member[‘MemberStatus‘] == 4:  # 被对方删除了
            DeletedList.append(Member[‘UserName‘])
        elif Member[‘MemberStatus‘] == 3:  # 被加入黑名单
            BlockedList.append(Member[‘UserName‘])

    state = responseState(‘addMember‘, dic[‘BaseResponse‘])

    return DeletedList, BlockedList

def syncKey():
    SyncKeyItems = [‘%s_%s‘ % (item[‘Key‘], item[‘Val‘])
                    for item in SyncKey[‘List‘]]
    SyncKeyStr = ‘|‘.join(SyncKeyItems)
    return SyncKeyStr

def syncCheck():
    url = push_uri + ‘/synccheck?‘
    params = {
        ‘skey‘: BaseRequest[‘Skey‘],
        ‘sid‘: BaseRequest[‘Sid‘],
        ‘uin‘: BaseRequest[‘Uin‘],
        ‘deviceId‘: BaseRequest[‘DeviceID‘],
        ‘synckey‘: syncKey(),
        ‘r‘: int(time.time()),
    }

    request = getRequest(url=url + urlencode(params))
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    # window.synccheck={retcode:"0",selector:"2"}
    regx = r‘window.synccheck={retcode:"(\d+)",selector:"(\d+)"}‘
    pm = re.search(regx, data)

    retcode = pm.group(1)
    selector = pm.group(2)

    return selector

def webwxsync():
    global SyncKey

    url = base_uri + ‘/webwxsync?lang=zh_CN&skey=%s&sid=%s&pass_ticket=%s‘ % (
        BaseRequest[‘Skey‘], BaseRequest[‘Sid‘], quote_plus(pass_ticket))
    params = {
        ‘BaseRequest‘: BaseRequest,
        ‘SyncKey‘: SyncKey,
        ‘rr‘: ~int(time.time()),
    }

    request = getRequest(url=url, data=json.dumps(params))
    request.add_header(‘ContentType‘, ‘application/json; charset=UTF-8‘)
    response = wdf_urllib.urlopen(request)
    data = response.read().decode(‘utf-8‘, ‘replace‘)

    # print(data)

    dic = json.loads(data)
    SyncKey = dic[‘SyncKey‘]

    state = responseState(‘webwxsync‘, dic[‘BaseResponse‘])
    return state

def heartBeatLoop():
    while True:
        selector = syncCheck()
        if selector != ‘0‘:
            webwxsync()
        time.sleep(1)

def main():

    try:
        ssl._create_default_https_context = ssl._create_unverified_context

        opener = wdf_urllib.build_opener(
            wdf_urllib.HTTPCookieProcessor(CookieJar()))
        opener.addheaders = [
            (‘User-agent‘, ‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36‘)]
        wdf_urllib.install_opener(opener)
    except:
        pass

    if not getUUID():
        print(‘获取uuid失败‘)
        return

    print(‘正在获取二维码图片...‘)
    showQRImage()
    time.sleep(1)

    while waitForLogin() != ‘200‘:
        pass

    os.remove(QRImagePath)

    if not login():
        print(‘登录失败‘)
        return

    if not webwxinit():
        print(‘初始化失败‘)
        return

    MemberList = webwxgetcontact()

    print(‘开启心跳线程‘)
    thread.start_new_thread(heartBeatLoop, ())

    MemberCount = len(MemberList)
    print(‘通讯录共%s位好友‘ % MemberCount)

    ChatRoomName = ‘‘
    result = []
    d = {}
    for Member in MemberList:
        d[Member[‘UserName‘]] = (Member[‘NickName‘].encode(
            ‘utf-8‘), Member[‘RemarkName‘].encode(‘utf-8‘))
    print(‘开始查找...‘)
    group_num = int(math.ceil(MemberCount / float(MAX_GROUP_NUM)))
    for i in range(0, group_num):
        UserNames = []
        for j in range(0, MAX_GROUP_NUM):
            if i * MAX_GROUP_NUM + j >= MemberCount:
                break
            Member = MemberList[i * MAX_GROUP_NUM + j]
            UserNames.append(Member[‘UserName‘])

        # 新建群组/添加成员
        if ChatRoomName == ‘‘:
            (ChatRoomName, DeletedList, BlockedList) = createChatroom(
                UserNames)
        else:
            (DeletedList, BlockedList) = addMember(ChatRoomName, UserNames)

        # todo BlockedList 被拉黑列表

        DeletedCount = len(DeletedList)
        if DeletedCount > 0:
            result += DeletedList

        # 删除成员
        deleteMember(ChatRoomName, UserNames)

        # 进度条
        progress = MAX_PROGRESS_LEN * (i + 1) / group_num
        print(‘[‘, ‘#‘ * progress, ‘-‘ * (MAX_PROGRESS_LEN - progress), ‘]‘, end=‘ ‘)
        print(‘新发现你被%d人删除‘ % DeletedCount)
        for i in range(DeletedCount):
            if d[DeletedList[i]][1] != ‘‘:
                print(d[DeletedList[i]][0] + ‘(%s)‘ % d[DeletedList[i]][1])
            else:
                print(d[DeletedList[i]][0])

        if i != group_num - 1:
            print(‘正在继续查找,请耐心等待...‘)
            # 下一次进行接口调用需要等待的时间
            time.sleep(INTERFACE_CALLING_INTERVAL)
    # todo 删除群组

    print(‘\n结果汇总完毕,20s后可重试...‘)
    resultNames = []
    for r in result:
        if d[r][1] != ‘‘:
            resultNames.append(d[r][0] + ‘(%s)‘ % d[r][1])
        else:
            resultNames.append(d[r][0])

    print(‘---------- 被删除的好友列表(共%d人) ----------‘ % len(result))
    # 过滤emoji
    resultNames = map(lambda x: re.sub(r‘<span.+/span>‘, ‘‘, x), resultNames)
    if len(resultNames):
        print(‘\n‘.join(resultNames))
    else:
        print("无")
    print(‘---------------------------------------------‘)

# windows下编码问题修复
# http://blog.csdn.net/heyuxuanzee/article/details/8442718

class UnicodeStreamFilter:

    def __init__(self, target):
        self.target = target
        self.encoding = ‘utf-8‘
        self.errors = ‘replace‘
        self.encode_to = self.target.encoding

    def write(self, s):
        if type(s) == str:
            s = s.decode(‘utf-8‘)
        s = s.encode(self.encode_to, self.errors).decode(self.encode_to)
        self.target.write(s)

if sys.stdout.encoding == ‘cp936‘:
    sys.stdout = UnicodeStreamFilter(sys.stdout)

if __name__ == ‘__main__‘:

    print(‘本程序的查询结果可能会引起一些心理上的不适,请小心使用...‘)
    main()
    print(‘回车键退出...‘)
时间: 2024-10-10 01:20:42

python验证微信好友是否把你删了的相关文章

使用 python 进行微信好友分析

使用 python 进行微信好友分析 1. 使用到的库 ① wxpy:初始化微信机器人 ② openpyxl:保存微信好友数据为Excel表格 ③ pyecharts:生成可视化的地图 ④ wordcloud.matplotlib.jieba:生成词云图 [特别提醒]:pyecharts 库用的是0.5.x版本,而在 pip 中安装的为1.x.x版本,因此需要自行到[官网]中下载. 2. 基本功能 ① 分析微信好友数据 ② 生成词云图 ③ 生成地图展示 3. 代码实现 此处使用类来实现 (1)

Python分析微信好友性别比例和省份城市分布比例

如需转发请注明:小婷儿的博客:https://www.cnblogs.com/xxtalhr/p/10642241.html 一.安装模块 1 pip install itchat 1 pip install wxpy 二.使用 新建xxt.py,拷贝以下代码 1 # -*- coding: utf-8 -*- 2 3 #导入模块 4 from wxpy import * 5 6 ''' 7 微信机器人登录有3种模式, 8 (1)极简模式:robot = Bot() 9 (2)终端模式:robo

Python获取微信好友签名生成词云

''' pip install wxpy pip install matplotlib # 如果下载超时,就换源下载:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib pip install wordcloud pip install Pillow pip install numpy pip install jieba pip install scipy # 处理图像 # pip install -i https

微信好友数据分析及可视化

背景及研究现状 在我国互联网的发展过程中,PC互联网已日趋饱和,移动互联网却呈现井喷式发展.数据显示,截止2013年底,中国手机网民超过5亿,占比达81%.伴随着移动终端价格的下降及wifi的广泛铺设,移动网民呈现爆发趋势. 微信已经成为连接线上与线下.虚拟与现实.消费与产业的重要工具,它提高了O2O类营销用户的转化率.过去开发软件,程序员常要考虑不同开发环境的语言.设备的适配性和成本.现在,开发者可以在一个“类操作底层”去开发应用,打破了过去受限的开发环境. 二.研究意义及目的 随着宽带无线接

利用Python网络爬虫抓取微信好友的签名及其可视化展示

前几天给大家分享了如何利用Python词云和wordart可视化工具对朋友圈数据进行可视化,利用Python网络爬虫抓取微信好友数量以及微信好友的男女比例,以及利用Python网络爬虫抓取微信好友的所在省位和城市分布及其可视化,感兴趣的小伙伴可以点击进去看看详情,内容方面不是很难,即使你是小白,也可以通过代码进行实现抓取.今天,小编继续给大家分享如何利用Python网络爬虫抓取微信好友的签名及其可视化展示,具体的教程如下所示. 1.代码实现还是基于itchat库,关于这个神奇的库,在之前的文章中

【转】Python微信好友头像拼接图

转自:Python微信好友头像拼接图 今天在朋友圈看到有人发了微信好友拼接图,心里满是新奇,看了下评论才知道用Python写的.心里痒痒,立马就安装了下Python. 安装好了之后,看了下大神的代码,基本上能够读得懂(语言都是想通的嘛!),然后就尝试在小黑窗运行了,结果报错了! rawmode = RAWMODE[im.mode] KeyError: 'RGBA' 这种错误看的我是一脸懵逼啊,搜索了半天也没看到什么解决方案,结果就在宁外一篇博客的评论里面发现了解决方法,结果成功运行,还是66的.

我用 Python 爬取微信好友,最后发现一个大秘密

前言 你身处的环境是什么样,你就会成为什么样的人.现在人们日常生活基本上离不开微信,但微信不单单是一个即时通讯软件,微信更像是虚拟的现实世界.你所处的朋友圈是怎么样,慢慢你的思想也会变的怎么样.最近在学习 itchat,然后就写了一个爬虫,爬取了我所有的微信好友的数据.并对其中的一些数据进行分析,发现了一些很有趣的事. 然后通过 itchat.get_friends() 这个函数就可以获取到自己好友的相关信息,这些信息是一个 json 数据返回.然后我们就可以根据这些返回的信息,进行正则匹配抓取

如何利用Python网络爬虫抓取微信好友数量以及微信好友的男女比例

前几天给大家分享了利用Python网络爬虫抓取微信朋友圈的动态(上)和利用Python网络爬虫爬取微信朋友圈动态--附代码(下),并且对抓取到的数据进行了Python词云和wordart可视化,感兴趣的伙伴可以戳这篇文章:利用Python词云和wordart可视化工具对朋友圈数据进行可视化. 今天我们继续focus on微信,不过这次给大家带来的是利用Python网络爬虫抓取微信好友总数量和微信好友男女性别的分布情况.代码实现蛮简单的,具体的教程如下. 相信大家都知道,直接通过网页抓取微信的数据

利用Python网络爬虫抓取微信好友的所在省位和城市分布及其可视化

前几天给大家分享了如何利用Python网络爬虫抓取微信好友数量以及微信好友的男女比例,感兴趣的小伙伴可以点击链接进行查看.今天小编给大家介绍如何利用Python网络爬虫抓取微信好友的省位和城市,并且将其进行可视化,具体的教程如下. 爬取微信好友信息,不得不提及这个itchat库,简直太神奇了,通过它访问微信好友基本信息可谓如鱼得水.下面的代码是获取微信好友的省位信息: 程序运行之后,需要扫描进行授权登录,之后在Pycharm的控制台上会出现如下图的红色提示,这些红色的字体并不是我们通常遇到的Py