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.4

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.4.tar.gz.

File metadata

File hashes

Hashes for automation_test_with_submodule_python_sdk-1.0.4.tar.gz
Algorithm Hash digest
SHA256 92f85f60ebc95110091f33ca3555be26baa21676e4b4b31789fd4edeac2de9df
MD5 0af58b0699c6c3b0d53d974bae95ef8d
BLAKE2b-256 37be8605276e3e54aa4063d2638b0d421776fb1c1b727bc85181c4a97185ad75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for automation_test_with_submodule_python_sdk-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9a8473c87287cac42c7b55aa509e167303f80cf6f7a21bc60a9fba1dc0b856aa
MD5 3fb145e39eaed6802ee110f7a6812490
BLAKE2b-256 0b6728ec961060add007c5f33e77ebd64d8d6cdc303d0ce4b8532de4948a35e9

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