MangaBot/util/async_requests.py

7 lines
131 B
Python
Raw Permalink Normal View History

2024-07-24 23:07:10 +01:00
import asyncio
import requests
async def get(*args, **kwargs):
return await asyncio.to_thread(requests.get, *args, **kwargs)