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

this should solve https://github.com/home-assistant/core/issues/114420 ``` Logger: py.warnings Source: components/androidtv/__init__.py:17 First occurred: 2:43:35 PM (15 occurrences) Last logged: 2:43:35 PM /usr/local/lib/python3.12/site-packages/ppadb/plugins/device/utils.py:85: SyntaxWarning: invalid escape sequence '\d' pattern = "userId=([\d]+)" /usr/local/lib/python3.12/site-packages/ppadb/plugins/device/utils.py:102: SyntaxWarning:...

input device.shell() can i drag mouse and how ?

`AttributeError: 'DeviceAsync' object has no attribute 'is_installed'` Is there no way to use this method in async mode?

when I uesd remote connect a Android devcie, and then using device.shell(tar -zcvf /sdcard/test/test.tar.gz /sdcard/test/*star 07.21star*) .Sometimes, one file will be misssing, not included in test.tar.gz. I was compressed 11...

Hi, I encountered an error when copying the file folder to the device. ```python device.push(str(obb_folder), "/sdcard/Android/obb/") # obb_folder is WindowsPath object with absolute path ``` ### Result: `com.xxx` -- directory,...

Thanks for your performance work. I have a device, using mdm9607 , when connect to it via adb , the user(root) and password must be given to it. When I...

System: - Android version: 12 - One UI version: 4.1 - Brand: Samsung My problem is that running this code: ```python from ppadb.client import Client as AdbClient client = AdbClient(host="127.0.0.1",...

I want to start `wpa_supplicant` on the target system and leave it running in the background (so I throw its `-B` option). When I use the ppadb `shell()` method to...

has any one realised that the documentation has no way of starting the server of 127.0.0.1 u have to either run adb.exe and then be able to start the server...

When adding handler to shell() call for adb logcat and device get disconnected then it starts printing empty string. When we reconnect the device still the output is blank. I...