Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-adbc

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-adbc

  • 1.0.16
  • PyPI
  • Socket score

Maintainers
1

ADBC

Test-测试

ADBC是ADB Client的纯python异步实现,ADBC直接跟ADB Server通信不需要靠进程调用命令行来执行ADB命令。 有以下特性:

  1. 支持async/await和同步调用
  2. 封装了一些性能测试相关的接口,供性能采集工具使用
  3. service(服务)为单位封装命令接口,能够跟 adbandroid shell命令更加一致。

安装

pip install async-adbc

快速入门

使用ADBClient

ADBClient对应的是adb命令

note 当连接设备只有一个的时候,adb命令可以省略-s <serialno>,但是ADBClient不会包含这种默认设备的命令接口。因为async-adbc认为adbdevice应该职责分明不应有太多的潜规则。因此用户想要操作某个设备一定要使用Device对象下的接口,Device下的接口相当于是帮我们默认传递了-s <serialno>

from async_adbc import ADBClient

adbc = ADBClient() # 默认连接 127.0.0.1:5037 ,也就是本机的adb server
version = awaitadbc.version() # 对应 `adb version`
print(version)

# 获取Android设备对象,对应 `adb devices`
devices = adbc.devices()
for device in devices:
    print(device.serialno)

使用Device

Device对象是对Android设备的抽象,所有需要指定 -s <serialno> 的操作都被封装到 Device 类中。

from async_adbc import ADBClient

adbc = ADBClient()

# 获取Android设备对象,对应 `adb devices`
default_device = adbc.device() # 获取 `adb devices` 的第一个设备

product_model = await defualt_device.prop.get("ro.product.model")
print(product_model)

# `device.pm` 对应 `adb shell pm`
packages = await default_device.pm.list_packages()
print(packages)

# `device.shell` 对应 `adb shell`
ret = await default_device.shell("echo hello")
print(ret)

# 封装了 `fps` ,用来获取安卓游戏的帧率,方案参考了`solopi`
fps_stat = await default_device.fps.stat("PKG_NAME")
print(fps_stat)

# 封装了 `mem`,用来获取安卓设备的内存信息
mem_stat = await default_device.mem.stat("PKB_NAME")
print(mem_stat)

# 还有流量、温度等等工具的封装...

参考

  1. adb协议 https://github.com/kaluluosi/adbDocumentation/blob/master/README.zh-cn.md
  2. ppadb https://github.com/Swind/pure-python-adb

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc