automation-test-with-submodule-python-sdk


Nameautomation-test-with-submodule-python-sdk JSON
Version 1.0.11 PyPI version JSON
download
home_pageNone
SummaryClient for Test Automation (No submodules)
upload_time2024-07-26 06:30:24
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-with-submodule-python-sdk<a id="automation-test-with-submodule-python-sdk"></a>

SDKs (no submodules) to test automation workflows.


[![PyPI](https://img.shields.io/badge/PyPI-v1.0.11-blue)](https://pypi.org/project/automation-test-with-submodule-python-sdk/1.0.11)
[![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)
  * [`automationtestwithsubmodule.greetings.hello`](#automationtestwithsubmodulegreetingshello)

<!-- tocstop -->

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

Python >=3.7

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

```sh
pip install automation-test-with-submodule-python-sdk==1.0.11
```

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

```python
from pprint import pprint
from automation_test_with_submodule import AutomationTestWithSubmodule, ApiException

automationtestwithsubmodule = AutomationTestWithSubmodule()

try:
    # Get a simple greeting!!!
    hello_response = automationtestwithsubmodule.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_with_submodule import AutomationTestWithSubmodule, ApiException

automationtestwithsubmodule = AutomationTestWithSubmodule()


async def main():
    try:
        # Get a simple greeting!!!
        hello_response = await automationtestwithsubmodule.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_with_submodule import AutomationTestWithSubmodule, ApiException

automationtestwithsubmodule = AutomationTestWithSubmodule()

try:
    # Get a simple greeting!!!
    hello_response = automationtestwithsubmodule.greetings.raw.hello()
    pprint(hello_response.body)
    pprint(hello_response.body["message"])
    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>
### `automationtestwithsubmodule.greetings.hello`<a id="automationtestwithsubmodulegreetingshello"></a>

Get a simple greeting!!!

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

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

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

[`HelloResponse`](./automation_test_with_submodule/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-with-submodule-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/4c/77/8b32d7d102ab53650648fb037b1fc38fb2df9e60d193ef7b04f111ea0729/automation_test_with_submodule_python_sdk-1.0.11.tar.gz",
    "platform": null,
    "description": "# automation-test-with-submodule-python-sdk<a id=\"automation-test-with-submodule-python-sdk\"></a>\n\nSDKs (no submodules) to test automation workflows.\n\n\n[![PyPI](https://img.shields.io/badge/PyPI-v1.0.11-blue)](https://pypi.org/project/automation-test-with-submodule-python-sdk/1.0.11)\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  * [`automationtestwithsubmodule.greetings.hello`](#automationtestwithsubmodulegreetingshello)\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-with-submodule-python-sdk==1.0.11\n```\n\n## Getting Started<a id=\"getting-started\"></a>\n\n```python\nfrom pprint import pprint\nfrom automation_test_with_submodule import AutomationTestWithSubmodule, ApiException\n\nautomationtestwithsubmodule = AutomationTestWithSubmodule()\n\ntry:\n    # Get a simple greeting!!!\n    hello_response = automationtestwithsubmodule.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_with_submodule import AutomationTestWithSubmodule, ApiException\n\nautomationtestwithsubmodule = AutomationTestWithSubmodule()\n\n\nasync def main():\n    try:\n        # Get a simple greeting!!!\n        hello_response = await automationtestwithsubmodule.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_with_submodule import AutomationTestWithSubmodule, ApiException\n\nautomationtestwithsubmodule = AutomationTestWithSubmodule()\n\ntry:\n    # Get a simple greeting!!!\n    hello_response = automationtestwithsubmodule.greetings.raw.hello()\n    pprint(hello_response.body)\n    pprint(hello_response.body[\"message\"])\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### `automationtestwithsubmodule.greetings.hello`<a id=\"automationtestwithsubmodulegreetingshello\"></a>\n\nGet a simple greeting!!!\n\n#### \ud83d\udee0\ufe0f Usage<a id=\"\ud83d\udee0\ufe0f-usage\"></a>\n\n```python\nhello_response = automationtestwithsubmodule.greetings.hello()\n```\n\n#### \ud83d\udd04 Return<a id=\"\ud83d\udd04-return\"></a>\n\n[`HelloResponse`](./automation_test_with_submodule/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.11",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1c122322437086e51ce81d2b824bb3e1392bf1d6d651e9ac730b2d68b2c057e",
                "md5": "d67d193cf746bee486319e68fa1f5e0b",
                "sha256": "bff0c0d0ba1b50fd97c120302977185acc5760d972e71f4906bd893aa8ed95a2"
            },
            "downloads": -1,
            "filename": "automation_test_with_submodule_python_sdk-1.0.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d67d193cf746bee486319e68fa1f5e0b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 64591,
            "upload_time": "2024-07-26T06:30:22",
            "upload_time_iso_8601": "2024-07-26T06:30:22.914646Z",
            "url": "https://files.pythonhosted.org/packages/b1/c1/22322437086e51ce81d2b824bb3e1392bf1d6d651e9ac730b2d68b2c057e/automation_test_with_submodule_python_sdk-1.0.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c778b32d7d102ab53650648fb037b1fc38fb2df9e60d193ef7b04f111ea0729",
                "md5": "0396ef655e248af0f5366cb67382349b",
                "sha256": "8663db34fd643bffb1a3a1bacd55dbc51338b6a7ad913004e38e355dac090136"
            },
            "downloads": -1,
            "filename": "automation_test_with_submodule_python_sdk-1.0.11.tar.gz",
            "has_sig": false,
            "md5_digest": "0396ef655e248af0f5366cb67382349b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 48742,
            "upload_time": "2024-07-26T06:30:24",
            "upload_time_iso_8601": "2024-07-26T06:30:24.485993Z",
            "url": "https://files.pythonhosted.org/packages/4c/77/8b32d7d102ab53650648fb037b1fc38fb2df9e60d193ef7b04f111ea0729/automation_test_with_submodule_python_sdk-1.0.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-26 06:30:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "automation-test-with-submodule-python-sdk"
}
        
Elapsed time: 0.55647s