Skip to main content

API Client extension for validate and transform requests / responses using pydantic.

Project description

GitHub issues GitHub stars GitHub Release Date GitHub commits since latest release GitHub last commit GitHub license

PyPI PyPI PyPI - Downloads

Python API Client Pydantic Extension

Installation

pip install api-client-pydantic

Usage

The following decorators have been provided to validate request data and converting json straight to pydantic class.

from apiclient_pydantic import serialize, serialize_all_methods, serialize_request, serialize_response

# serialize incoming kwargs
@serialize_request(schema: Optional[Type[BaseModel]] = None, extra_kwargs: dict = None)

# serialize response in pydantic class
@serialize_response(schema: Optional[Type[BaseModel]] = None)

# serialize request and response data
@serialize(schema_request: Optional[Type[BaseModel]] = None, schema_response: Optional[Type[BaseModel]] = None, **base_kwargs)

# wraps all local methods of a class with a specified decorator. default 'serialize'
@serialize_all_methods(decorator=serialize)

Usage:

  1. Define the schema for your api in pydantic classes.
    from pydantic import BaseModel, Field
    
    
    class Account(BaseModel):
        account_number: int = Field(alias='accountNumber')
        sort_code: int = Field(alias='sortCode')
        date_opened: datetime = Field(alias='dateOpened')
    
  2. Add the @serialize_response decorator to the api client method to transform the response directly into your defined schema.
    @serialize_response(List[Account])
    def get_accounts():
        ...
    # or
    @serialize_response()
    def get_accounts() -> List[Account]:
        ...
    
  3. Add the @serialize_request decorator to the api client method to translate the incoming kwargs into the required dict for the endpoint:
    @serialize_request(AccountHolder)
    def create_account(data: dict):
       ...
    # or
    @serialize_request()
    def create_account(data: AccountHolder):
     # data will be exactly a dict
       ...
    create_account(last_name='Smith', first_name='John')
    # data will be a dict {"last_name": "Smith", "first_name": "John"}
    
  4. @serialize - It is a combination of the two decorators @serialize_response and@serialize_request.
  5. For more convenient use, you can wrap all APIClient methods with @serialize_all_methods.
    from apiclient import APIClient
    from apiclient_pydantic import serialize_all_methods
    from typing import List
    
     from .models import Account, AccountHolder
    
    
     @serialize_all_methods()
     class MyApiClient(APIClient):
         def decorated_func(self, data: Account) -> Account:
             ...
    
         def decorated_func_holder(self, data: AccountHolder) -> List[Account]:
             ...
    

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

api-client-pydantic-1.1.1.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

api_client_pydantic-1.1.1-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page