pure-python-adb
pure-python-adb copied to clipboard
This is pure-python implementation of the ADB client.
When I try to launch the following script for Bluestacks 10's app player, my interpreter just freezes. The freeze occurs whenever I call a method of the Client class (devices,...
I was trying to run ppadb on my computer with two different phones at the same time. It seems like one phone runs fine but the other instance of ppadb...
Traceback (most recent call last): File "Serial.py", line 5, in device.shell("echo hello world !") AttributeError: 'NoneType' object has no attribute 'shell' I am getting this error when trying to run...
https://github.com/Swind/pure-python-adb/blob/b136202b04660db57b49418514dd9eddc2ecb365/ppadb/sync_async/__init__.py#L23 Will crash `struct.error: required argument is not an integer` in `async` push, but it works fine in `sync`. Are there any other modifications that are not synchronized with `sync`?
Hello, is it possible to run a package (application) using this library. Using google's ADB i was able to do adb shell am start -n package.aidsim/......... Is it possible using...
Since lots of malware gets DEVICE_ADMIN permission adb uninstall command fails with DELETE_FAILED_DEVICE_POLICY_MANAGER error . Therefore if app is device-admin, call disable-user if uninstall fails.
is it possible to run ppadb over a network? i.e. run the python script on one PC and replace the '127.0.0.1' IP with the static IP of the PC with...
Code Ref: [adb root](https://github.com/Swind/pure-python-adb/blob/master/ppadb/command/transport/__init__.py#L179) In scenario, where adbd is already running as root, it isn't appropriate to send RunTimeError, as that isn't an error in actual, since user wants to...
ppadb.command.transport: Transport.shell() misses return, when a custom handler is supplied it's never used because of a missing return making the feature useless.
I didn't find any way to do the equivalent of executing `adb exec-out `. Any plans of including it? Would it be difficult to implement that? I think it could...