Skip to main content

A framework for easy asynchronous HTTP request calling with decorations

Project description

async-client-decorator

Using @decorator to esaily request an HTTP Client
This framework based on aiohttp's http client framework.

Use Union Type to describe the elements required in an HTTP request.

Installation

Python 3.10 or higher is required.

pip install async_client_decorator

Quick Example

An example is the API provided by the BUS API.

import asyncio
import aiohttp
from async_client_decorator import request, Session, Query

loop = asyncio.get_event_loop()


class BusAPI(Session):
    def __init__(self, loop: asyncio.AbstractEventLoop):
        super().__init__("https://api.yhs.kr", loop)

    @request("GET", "/bus/station")
    async def station_search_with_query(
                self,
                response: aiohttp.ClientResponse,
                name: Query | str
    ):
        return await response.json() 


async def main():
    async with BusAPI(loop) as client:
        response = await client.station_search_with_query(name="bus-station-name")
        data = await response.json()
        print(len)

loop.run_until_complete(main())

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

async_client_decorator-0.1.0.tar.gz (9.9 kB view hashes)

Uploaded Source

Built Distribution

async_client_decorator-0.1.0-py3-none-any.whl (17.5 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