Metadata-Version: 2.1
Name: ADBconnect
Version: 0.0.1
Summary: Controlling your phone via ADB.
Home-page: https://github.com/Ijidishurka/ADBconnect
Author: Ijidishurka
Author-email: polpies3o@gmail.com
Project-URL: GitHub, https://github.com/Ijidishurka/ADBconnect
Keywords: adb phone ADB
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# EasyADB  
**Control your phone from your PC via USB debugging.**

### Installation:  
Before using EasyADB, you need to install [ADB](https://developer.android.com/tools/releases/platform-tools?hl=ru).  

### Setup:  
You can specify the path to your ADB files. For example:  

```python
import easyADB  

easyADB.Phone(adb_path=r"C:\Users\ijidishurka\platform-tools")
``` 

You can also specify the device ID that will accept requests:  

```python
import easyADB  

easyADB.Phone(device='67e345rf')
To view the list of available devices, run adb devices in your terminal.
```

### Code examples can be found in the `examples` folder.
