blob: fc87c1caca303fc9f7f62c1f7a5a991b751858e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import functools
import asyncio
from .telegram import (
send_message as _send_message_sync,
send_photo as _send_photo_sync
)
async def send_message(*args, **kwargs):
loop = asyncio.get_event_loop()
return await loop.run_in_executor(None, functools.partial(_send_message_sync, *args, **kwargs))
async def send_photo(*args, **kwargs):
loop = asyncio.get_event_loop()
return await loop.run_in_executor(None, functools.partial(_send_photo_sync, *args, **kwargs))
|