mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
12 lines
280 B
Python
12 lines
280 B
Python
![]() |
import logging
|
||
|
|
||
|
import async_timeout
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
async def http_get(http_session, url, timeout_seconds=60):
|
||
|
with async_timeout.timeout(timeout_seconds):
|
||
|
async with http_session.get(url) as response:
|
||
|
return await response.json()
|