pyadb3

Simple python module to interact with Android Debug Bridge tool


Keywords
python, android, adb
License
BSD-3-Clause
Install
pip install pyadb3==1.0.2

Documentation

pyadb3

自用,仅支持python3。

安装

pip install pyadb3

使用

import pyadb3

adb = pyadb3.ADB()
adb.run_shell_cmd('ls -l /')
print(adb.get_output().decode())