Skip to main content

API Client for Python ^3.10 and Pytest projects. It includes the Allure request/response hooks and the status code checking inside the main method. Request hook generates cURL, Response hook represents the useful information.

Project description

allure-api-client

A lightweight API client built on top of httpx that adds convenient defaults for testing, plus optional Allure-friendly request/response logging. It ships with:

  • Synchronous and asynchronous clients
  • Optional Allure hooks to log cURL, request, and response details
  • Simple Bearer token authentication helper
  • Built-in status code verification in a single send_request call

Requirements

  • Python 3.11+

Installation

pip install allure-api-client

If you want Allure reporting, also install Allure and its pytest plugin and generate a report when you run tests:

Example test run with Allure report generation:

pytest --alluredir=./allure-results
allure serve ./allure-results

Quick start (synchronous)

from api_client import APIClient, BearerToken

client = APIClient(
    base_url="https://api.example.com",
    auth=BearerToken("YOUR_ACCESS_TOKEN"),  # optional
    verify=False,                            # optional, default False
    with_allure=True                         # optional, default True: enable Allure hooks
)

response = client.send_request(
    method="GET",
    path="/users",
    params={"page": 1},
    # By default, the client expects HTTP 200 (HTTPStatus.OK)
    # You can override the expectation per request:
    # status_code=201,
)
print(response.status_code)
print(response.json())

Quick start (asynchronous)

import asyncio
from api_client import AsyncAPIClient, BearerToken

async def main() -> None:
    async with AsyncAPIClient(
        base_url="https://api.example.com",
        auth=BearerToken("YOUR_ACCESS_TOKEN"),  # optional
        verify=False,                            # optional
        with_allure=True                         # optional
    ) as client:
        response = await client.send_request(
            method="GET",
            path="/users",
        )
        print(response.status_code)
        print(response.json())

asyncio.run(main())

Authentication

Use a Bearer token if your API requires it:

from api_client import BearerToken

auth = BearerToken("YOUR_ACCESS_TOKEN")
# pass it to APIClient/AsyncAPIClient via the auth parameter

Allure integration

  • By default, the clients are created with with_allure=True. The library will attach helpful request/response data to Allure, including a cURL snippet for easy reproduction.
  • If you do not use Allure, set with_allure=False to use minimal internal hooks instead.

Status code handling

  • send_request verifies the response status code for you using the status_code parameter (default: 200 OK).
  • If the actual status code does not match the expected value, an assertion-like error is raised coming from the underlying check.

Example expecting 201 Created:

from api_client import APIClient

client = APIClient(base_url="https://api.example.com")
response = client.send_request(
    method="POST",
    path="/users",
    json={"name": "Alice"},
    status_code=201,
)

Configuration reference

Common parameters on client initialization:

  • base_url: Base URL string for your API (e.g., https://api.example.com)
  • auth: Any httpx-compatible auth object; BearerToken helper is provided
  • cookies: Optional httpx.Cookies to send on each request
  • verify: Whether to verify TLS certificates (default False)
  • with_allure: Enable/disable Allure hooks (default True)

Common parameters on send_request:

  • method: HTTP method (e.g., "GET", "POST", ...)
  • path: Path appended to base_url
  • headers, params, data, json, files
  • follow_redirects (default True)
  • timeout (seconds, default 300)
  • status_code: expected response status (default 200)

Contributing

Contributions are welcome! Please open an issue or a pull request.

License

Released under the MIT License. See LICENSE.

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

allure_api_client-26.33.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

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

allure_api_client-26.33-py2.py3-none-any.whl (10.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file allure_api_client-26.33.tar.gz.

File metadata

  • Download URL: allure_api_client-26.33.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.14.2 Linux/6.11.0-1018-azure

File hashes

Hashes for allure_api_client-26.33.tar.gz
Algorithm Hash digest
SHA256 c30815b9296f21edea791f1ae138f1dfab55d7b4af11850f6cf8d06faae3c3d2
MD5 0278548b76051557f693e6f94ddc6311
BLAKE2b-256 c45bf2eb3683a711ac9e154cede4284f4033c577b1800aa03bbd1bedb9386c4a

See more details on using hashes here.

File details

Details for the file allure_api_client-26.33-py2.py3-none-any.whl.

File metadata

  • Download URL: allure_api_client-26.33-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.14.2 Linux/6.11.0-1018-azure

File hashes

Hashes for allure_api_client-26.33-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3e169cbd54b7df0f14e1260f38f600f8396d926f9afb4461802b584b6afe7f01
MD5 97b2cdebd2f109409d24ec677176f7dc
BLAKE2b-256 66a6b309f527059ae94c3654ecec5d1bb6e38ecf077bb10f09658adb13ae1350

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