Skip to content
View yugokato's full-sized avatar

Block or report yugokato

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
yugokato/README.md
from api_client_core import BaseAPI, endpoint
from api_client_core.types import RestResponse


class UsersAPI(BaseAPI):
    
    @endpoint.get("/users/{username}")
    def get_user(self, username: str) -> RestResponse:
        ...
>>> client = MyAPIClient()
>>> r = client.Users.get_user("yugokato")
>>> assert r.status_code == 200
>>> r.response
{
  "username": "yugokato",
  "role": "Senior Python SDET",
  "location": "Portland, OR",
  "specialties": [
    "Python",
    "Test Automation",
    "Framework Development",
    "Infrastructure & Tooling",
    "CI/CD"
  ],
  "status": "Automating everything"
}

Pinned Loading

  1. api-client-core api-client-core Public

    A framework for building Python API clients with decorator-based endpoint definitions

    Python

  2. openapi-test-client openapi-test-client Public

    Dynamically generate/update API test clients from OpenAPI 3.x specifications. Supports both sync and async

    Python 4

  3. pytest-data-loader pytest-data-loader Public

    Pytest plugin for loading test data for data-driven testing (DDT)

    Python

  4. pytest-smoke pytest-smoke Public

    Pytest plugin for smoke testing

    Python 3

  5. microservices microservices Public

    Containerized Service Delivery Platform is a scalable multi-container Docker application which delivers remote users a collection of containerized QA applications on-demand via APIs

    2 1

  6. common-libs common-libs Public

    Shared libraries used by my other private/public unpublished projects

    Python