7 lines
131 B
Python
7 lines
131 B
Python
|
|
import asyncio
|
||
|
|
|
||
|
|
import requests
|
||
|
|
|
||
|
|
|
||
|
|
async def get(*args, **kwargs):
|
||
|
|
return await asyncio.to_thread(requests.get, *args, **kwargs)
|