adb_android

Enables android adb in your python script.

Project status

Build Status Analytics

Purpose

This python package is a wrapper for standard android adb implementation. It allows you to execute android adb commands in your python script.

What's supported?

Currently following adb commands are supported:

Currently following adb commands are not supported:

How to install?

Install with help of pip:

pip install adb_android

How to use?

from adb_android import adb_android

adb_android.push('/tmp/file.txt', '/data/media/0')
adb_android.pull('/data/media/0/file.txt', '/tmp/')
adb_android.shell('ls')
adb_android.devices()
adb_android.bugreport("report.log")
adb_android.install('/usr/local/app.apk')
adb_android.uninstall('com.example.android.valid')
adb_android.getserialno()

...

How to contribute?