Async ADB Client
Project description
async-adbc
ADBC是ADB Client的纯python异步实现,ADBC直接跟ADB Server通信不需要靠进程调用命令行来执行ADB命令。 有以下特性:
- 支持async/await和同步调用
- 封装了一些性能测试相关的方法,供性能采集工具使用
- 以
service(服务)为单位封装命令方法,能够跟adb和android shell命令更加一致。
安装
pip install async-adbc
快速入门
使用ADBClient
ADBClient对应的是adb命令
note 当连接设备只有一个的时候,
adb命令可以省略-s <serialno>,但是ADBClient不会包含这种默认设备的命令方法。因为async-adbc认为adb和device应该职责分明不应有太多的潜规则。因此用户想要操作某个设备一定要使用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)
# 还有流量、温度等等工具的封装...
参考
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file async_adbc-2.0.0rc2.tar.gz.
File metadata
- Download URL: async_adbc-2.0.0rc2.tar.gz
- Upload date:
- Size: 3.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0445e50baeaafaa3dc3f8790aec0a47c1a2d1ef3343816cfa3a9ffb0d3e3a86f
|
|
| MD5 |
5de22707327fd116092b4837678c9164
|
|
| BLAKE2b-256 |
4f7a16f2b5894106bb8a41cbd30f36356d452ea089f6f0935003ee39589b5f29
|
File details
Details for the file async_adbc-2.0.0rc2-py3-none-any.whl.
File metadata
- Download URL: async_adbc-2.0.0rc2-py3-none-any.whl
- Upload date:
- Size: 3.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934a602c1650c78522cc7dcfa0dfb9b964b08f821ff85be08af6b0b3d539b5db
|
|
| MD5 |
c00856940492527c605d072b2243a498
|
|
| BLAKE2b-256 |
04d25a276ed90ff509f6c1ff9c7dffc5b2838e9172f9207d5b06cc197d06d225
|