Metadata-Version: 2.1
Name: python-adb-utils
Version: 0.0.7
Summary: This is the first test of a ADB interface for Python
Home-page: https://github.com/christopherferreira3/Python-ADB-Tools
Author: Christopher Ferreira
Author-email: christopher.ferreira3@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Python-ADB-Tools

Installation
======
You can install this package via pip
`pip install python_adb_utils`

or

`pip3 install python_adb_utils`


Usage:
======

To use these tools you only need to import and create an instance of AdbUtils()

`from adb_utils import AdbUtils`

`adb_instance = AdbUtils()`

___

Available Methods
======

### **get_connected devices()**
This method will return you a list of tuples having the device name and Android version for that specific version.

### **install_app(device=device_name, apk=path_to_apk)**
Installs an app to the chosen device.


### **unistall_app(device=device_name, package=package_name)**
Uninstalls an app


### **is_device_connected(device=device)**
Returns True if a device is connected.


### **is_app_installed(device=device_name, package=package_name)**
Check if an app is installed on a specific device.

