Metadata-Version: 2.1
Name: urax_adb
Version: 1.1.1
Summary: Running adb on Python made easier.
Author-Email: Nguyen Thai Minh <ntm09112012@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Project-URL: Homepage, https://github.com/thaiminhnguyen1999/urax_adb
Project-URL: Issues, https://github.com/thaiminhnguyen1999/urax_adb/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# urax_adb
![PyPI](https://img.shields.io/pypi/v/urax_adb?label=pypi%20package) ![PyPI - Downloads](https://img.shields.io/pypi/dm/urax_adb)
Running adb on Python made easier.

# Installation
To install with `pip`, run command:
```bash
pip install urax_adb
```

For specific version, run command:
```bash
pip install urax_adb==<VERSION>
```

# Functions
| Functions | Feature |
|:-:|:-:|
| `urax_adb.adbpath(path)` | Configure path for adb manually |
| `urax_adb.connect(device, type, port)` | Connect to device |
| `urax_adb.disconnect(device)` | Disconnect from device |
| `urax_adb.devices()` | List all connected devices |
| `urax_adb.shell(shell_commands)` | Execute multiple adb shell commands |
| `urax_adb.execute(command)` | Execute a adb command |