Metadata-Version: 2.1
Name: automation-test-no-submodules-python-sdk
Version: 1.0.6
Summary: Client for Test Automation (No submodules)
License: MIT
Author: Konfig
Author-email: engineering@konfigthis.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: aiohttp (>=3.9.2,<4.0.0)
Requires-Dist: certifi (>=2023.7.22)
Requires-Dist: cryptography (>=42.0.5,<43.0.0)
Requires-Dist: frozendict (>=2.3.4,<3.0.0)
Requires-Dist: pydantic (>=2.4.2,<3.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: typing_extensions (>=4.3.0,<5.0.0)
Requires-Dist: urllib3 (>=1.26.18,<3.0.0)
Description-Content-Type: text/markdown

# automation-test-no-submodules-python-sdk<a id="automation-test-no-submodules-python-sdk"></a>

SDKs (no submodules) to test automation workflows.


[![PyPI](https://img.shields.io/badge/PyPI-v1.0.6-blue)](https://pypi.org/project/automation-test-no-submodules-python-sdk/1.0.6)
[![README.md](https://img.shields.io/badge/README-Click%20Here-green)](https://github.com/eddiechayes/automation-test/tree/main/python#readme)

## Table of Contents<a id="table-of-contents"></a>

<!-- toc -->

- [Requirements](#requirements)
- [Installation](#installation)
- [Getting Started](#getting-started)
- [Async](#async)
- [Raw HTTP Response](#raw-http-response)
- [Reference](#reference)
  * [`automationtestnosubmodules.greetings.hello`](#automationtestnosubmodulesgreetingshello)

<!-- tocstop -->

## Requirements<a id="requirements"></a>

Python >=3.7

## Installation<a id="installation"></a>

```sh
pip install automation-test-no-submodules-python-sdk==1.0.6
```

## Getting Started<a id="getting-started"></a>

```python
from pprint import pprint
from automation_test_no_submodules import AutomationTestNoSubmodules, ApiException

automationtestnosubmodules = AutomationTestNoSubmodules()

try:
    # Get a simple greeting
    hello_response = automationtestnosubmodules.greetings.hello()
    print(hello_response)
except ApiException as e:
    print("Exception when calling GreetingsApi.hello: %s\n" % e)
    pprint(e.body)
    pprint(e.headers)
    pprint(e.status)
    pprint(e.reason)
    pprint(e.round_trip_time)
```

## Async<a id="async"></a>

`async` support is available by prepending `a` to any method.

```python
import asyncio
from pprint import pprint
from automation_test_no_submodules import AutomationTestNoSubmodules, ApiException

automationtestnosubmodules = AutomationTestNoSubmodules()


async def main():
    try:
        # Get a simple greeting
        hello_response = await automationtestnosubmodules.greetings.ahello()
        print(hello_response)
    except ApiException as e:
        print("Exception when calling GreetingsApi.hello: %s\n" % e)
        pprint(e.body)
        pprint(e.headers)
        pprint(e.status)
        pprint(e.reason)
        pprint(e.round_trip_time)


asyncio.run(main())
```

## Raw HTTP Response<a id="raw-http-response"></a>

To access raw HTTP response values, use the `.raw` namespace.

```python
from pprint import pprint
from automation_test_no_submodules import AutomationTestNoSubmodules, ApiException

automationtestnosubmodules = AutomationTestNoSubmodules()

try:
    # Get a simple greeting
    hello_response = automationtestnosubmodules.greetings.raw.hello()
    pprint(hello_response.body)
    pprint(hello_response.body["message"])
    pprint(hello_response.body["value"])
    pprint(hello_response.headers)
    pprint(hello_response.status)
    pprint(hello_response.round_trip_time)
except ApiException as e:
    print("Exception when calling GreetingsApi.hello: %s\n" % e)
    pprint(e.body)
    pprint(e.headers)
    pprint(e.status)
    pprint(e.reason)
    pprint(e.round_trip_time)
```


## Reference<a id="reference"></a>
### `automationtestnosubmodules.greetings.hello`<a id="automationtestnosubmodulesgreetingshello"></a>

Get a simple greeting

#### 🛠️ Usage<a id="🛠️-usage"></a>

```python
hello_response = automationtestnosubmodules.greetings.hello()
```

#### 🔄 Return<a id="🔄-return"></a>

[`HelloResponse`](./automation_test_no_submodules/pydantic/hello_response.py)

#### 🌐 Endpoint<a id="🌐-endpoint"></a>

`/hello` `get`

[🔙 **Back to Table of Contents**](#table-of-contents)

---


## Author<a id="author"></a>
This Python package is automatically generated by [Konfig](https://konfigthis.com)

