Simple Python interface to access ADB tool

How to install:
===============

easy_install Way:

$ sudo easy_install pyadb
Searching for pyadb
Reading http://pypi.python.org/simple/pyadb/
Reading https://github.com/sch3m4/pyadb
Best match: pyadb 0.0.4
Downloading http://pypi.python.org/packages/source/p/pyadb/pyadb-0.0.4.tar.gz#md5=4b8a97d03f5a989f6ae4fd8d88a6a114
Processing pyadb-0.0.4.tar.gz
Running pyadb-0.0.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-uuacvg/pyadb-0.0.4/egg-dist-tmp-p59SHU
zip_safe flag not set; analyzing archive contents...
Adding pyadb 0.0.4 to easy-install.pth file

Installed /usr/local/lib/python2.7/dist-packages/pyadb-0.0.4-py2.7.egg
Processing dependencies for pyadb
Finished processing dependencies for pyadb
$


More instructions: http://wiki.python.org/moin/CheeseShopTutorial

Simple usage:
=============

from pyadb.adb import ADB
(...)
myadb = ADB('~/android/platform-tools/adb')
(...)

You can view a "complete" example in "examples/whatsapp.py"