Using @decorator
to easily request an HTTP Client
This framework based on aiohttp's http client framework.
Use Annotated Type to describe the elements required in an HTTP request.
Python 3.10 or higher is required.
pip install ahttp-client
An example is the API provided by the BUS API.
import asyncio
import aiohttp
from ahttp_client import request, Session, Query
from typing import Annotated, Any
loop = asyncio.get_event_loop()
class MetroAPI(Session):
def __init__(self, loop: asyncio.AbstractEventLoop):
super().__init__("https://api.yhs.kr", loop=loop)
@request("GET", "/metro/station")
async def station_search_with_query(
self,
response: aiohttp.ClientResponse,
name: Annotated[str, Query]
) -> dict[str, Any]:
return await response.json()
async def main():
async with MetroAPI(loop) as client:
data = await client.station_search_with_query(name="metro-station-name")
print(len(data))
loop.run_until_complete(main())