pure-python-adb
pure-python-adb copied to clipboard
This is pure-python implementation of the ADB client.
Hi: I have a python program that interacts with android devices, the thing is that my python program is integrated with a C# program that uses specific adb.exe file, so...
[Uninstall](https://github.com/Swind/pure-python-adb/blob/b136202b04660db57b49418514dd9eddc2ecb365/ppadb/device.py#L129) does not remove the APK from the list of the installed apps. That is strange, because if we run: ``` >>> device.is_installed(apk_name) True >>> device.uninstall(apk_name) True >>> device.is_installed(apk_name) False...
# Before:  # After:  # Code:  # It's 100% impossible to take screenshot in under than 0.1 seconds, it takes 3 to 4 seconds to take 3...
This pull request fixes a bug preventing asynchronous pushes from completing. It also adds asynchronous install and uninstall methods based on the synchronous equivalents.
Hi guys, I am a learner of python-abd, and I want to know whether this support concurrent operations at the same time, for example, whether two **input_swipe()** operations are allowed...
Fix for #63
Currently when sending an adb reverse command, an error occurs: ``` RuntimeError: ERROR: 'FAIL' 0016malformed forward spec ``` After digging into the code and the adb source code, it turns...
Hey, is it possible to add support for adb command `emu`? Like for example if you want to find out your avd name via `adb emu avd name`? Thanks in...