All Projects → valord577 → Auto_add_wechat_friends_py

valord577 / Auto_add_wechat_friends_py

Licence: apache-2.0
微信添加好友 批量发送添加请求 脚本 python

Programming Languages

python3
1442 projects

Labels

Projects that are alternatives of or similar to Auto add wechat friends py

Phonesploit
Using open Adb ports we can exploit a Andriod Device
Stars: ✭ 854 (+662.5%)
Mutual labels:  adb
Python Androidtv
Communicate with an Android TV or Fire TV device via ADB over a network.
Stars: ✭ 58 (-48.21%)
Mutual labels:  adb
Adb root
Magisk Module that allows you to run "adb root".
Stars: ✭ 97 (-13.39%)
Mutual labels:  adb
Divvydroid
Qt/C++ Application to screencast and remote control Android devices
Stars: ✭ 29 (-74.11%)
Mutual labels:  adb
Airfrozengranter
AirFrozen
Stars: ✭ 52 (-53.57%)
Mutual labels:  adb
Build fwul
NEW LOCATION *** NEW LOCATION !! https://code.binbash.it:8443/FWUL/build_fwul || . . . . . . . . . . . . FWUL - the most reliable adb/fastboot live system ever - to manage ANY Android without driver hassle
Stars: ✭ 70 (-37.5%)
Mutual labels:  adb
Nexus Tools
Installer for ADB and Fastboot on Linux, macOS, and Chrome OS
Stars: ✭ 596 (+432.14%)
Mutual labels:  adb
Uber Adb Tools
A tool that enables advanced features through adb installing and uninstalling apps like wildcards and multi device support. Useful if you want to clean your test device from all company apks or install a lot of apks in one go. Written in Java so it should run on your platform.
Stars: ✭ 106 (-5.36%)
Mutual labels:  adb
Addon Adb
Android Debug Bridge - Home Assistant Community Add-ons
Stars: ✭ 58 (-48.21%)
Mutual labels:  adb
Logcatch
android adb logcat viewer for Linux/Mac/Windows
Stars: ✭ 95 (-15.18%)
Mutual labels:  adb
Go Adbbot
android bot based on adb and golang
Stars: ✭ 34 (-69.64%)
Mutual labels:  adb
Android Dev Bookmarks
Android Dev Bookmarks(ADB) - Android 开发者的浏览器书签 For CN-Dev now | 历史更新文章戳这里:https://rocko.xyz/categories/Android-Dev-Bookmarks/ | 订阅: https://tinyletter.com/Rocko | 站点主页:
Stars: ✭ 1,041 (+829.46%)
Mutual labels:  adb
Debloat Samsung Android
ADB commands to aggressively de-bloat Samsung Android Phones without root. Make Samsung One UI closer to stock Android.
Stars: ✭ 79 (-29.46%)
Mutual labels:  adb
Awesome Cheatsheets
超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 ⚡
Stars: ✭ 7,930 (+6980.36%)
Mutual labels:  adb
Adbserver
Adb Server for Espresso tests
Stars: ✭ 105 (-6.25%)
Mutual labels:  adb
Weiqunkong
微群控, 电脑统一控制多台Android设备
Stars: ✭ 777 (+593.75%)
Mutual labels:  adb
Hjmirror
Mirroring you droid device screen to Windows, MacOS and Linux.
Stars: ✭ 67 (-40.18%)
Mutual labels:  adb
Androidcontrol
超强群控,可以实时查看和控制安卓手机的安卓远程控制软件,致力于完成一个高端的安卓群控软件 可以群控,录制运行脚本等等功能......
Stars: ✭ 1,576 (+1307.14%)
Mutual labels:  adb
Millionhero
速度快、准确易用-支持各平台的答题助手-图形界面-多权重答案推荐-自动百度高亮答案
Stars: ✭ 106 (-5.36%)
Mutual labels:  adb
Rootless Logcat
Android Logcat app without Root
Stars: ✭ 85 (-24.11%)
Mutual labels:  adb

auto_add_wechat_friends_py

微信自动发送添加好友请求脚本 python

使用指南

  • python version > 3.3
  • android手机打开usb调试
  • android手机允许模拟点击(一部分手机有 如小米6x)
  • 运行结果会以txt文件格式导出 (目录自动创建) ./result/${yyyyMMdd}/*.txt

python run.py

  • 提示使用 python run.py -h 或 python run.py --help

python run.py -h

  • 显示详细使用帮助 -h 或 --help
  • 优先级最高 且与其他参数冲突

python run.py -d

  • 使用adb的默认端口 和 默认设备(usb有且仅有一个android设备)
  • 优先级第二 且与其他参数冲突

python run.py -s xxx

  • 绑定adb操作的设备号 多设备适用

python run.py -p xxx

  • 绑定adb运行的端口号 adb端口被占用适用(鲁大师 360手机助手等)

python run.py -p xxx -s xxx

  • 绑定adb操作的设备号和运行的端口号

配置环境

  • ./config/config.json 配置:
    - mode => 添加联系人模式 file | loop
    - loop => 循环首尾 包含首 不包含尾
    - file => 文件相对路径 手机号码一行一个 自动处理换行符\n
    - account => 自动切换账号 微信登录 微信预留账号
    - dump => 累计查找结果达到指定个数 会从内存写入到文件
    - sleep => 休眠时间 单位分钟
    - sleep-flag => 查找失败 会切换账号 切换账号到指定次数 会休眠
  • 创建python独立虚拟环境:
    1. # pip3 install --upgrade pip virtualenv setuptools
    2. # virtualenv --no-site-packages venv
        # virtualenv --no-site-packages -p /usr/bin/python3.7 venv
    3. # ./venv/bin/python run.py -h

技术堆栈

  • 采用adb命令对android手机 模拟点击
  • adb shell uiautomator dump /sdcard/dump.xml 截图当前屏幕节点
  • 采用xml.etree.cElementTree对该xml文件进行分析并计算点击的坐标

思路来源

开源协议

Copyright 2018 valord577

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].