Metadata-Version: 2.1
Name: tdbot
Version: 1.0.0
Summary: tdbot
Home-page: https://github.com/tdRPA/tdRPA
Author: Armstrong Wang
Author-email: Armstrong Wang <armstrong.wang@gmail.com>
Project-URL: Homepage, https://github.com/tdRPA/tdRPA
Project-URL: Bug Tracker, https://github.com/tdRPA/tdRPA/issues
Keywords: Swagger,tdBot - OpenAPI 3.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3 (>=1.15)
Requires-Dist: six (>=1.10)
Requires-Dist: certifi
Requires-Dist: python-dateutil

# tdbot
tdBot API

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 1.0.0
- Package version: 1.0.0
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install

If the python package is hosted on Github, you can install directly from Github

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import tdbot 
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import tdbot
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import tdbot
from tdbot.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = tdbot.MouseApi(tdbot.ApiClient(configuration))
body = tdbot.Target() # Target | 

try:
    # click target
    api_response = api_instance.mouse_click_target(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling MouseApi->mouse_click_target: %s\n" % e)

# create an instance of the API class
api_instance = tdbot.MouseApi(tdbot.ApiClient(configuration))
body = tdbot.Target() # Target | 

try:
    # move mouse cursor to target
    api_response = api_instance.mouse_hover_target(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling MouseApi->mouse_hover_target: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*MouseApi* | [**mouse_click_target**](docs/MouseApi.md#mouse_click_target) | **PUT** /mouse/clickTarget | click target
*MouseApi* | [**mouse_hover_target**](docs/MouseApi.md#mouse_hover_target) | **PUT** /mouse/hoverTarget | move mouse cursor to target
*StaticApi* | [**static_file**](docs/StaticApi.md#static_file) | **GET** /swagger/{file} | host static files mainly of swagger ui for API testing

## Documentation For Models

 - [Element](docs/Element.md)
 - [Object](docs/Object.md)
 - [Target](docs/Target.md)

## Documentation For Authorization

 All endpoints do not require authorization.


## Author


