Skip to main content

A Python client for OpenAPI specifications using httpx

Project description

OpenAPI Client for Python

A Python implementation inspired by openapi-client-axios that provides a dynamic client for OpenAPI specifications. This implementation uses httpx for HTTP requests and Python's metaprogramming capabilities to dynamically generate a client with an API design similar to httpx.

Installation

pip install openapi-httpx-client

Usage

The client supports both synchronous and asynchronous usage patterns through a familiar context manager interface.

Asynchronous Usage

from openapiclient import OpenAPIClient
import asyncio

async def main():
    # Initialize the API factory with the OpenAPI definition
    api = OpenAPIClient(definition="https://petstore3.swagger.io/api/v3/openapi.json")
    
    # Use the async client with context manager
    async with api.AsyncClient() as client:
        # Show available operations
        print("Operations:", client.operations)
        print("Available functions:", client.functions)
        
        # Call operations directly as methods
        pet = await client.getPetById(petId=1)
        print(f"Status: {pet['status']}")
        print(f"Pet data: {pet['data']}")

        # Call operations directly as methods, using positional arguments, can using in path and query
        pet = await client.getPetById(1)
        print(f"Status: {pet['status']}")
        print(f"Pet data: {pet['data']}")
        
        # Alternative way to call methods
        pet = await client("getPetById", petId=2)
        print(f"Another pet: {pet['data']}")
        
        # Access AI tools definition for integration with LLMs
        print(f"AI tools: {client.tools}")

if __name__ == "__main__":
    asyncio.run(main())

Synchronous Usage

from openapiclient import OpenAPIClient

# Initialize the API factory
api = OpenAPIClient(definition="https://petstore3.swagger.io/api/v3/openapi.json")

# Use the synchronous client with context manager
with api.Client() as client:
    # Show available operations
    print("Operations:", client.operations)
    
    # Call operations directly
    pet = client.getPetById(petId=1)
    print(f"Pet name: {pet['data'].get('name')}")
    
    # Call operations using dictionary-like access
    store_inventory = client["getInventory"]()
    print(f"Store inventory: {store_inventory['data']}")

Advanced Options

You can pass any httpx client options when creating a client:

# With timeout and custom headers
with api.Client(timeout=30, headers={"API-Key": "your-api-key"}) as client:
    result = client.someOperation()

# With proxy configuration
async with api.AsyncClient(proxies="http://localhost:8080") as client:
    result = await client.someOperation()

Features

  • Intuitive API design similar to httpx with context managers
  • Support for both synchronous and asynchronous operations
  • Dynamic client generation using Python metaprogramming
  • Compatible with OpenAPI 3.0 and 3.1 specifications
  • Support for loading specifications from URL, file, or dictionary (JSON/YAML)
  • Response format similar to axios (data, status, headers, config)
  • AI tools generation for integration with LLMs and AI assistants

Client Properties

Each client instance provides these properties:

  • operations: List of all available operation IDs
  • paths: List of API paths defined in the specification
  • functions: Dictionary of all operation methods mapped by name
  • tools: List of AI function calling definitions for LLM integration

Response Format

All API responses are returned in a dictionary format with the following keys:

  • data: The parsed response body (JSON or text)
  • status: HTTP status code
  • headers: Response headers
  • config: Original request configuration

Author

lloydzhou

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

openapi_httpx_client-0.4.3.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

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

openapi_httpx_client-0.4.3-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file openapi_httpx_client-0.4.3.tar.gz.

File metadata

File hashes

Hashes for openapi_httpx_client-0.4.3.tar.gz
Algorithm Hash digest
SHA256 062f68056b679a3cb04a0b86f304388e58980acb4d335903dc595d5286a75367
MD5 a6034e5464dbbb7735bff72a871ca11c
BLAKE2b-256 f56fa6adbb463aa71a0a1c1ce4c0e49b94215f8b885982fa970343a5d094825f

See more details on using hashes here.

File details

Details for the file openapi_httpx_client-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for openapi_httpx_client-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 24219a9d2052f03fdb6561bad5005c2dd31bfae706935798b30cd49e6e8607da
MD5 2cd4d49dcc343b104cf38defd4bd875f
BLAKE2b-256 fad0cf7c7963e384ba2aa83c50b842a9667d86934e22b25d2c7ceb9dd2ce88b6

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