25 lines
525 B
Python
25 lines
525 B
Python
#!/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
|