Home Backend Development Python Tutorial Python checks whether WeChat friends have deleted themselves

Python checks whether WeChat friends have deleted themselves

Jan 18, 2017 pm 03:52 PM

Python Programming Language

Python is an object-oriented, interpreted computer programming language invented by Guido van Rossum at the end of 1989. The first public release was released in 1991. Python syntax is concise and clear, with rich and powerful class libraries. It is often nicknamed the glue language, which can easily connect various modules made in other languages ​​​​(especially C/C++) together.


This article mainly introduces python to check whether WeChat friends have deleted themselves. It has certain reference value. Interested friends can refer to it

The example in this article shares the specific code for deleting WeChat friends in python for your reference. The specific content is as follows

#weixin.py
#coding:utf-8
# !/usr/bin/env python
# coding=utf-8

#通过该程序可以发现被删除的好友

import os
import urllib, urllib2
import re
import cookielib
import time
import xml.dom.minidom
import json
import sys
import math

DEBUG = False

MAX_GROUP_NUM = 35 # 每组人数

QRImagePath = os.getcwd() + '/qrcode.jpg'

tip = 0
uuid = ''

base_uri = ''
redirect_uri = ''

skey = ''
wxsid = ''
wxuin = ''
pass_ticket = ''
deviceId = 'e000000000000000'

BaseRequest = {}

ContactList = []
My = []


def getUUID():
  global uuid

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

  request = urllib2.Request(url=url, data=urllib.urlencode(params))
  response = urllib2.urlopen(request)
  data = response.read()

  # 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 = urllib2.Request(url=url, data=urllib.urlencode(params))
  response = urllib2.urlopen(request)

  tip = 1

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

  if sys.platform.find('darwin') >= 0:
    os.system('open %s' % QRImagePath)
  elif sys.platform.find('linux') >= 0:
    os.system('xdg-open %s' % QRImagePath)
  else:
    os.system('call %s' % QRImagePath)

  print '请使用微信扫描二维码以登录'


def waitForLogin():
  global tip, base_uri, redirect_uri

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

  request = urllib2.Request(url=url)
  response = urllib2.urlopen(request)
  data = response.read()

  # 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('/')]
  elif code == '408': # 超时
    pass
  # elif code == '400' or code == '500':

  return code


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

  request = urllib2.Request(url=redirect_uri)
  response = urllib2.urlopen(request)
  data = response.read()

  # print data

  '''
   <error>
    <ret>0</ret>
    <message>OK</message>
    <skey>xxx</skey>
    <wxsid>xxx</wxsid>
    <wxuin>xxx</wxuin>
    <pass_ticket>xxx</pass_ticket>
    <isgrayscale>1</isgrayscale>
   </error>
  &#39;&#39;&#39;

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

  for node in root.childNodes:
    if node.nodeName == &#39;skey&#39;:
      skey = node.childNodes[0].data
    elif node.nodeName == &#39;wxsid&#39;:
      wxsid = node.childNodes[0].data
    elif node.nodeName == &#39;wxuin&#39;:
      wxuin = node.childNodes[0].data
    elif node.nodeName == &#39;pass_ticket&#39;:
      pass_ticket = node.childNodes[0].data

  # print &#39;skey: %s, wxsid: %s, wxuin: %s, pass_ticket: %s&#39; % (skey, wxsid, wxuin, pass_ticket)

  if skey == &#39;&#39; or wxsid == &#39;&#39; or wxuin == &#39;&#39; or pass_ticket == &#39;&#39;:
    return False

  BaseRequest = {
    &#39;Uin&#39;: int(wxuin),
    &#39;Sid&#39;: wxsid,
    &#39;Skey&#39;: skey,
    &#39;DeviceID&#39;: deviceId,
  }

  return True


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

  request = urllib2.Request(url=url, data=json.dumps(params))
  request.add_header(&#39;ContentType&#39;, &#39;application/json; charset=UTF-8&#39;)
  response = urllib2.urlopen(request)
  data = response.read()

  if DEBUG == True:
    f = open(os.getcwd() + &#39;/webwxinit.json&#39;, &#39;wb&#39;)
    f.write(data)
    f.close()

  # print data

  global ContactList, My
  dic = json.loads(data)
  ContactList = dic[&#39;ContactList&#39;]
  My = dic[&#39;User&#39;]

  ErrMsg = dic[&#39;BaseResponse&#39;][&#39;ErrMsg&#39;]
  if len(ErrMsg) > 0:
    print ErrMsg

  Ret = dic[&#39;BaseResponse&#39;][&#39;Ret&#39;]
  if Ret != 0:
    return False

  return True


def webwxgetcontact():
  url = base_uri + &#39;/webwxgetcontact?pass_ticket=%s&skey=%s&r=%s&#39; % (pass_ticket, skey, int(time.time()))

  request = urllib2.Request(url=url)
  request.add_header(&#39;ContentType&#39;, &#39;application/json; charset=UTF-8&#39;)
  response = urllib2.urlopen(request)
  data = response.read()

  if DEBUG == True:
    f = open(os.getcwd() + &#39;/webwxgetcontact.json&#39;, &#39;wb&#39;)
    f.write(data)
    f.close()

  # print data

  dic = json.loads(data)
  MemberList = dic[&#39;MemberList&#39;]

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

  return MemberList


def createChatroom(UserNames):
  MemberList = []
  for UserName in UserNames:
    MemberList.append({&#39;UserName&#39;: UserName})

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

  request = urllib2.Request(url=url, data=json.dumps(params))
  request.add_header(&#39;ContentType&#39;, &#39;application/json; charset=UTF-8&#39;)
  response = urllib2.urlopen(request)
  data = response.read()

  # print data

  dic = json.loads(data)
  ChatRoomName = dic[&#39;ChatRoomName&#39;]
  MemberList = dic[&#39;MemberList&#39;]
  DeletedList = []
  for Member in MemberList:
    if Member[&#39;MemberStatus&#39;] == 4: # 被对方删除了
      DeletedList.append(Member[&#39;UserName&#39;])

  ErrMsg = dic[&#39;BaseResponse&#39;][&#39;ErrMsg&#39;]
  if len(ErrMsg) > 0:
    print ErrMsg

  return (ChatRoomName, DeletedList)


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

  request = urllib2.Request(url=url, data=json.dumps(params))
  request.add_header(&#39;ContentType&#39;, &#39;application/json; charset=UTF-8&#39;)
  response = urllib2.urlopen(request)
  data = response.read()

  # print data

  dic = json.loads(data)
  ErrMsg = dic[&#39;BaseResponse&#39;][&#39;ErrMsg&#39;]
  if len(ErrMsg) > 0:
    print ErrMsg

  Ret = dic[&#39;BaseResponse&#39;][&#39;Ret&#39;]
  if Ret != 0:
    return False

  return True


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

  request = urllib2.Request(url=url, data=json.dumps(params))
  request.add_header(&#39;ContentType&#39;, &#39;application/json; charset=UTF-8&#39;)
  response = urllib2.urlopen(request)
  data = response.read()

  # print data

  dic = json.loads(data)
  MemberList = dic[&#39;MemberList&#39;]
  DeletedList = []
  for Member in MemberList:
    if Member[&#39;MemberStatus&#39;] == 4: # 被对方删除了
      DeletedList.append(Member[&#39;UserName&#39;])

  ErrMsg = dic[&#39;BaseResponse&#39;][&#39;ErrMsg&#39;]
  if len(ErrMsg) > 0:
    print ErrMsg

  return DeletedList


def main():
  opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookielib.CookieJar()))
  urllib2.install_opener(opener)

  if getUUID() == False:
    print &#39;获取uuid失败&#39;
    return

  showQRImage()
  time.sleep(1)

  while waitForLogin() != &#39;200&#39;:
    pass

  os.remove(QRImagePath)

  if login() == False:
    print &#39;登录失败&#39;
    return

  if webwxinit() == False:
    print &#39;初始化失败&#39;
    return

  MemberList = webwxgetcontact()

  MemberCount = len(MemberList)
  print &#39;通讯录共%s位好友&#39; % MemberCount

  ChatRoomName = &#39;&#39;
  result = []
  for i in xrange(0, int(math.ceil(MemberCount / float(MAX_GROUP_NUM)))):
    UserNames = []
    NickNames = []
    DeletedList = &#39;&#39;
    for j in xrange(0, MAX_GROUP_NUM):
      if i * MAX_GROUP_NUM + j >= MemberCount:
        break

      Member = MemberList[i * MAX_GROUP_NUM + j]
      UserNames.append(Member[&#39;UserName&#39;])
      NickNames.append(Member[&#39;NickName&#39;].encode(&#39;utf-8&#39;))

    print &#39;第%s组...&#39; % (i + 1)
    print &#39;, &#39;.join(NickNames)
    print &#39;回车键继续...&#39;
    raw_input()

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

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

    print &#39;找到%s个被删好友&#39; % DeletedCount
    # raw_input()

    # 删除成员
    deleteMember(ChatRoomName, UserNames)

  # todo 删除群组


  resultNames = []
  for Member in MemberList:
    if Member[&#39;UserName&#39;] in result:
      NickName = Member[&#39;NickName&#39;]
      if Member[&#39;RemarkName&#39;] != &#39;&#39;:
        NickName += &#39;(%s)&#39; % Member[&#39;RemarkName&#39;]
      resultNames.append(NickName.encode(&#39;utf-8&#39;))

  print &#39;---------- 被删除的好友列表 ----------&#39;
  print &#39;\n&#39;.join(resultNames)
  print &#39;-----------------------------------&#39;


# windows下编码问题修复
class UnicodeStreamFilter:
  def __init__(self, target):
    self.target = target
    self.encoding = &#39;utf-8&#39;
    self.errors = &#39;replace&#39;
    self.encode_to = self.target.encoding

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


if sys.stdout.encoding == &#39;cp936&#39;:
  sys.stdout = UnicodeStreamFilter(sys.stdout)

if __name__ == &#39;__main__&#39;:
  print &#39;本程序的查询结果可能会引起一些心理上的不适,请小心使用...&#39;
  print &#39;回车键继续...&#39;
  raw_input()

  main()

  print &#39;回车键结束&#39;
  raw_input()
Copy after login

The above is python to check whether WeChat friends delete their own content, more related content Please pay attention to the PHP Chinese website (www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24
PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

How to run sublime code python How to run sublime code python Apr 16, 2025 am 08:48 AM

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

Golang vs. Python: Performance and Scalability Golang vs. Python: Performance and Scalability Apr 19, 2025 am 12:18 AM

Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.

How to run python with notepad How to run python with notepad Apr 16, 2025 pm 07:33 PM

Running Python code in Notepad requires the Python executable and NppExec plug-in to be installed. After installing Python and adding PATH to it, configure the command "python" and the parameter "{CURRENT_DIRECTORY}{FILE_NAME}" in the NppExec plug-in to run Python code in Notepad through the shortcut key "F6".

Python vs. C  : Learning Curves and Ease of Use Python vs. C : Learning Curves and Ease of Use Apr 19, 2025 am 12:20 AM

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

See all articles