automation-test-no-submodules-python-sdk


Nameautomation-test-no-submodules-python-sdk JSON
Version 1.0.6 PyPI version JSON
download
home_pageNone
SummaryClient for Test Automation (No submodules)
upload_time2024-07-17 21:17:50
maintainerNone
docs_urlNone
authorKonfig
requires_python<4.0,>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "automation-test-no-submodules-python-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Konfig",
    "author_email": "engineering@konfigthis.com",
    "download_url": "https://files.pythonhosted.org/packages/58/a4/da3971db5fb6f1b5985796194ad1130976fda5d80d4440901b7e15291140/automation_test_no_submodules_python_sdk-1.0.6.tar.gz",
    "platform": null,
    "description": "# automation-test-no-submodules-python-sdk<a id=\"automation-test-no-submodules-python-sdk\"></a>\n\nSDKs (no submodules) to test automation workflows.\n\n\n[![PyPI](https://img.shields.io/badge/PyPI-v1.0.6-blue)](https://pypi.org/project/automation-test-no-submodules-python-sdk/1.0.6)\n[![README.md](https://img.shields.io/badge/README-Click%20Here-green)](https://github.com/eddiechayes/automation-test/tree/main/python#readme)\n\n## Table of Contents<a id=\"table-of-contents\"></a>\n\n<!-- toc -->\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Getting Started](#getting-started)\n- [Async](#async)\n- [Raw HTTP Response](#raw-http-response)\n- [Reference](#reference)\n  * [`automationtestnosubmodules.greetings.hello`](#automationtestnosubmodulesgreetingshello)\n\n<!-- tocstop -->\n\n## Requirements<a id=\"requirements\"></a>\n\nPython >=3.7\n\n## Installation<a id=\"installation\"></a>\n\n```sh\npip install automation-test-no-submodules-python-sdk==1.0.6\n```\n\n## Getting Started<a id=\"getting-started\"></a>\n\n```python\nfrom pprint import pprint\nfrom automation_test_no_submodules import AutomationTestNoSubmodules, ApiException\n\nautomationtestnosubmodules = AutomationTestNoSubmodules()\n\ntry:\n    # Get a simple greeting\n    hello_response = automationtestnosubmodules.greetings.hello()\n    print(hello_response)\nexcept ApiException as e:\n    print(\"Exception when calling GreetingsApi.hello: %s\\n\" % e)\n    pprint(e.body)\n    pprint(e.headers)\n    pprint(e.status)\n    pprint(e.reason)\n    pprint(e.round_trip_time)\n```\n\n## Async<a id=\"async\"></a>\n\n`async` support is available by prepending `a` to any method.\n\n```python\nimport asyncio\nfrom pprint import pprint\nfrom automation_test_no_submodules import AutomationTestNoSubmodules, ApiException\n\nautomationtestnosubmodules = AutomationTestNoSubmodules()\n\n\nasync def main():\n    try:\n        # Get a simple greeting\n        hello_response = await automationtestnosubmodules.greetings.ahello()\n        print(hello_response)\n    except ApiException as e:\n        print(\"Exception when calling GreetingsApi.hello: %s\\n\" % e)\n        pprint(e.body)\n        pprint(e.headers)\n        pprint(e.status)\n        pprint(e.reason)\n        pprint(e.round_trip_time)\n\n\nasyncio.run(main())\n```\n\n## Raw HTTP Response<a id=\"raw-http-response\"></a>\n\nTo access raw HTTP response values, use the `.raw` namespace.\n\n```python\nfrom pprint import pprint\nfrom automation_test_no_submodules import AutomationTestNoSubmodules, ApiException\n\nautomationtestnosubmodules = AutomationTestNoSubmodules()\n\ntry:\n    # Get a simple greeting\n    hello_response = automationtestnosubmodules.greetings.raw.hello()\n    pprint(hello_response.body)\n    pprint(hello_response.body[\"message\"])\n    pprint(hello_response.body[\"value\"])\n    pprint(hello_response.headers)\n    pprint(hello_response.status)\n    pprint(hello_response.round_trip_time)\nexcept ApiException as e:\n    print(\"Exception when calling GreetingsApi.hello: %s\\n\" % e)\n    pprint(e.body)\n    pprint(e.headers)\n    pprint(e.status)\n    pprint(e.reason)\n    pprint(e.round_trip_time)\n```\n\n\n## Reference<a id=\"reference\"></a>\n### `automationtestnosubmodules.greetings.hello`<a id=\"automationtestnosubmodulesgreetingshello\"></a>\n\nGet a simple greeting\n\n#### \ud83d\udee0\ufe0f Usage<a id=\"\ud83d\udee0\ufe0f-usage\"></a>\n\n```python\nhello_response = automationtestnosubmodules.greetings.hello()\n```\n\n#### \ud83d\udd04 Return<a id=\"\ud83d\udd04-return\"></a>\n\n[`HelloResponse`](./automation_test_no_submodules/pydantic/hello_response.py)\n\n#### \ud83c\udf10 Endpoint<a id=\"\ud83c\udf10-endpoint\"></a>\n\n`/hello` `get`\n\n[\ud83d\udd19 **Back to Table of Contents**](#table-of-contents)\n\n---\n\n\n## Author<a id=\"author\"></a>\nThis Python package is automatically generated by [Konfig](https://konfigthis.com)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Client for Test Automation (No submodules)",
    "version": "1.0.6",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e00f94848a9c4e2a7f68b03bfceb91a85aae514e1e5be573a68617025a0a89d0",
                "md5": "117bd24cfb07a7b56a3fab59630907c3",
                "sha256": "d69c57799053c29626df5683a58ba156973820b719fa645b1cbf66dfc249d6a9"
            },
            "downloads": -1,
            "filename": "automation_test_no_submodules_python_sdk-1.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "117bd24cfb07a7b56a3fab59630907c3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 64599,
            "upload_time": "2024-07-17T21:17:49",
            "upload_time_iso_8601": "2024-07-17T21:17:49.085266Z",
            "url": "https://files.pythonhosted.org/packages/e0/0f/94848a9c4e2a7f68b03bfceb91a85aae514e1e5be573a68617025a0a89d0/automation_test_no_submodules_python_sdk-1.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58a4da3971db5fb6f1b5985796194ad1130976fda5d80d4440901b7e15291140",
                "md5": "810035aeac656d0254158764067730f3",
                "sha256": "c7859c95f93b8c9759334b557daba2711b5da8ded882ba66bbf315c5690bc11e"
            },
            "downloads": -1,
            "filename": "automation_test_no_submodules_python_sdk-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "810035aeac656d0254158764067730f3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 48726,
            "upload_time": "2024-07-17T21:17:50",
            "upload_time_iso_8601": "2024-07-17T21:17:50.730727Z",
            "url": "https://files.pythonhosted.org/packages/58/a4/da3971db5fb6f1b5985796194ad1130976fda5d80d4440901b7e15291140/automation_test_no_submodules_python_sdk-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-17 21:17:50",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "automation-test-no-submodules-python-sdk"
}
        
Elapsed time: 0.76875s