Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.36 KB

README.rst

File metadata and controls

50 lines (35 loc) · 1.36 KB

simple adb

PyPi version Build Tests Codecov

Object oriented python wrapper for adb protocol.

Install

To install the current release.

$ pip install simpleadb

Usage

Try your first program.

>>> import simpleadb
>>> adb_server = simpleadb.AdbServer()
>>> devices = adb_server.devices()
>>> emulator = devices[0]
>>> emulator
'emulator-5554'
>>> emulator.root()
restarting adbd as root
0
>>> emulator.reboot()

For more examples, see API documentation.

License

GPL3