pure-python-adb
pure-python-adb copied to clipboard
This is pure-python implementation of the ADB client.
Hi, The ADB device is connected to a remote host, therefore I'm setting up the client like this: ```python from ppadb.client import Client as AdbClient client = AdbClient(host='remote_host', port=5037) device...
When a RunTimeError is raised (Example: ADB server not available) you just get a text string in e.arg When a ConnectionResetError is raised e.arg[0] has the error code as an...
Hello!! Thank you for your code. I really enjoy it. But recently I neeed to refresh a device. So this command works good. "adb usb" in command prompt. But In...
Is there a way to run a shell command on the phone in a manner akin to `subprocess.Popen`? Specifically, I'd like to start a command, get its PID, do some...
Is there capability to get return value of command execution via 'adb shell' ?
Hello @Swind , thanks a lot for this repo, it's awesome contribution. We saw that there are some helpful PRs in this repo pending for approval / discussion, and some...
https://github.com/Swind/pure-python-adb/blob/b136202b04660db57b49418514dd9eddc2ecb365/ppadb/device.py#L92 We should replace "grand" by "grant".
Most modern Android applications support multiple platforms (device resolutions, ABI, etc) and hence have theirs installation packages splitted in multiple APK files; actually, any application in Google Play top-100 contains...