Metadata-Version: 2.1
Name: PyAndroidTouch
Version: 0.1.0
Summary: Python3 Android Touch Module, Base On "BobbleKeyboard/android_touch". Support Multi-Finger Tap/Swipe/Circle/Expand Action...
Home-page: https://github.com/HsOjo/PyAndroidTouch/
Author: HsOjo
Author-email: hsojo@qq.com
License: UNKNOWN
Keywords: hsojo python3 android ojopyadb touch
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: OjoPyADB (>=0.2.0)

```
  ___  __    __                _           _     _   _                   _
|` _ `\\`\  /,/ __ _ _ __   __| |_ __ ___ (_) __| | | |_ ___  _   _  ___| |__
| (_) / \ \/ / / _` | '_ \ / _` | '__/ _ \| |/ _` | | __/ _ \| | | |/ __| '_ \
| ,_ /   \ ,/ | (_| | | | | (_| | | | (_) | | (_| | | || (_) | |_| | (__| | | |
|_|      /_/   \__,_|_| |_|\__,_|_|  \___/|_|\__,_|  \__\___/ \__,_|\___|_| |_|
```

![android_touch](https://github.com/BobbleKeyboard/android_touch/raw/master/android_touch.gif)

# PyAndroidTouch

This project is the python 3 support module based on "[BobbleKeyboard/android_touch](https://github.com/BobbleKeyboard/android_touch)".

## Introduction

Support multi finger click / slide / circle / expand and other actions.

* tap (tap, long press click, continuous click, multi finger click)
* swipe (swipe, multi finger swipe) # currently only linear swipe
* circle (circle, long press circle, multi finger circle, continuous circle, reverse circle)
* expand (expand, multidirectional expand) # is equivalent to supporting shrink

## How to use

As shown below.

### Installation

* Starting from version 0.0.2, the module will be uploaded to pypi. You can also install it directly using pip.

```bash
pip install PyAndroidTouch
```

#### Manual Installation

1. Open the [release page](https://github.com/HsOjo/PyAndroidTouch/releases) to find the latest version of the installation file.

2. (Optional) download to this machine through browser, and then use **pip** to execute the following command to install.

```bash
pip install PyAndroidTouch-0.0.2-py3-none-any.whl
```

* Of course, you can also directly copy the download link of the installation package and use **pip** for online installation. (execute the following command)

```bash
# Note: that the link here is version 0.0.2, please replace it with the latest version.
pip install https://github.com/HsOjo/PyAndroidTouch/releases/download/0.0.2/PyAndroidTouch-0.0.2-py3-none-any.whl
```

### Example code

...

### Demo

See the "pyandroidtouch/demo" directory.


