handles spaces, accents and other sneaky characters in ADB commands
Project description
handles spaces, accents and other sneaky characters in ADB commands
Tested against Windows / Python 3.11 / Anaconda
pip install adbeasykey
from adbeasykey import AdbEasyKey
adbpath = r"C:\Android\android-sdk\platform-tools\adb.exe"
serial_number = "127.0.0.1:5555"
adb = AdbEasyKey(adbpath, serial_number, use_busybox=False) # if use_busybox is True, busybox will be used to decode the base64-encoded command
adb.connect_to_device_ps()
adb.connect_to_device_subprocess()
text = f'"it\'s me", he said then he went away "Montréal, über, 12.89, Mère, Françoise, noël, 889 groß"""'
adb.install_adb_keyboard()
adb.input_text_adb_keyboard_ps(
text, change_back=True, sleeptime=(0, 0), add_exit=True
) # preserves accents - suffix _ps is for use Windows Powershell
adb.input_text_adb_keyboard_subprocess(
text, change_back=True, sleeptime=(0.1, 0.2), add_exit=True
) # preserves accents
adb.keyevents.KEYCODE_A.press_ps()
adb.keyevents.KEYCODE_A.press_subproc()
adb.keyevents.KEYCODE_A.longpress_subproc()
adb.keyevents.KEYCODE_A.longpress_ps()
adb.input_text_ps(text) # doesn't preserve accents
adb.input_text_ps(text, remove_accents=True) # ç -> c
adb.input_text_ps(text, sleeptime=(0.1, 0.2), remove_accents=True) # one by one
adb.input_text_ps(text, sleeptime=(0.1, 0.2), remove_accents=True, input_device='keyboard')
adb.keyevents.KEYCODE_A.longpress_ps.gamepad()
adb.keyevents.KEYCODE_A.longpress_ps.keyboard()
adb.input_text_subprocess(text) # doesn't preserve accents
adb.input_text_subprocess(text, remove_accents=True) # ç -> c
adb.input_text_subprocess(text, sleeptime=(0.1, 0.2), remove_accents=True)
stdout, stderr = adb.adb_shell_ps("ls / -1 -R -i -H -las")
stdout, stderr = adb.adb_shell_ps("ls /data") # no permission
stdout, stderr = adb.adb_shell_ps("ls /data", su=True) # permission
stdout, stderr = adb.adb_shell_ps('mkdir "/sdcard/bub ö äß"')
stdout, stderr = adb.adb_shell_ps("ls /sdcard/")
stdout, stderr = adb.adb_shell_subprocess("ls / -1 -R -i -H -las")
stdout, stderr = adb.adb_shell_subprocess("ls /data") # no permission
stdout, stderr = adb.adb_shell_subprocess("ls /data", su=True) # permission
stdout, stderr = adb.adb_shell_subprocess('mkdir "/sdcard/#gx bub ö äß"')
stdout, stderr = adb.adb_shell_subprocess("ls /sdcard/")
stdout, stderr = adb.adb_ps(
cmd=r"push C:\Users\hansc\Downloads\Roger LeRoy Miller, Daniel K. Benjamin, Douglass C. North - The Economics of Public Issues-Pearson College Div (2017).pdf /sdcard/Download/testbba.pdf"
)
stdout, stderr = adb.adb_subprocess(
cmd=r"push C:\Users\hansc\Downloads\Roger LeRoy Miller, Daniel K. Benjamin, Douglass C. North - The Economics of Public Issues-Pearson College Div (2017).pdf /sdcard/Download/testbba.pdf"
)
stdout, stderr = adb.adb_shell_ps(
"input swipe 600 600 0 0 1000\ninput swipe 0 0 600 600 1000",
)
adb.is_keyboard_shown()
adb.get_active_keyboard()
adb.change_to_adb_keyboard()
adb.change_keyboard(
keyboard="com.android.inputmethod.latin/.LatinIME",
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
adbeasykey-0.12.tar.gz
(26.6 kB
view details)
Built Distribution
adbeasykey-0.12-py3-none-any.whl
(27.0 kB
view details)
File details
Details for the file adbeasykey-0.12.tar.gz
.
File metadata
- Download URL: adbeasykey-0.12.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 520011ca77cb8e0d3f1f074b1497d69a1aef8056d85085b7daa8d9ab7acf7dff |
|
MD5 | c7199ecd788efb5b48c4942351b614c6 |
|
BLAKE2b-256 | 54bf6f3e92c78e38df7298ee0c418787aedf317303e3bf7d705d165aa42c10d9 |
File details
Details for the file adbeasykey-0.12-py3-none-any.whl
.
File metadata
- Download URL: adbeasykey-0.12-py3-none-any.whl
- Upload date:
- Size: 27.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02cd86e82b0e89f6fbbe566dfeccc0f30f90599258c4d80420e6adfc7afd77c1 |
|
MD5 | eecdc671903cf14e8d8bab8ddf309a20 |
|
BLAKE2b-256 | c14d7f2715d7db77e51c6ff6ae562f22401397fafdffc161782f9a9c4b3f82b9 |