pure-python-adb icon indicating copy to clipboard operation
pure-python-adb copied to clipboard

This is pure-python implementation of the ADB client.

Results 69 pure-python-adb issues
Sort by recently updated
recently updated
newest added

`device.push('/sdcard/test.txt','c:/test/test.txt')` leads to the following error: >raise FileNotFoundError("Cannot find {}".format(src)) >FileNotFoundError: Cannot find /sdcard/test.txt Any idea what I am doing wrong with the call? Phone is connected. sdcard/test.txt does exist...

Implementation for Uiautomator2 by @snakx

I have Python 3.7.3 64bit. I have installed pure-python-adb-0.2.6.dev0. Adb server is running on android-emulator. I can connect successfully using adb.exe But using following code : ``` from ppadb.client import...

I use ppadb in my code and use pyinstaller to turn it to exe but I run my exe file,it will said " ModuleNotFoundError: No module named 'ppadb' " I've...

In line 40. It needs to be: ` $pip3 install -U pure-python-adb ` Cause when you just type in pip install.... it will add the module to python2-site packages

hi: Is there a timeout when installing app?

i got following error when i try to take screenshot with ppadb... the exact same code is able to run on another windows and linux PC.. anyone know what cause...

While using this: ``` from ppadb.client import Client as AdbClient # Default is "127.0.0.1" and 5037 client = AdbClient(host="192.168.1.10", port=5555) device = client.device("myphonename") device.shell("echo hello world !") ``` I can...

adb interactive session is supported? if yes what function to be used in I am running my code on windows environment.