Metadata-Version: 2.4
Name: AOI-Package
Version: 2.0.2
Summary: AOI API
Home-page: 
Author: Corey Sadler
Author-email: Corey Sadler <corey.sadler@3adesign.co.uk>
License: Copyright © 2023 3ADesign Limited
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Keywords: OpenAPI,OpenAPI-Generator,AOI API
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: connexion>=2.0.2
Requires-Dist: swagger-ui-bundle>=0.0.2
Requires-Dist: python_dateutil>=2.6.0
Requires-Dist: setuptools>=21.0.0
Requires-Dist: requests
Dynamic: author
Dynamic: license-file

# AOI-API
AOI_API


This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.1
- Package version: 2.0.2
- Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```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 AOI_API
```

### 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 AOI_API
```

## Getting Started

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

```python
from __future__ import print_function

import time
import AOI_API
from AOI_API.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost/AOIServer
# See configuration.py for a list of all supported configuration parameters.
configuration = AOI_API.Configuration(
    host = "http://localhost/AOIServer"
)



# Enter a context with an instance of the API client
with AOI_API.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = AOI_API.AOIApi(api_client)
    
    try:
        # 
        api_response = api_instance.post_calibration()
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AOIApi->post_calibration: %s\n" % e)
    
```

## Documentation for API Endpoints

All URIs are relative to *http://localhost/AOIServer*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AOIApi* | [**post_calibration**](docs/AOIApi.md#post_calibration) | **POST** /calibrate | 
*AOIApi* | [**post_scan_board**](docs/AOIApi.md#post_scan_board) | **POST** /scan_board | 


## Documentation For Models

 - [DbPhrameJSONStore](docs/DbPhrameJSONStore.md)


## Documentation For Authorization

 All endpoints do not require authorization.

## Author

corey.sadler@3adesign.co.uk


