aboutsummaryrefslogtreecommitdiff
path: root/test/test_telegram_aio_send_photo.py
blob: 9f591c4ffe2efc0ecc7c74c4c266410ef7585527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
import include_homekit
import asyncio
import homekit.telegram.aio as telegram

from homekit.config import config


async def main():
    await telegram.send_message(f'test message')
    await telegram.send_photo('/tmp/3.jpg')
    await telegram.send_photo('/tmp/4.jpg')


if __name__ == '__main__':
    config.load_app('test_telegram_aio_send_photo')

    loop = asyncio.get_event_loop()
    asyncio.ensure_future(main())

    try:
        loop.run_forever()
    except KeyboardInterrupt:
        pass