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.15.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.15-py2.py3-none-any.whl (10.0 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for allure_api_client-26.15.tar.gz
Algorithm Hash digest
SHA256 3c7b7eddd71d42626e743efed606006132729d52172a2317ae52d6aeb829e1d1
MD5 4f8dddb650aa3adc7fbf59790d4cc5f4
BLAKE2b-256 c424ed8f8afa961cbf1e3ec8e5ce59b81bb6b3b4bd5ca23483a7b093fb83f041

See more details on using hashes here.

File details

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

File metadata

  • Download URL: allure_api_client-26.15-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.2.1 CPython/3.14.2 Linux/6.11.0-1018-azure

File hashes

Hashes for allure_api_client-26.15-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bf48fccc4dd8a2ee4f864c419dd5053263dbdad8bc124032e98907471f107911
MD5 9f35e468a4037400be21959791f00d47
BLAKE2b-256 2ba605338ce24abe208c61bf42885cd557ef4f1d101dbcbbfb0562e12387f086

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