Skip to content

matthieuxyz/adb_shell

 
 

Repository files navigation

adb_shell

https://travis-ci.com/JeffLIrion/adb_shell.svg?branch=master https://coveralls.io/repos/github/JeffLIrion/adb_shell/badge.svg?branch=master

Documentation for this package can be found at https://adb-shell.readthedocs.io/.

This Python package implements ADB shell functionality. It originated from python-adb.

Example Usage

(Based on androidtv/adb_manager.py)

from adb_shell.adb_device import AdbDevice
from adb_shell.auth.sign_pythonrsa import PythonRSASigner

# Connect (no authentication necessary)
device1 = AdbDevice(serial='192.168.0.111:5555', default_timeout_s=9.)
device1.connect(auth_timeout_s=0.1)

# Connect (authentication required)
with open('path/to/adbkey') as f:
    priv = f.read()
signer = PythonRSASigner('', priv)
device2 = AdbDevice(serial='192.168.0.222:5555', default_timeout_s=9.)
device2.connect(rsa_keys=[signer], auth_timeout_s=0.1)

# Send a shell command
response1 = device1.shell('echo TEST1')
response2 = device2.shell('echo TEST2')

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.0%
  • Shell 4.1%
  • Makefile 0.9%