---------------------------------------------------------------------- This is the API documentation for the gdtest_async_funcs library. ---------------------------------------------------------------------- ## Async Functions Asynchronous functions async_fetch(url: str) -> str Fetch data from a URL asynchronously. Parameters ---------- url The URL to fetch. Returns ------- str Response body. async_process(data: str) -> dict Process data asynchronously. Parameters ---------- data Raw data string. Returns ------- dict Processed results.