Skip to main content

Client for Test Automation (No submodules)

Project description

automation-test-with-submodule-python-sdk

SDKs (no submodules) to test automation workflows.

PyPI README.md

Table of Contents

Requirements

Python >=3.7

Installation

pip install automation-test-with-submodule-python-sdk==1.0.7

Getting Started

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

async support is available by prepending a to any method.

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

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

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

automationtestwithsubmodule.greetings.hello

Get a simple greeting!!!

🛠️ Usage

hello_response = automationtestwithsubmodule.greetings.hello()

🔄 Return

HelloResponse

🌐 Endpoint

/hello get

🔙 Back to Table of Contents


Author

This Python package is automatically generated by Konfig

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file automation_test_with_submodule_python_sdk-1.0.7.tar.gz.

File metadata

File hashes

Hashes for automation_test_with_submodule_python_sdk-1.0.7.tar.gz
Algorithm Hash digest
SHA256 978a57b50481e28c199ce52e6df6c251bcd49c18926329ba80b3f386c4c84e98
MD5 880e8e2427bf8eb5945886214fceb86c
BLAKE2b-256 5e8baa3127a187273a3a8c791942e4f390fb59b86c4a1889182c85bfb9950acf

See more details on using hashes here.

File details

Details for the file automation_test_with_submodule_python_sdk-1.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for automation_test_with_submodule_python_sdk-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 8565d2e6d150c3e666da1dc0ddc518aa1f84a0447708da6eb7ae647a499e155b
MD5 1eb53365e239e622e1c701047f76390a
BLAKE2b-256 c3b4823b0c62f2242dc46f6fdb2133d61b4d47edf359b0621e9907bc13c56143

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page