Create Matrix and Telegram clients

This commit is contained in:
Alex Kotov 2023-01-08 01:42:02 +04:00
parent 9d3ff4f1a2
commit 4e32665882
No known key found for this signature in database
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 16 additions and 1 deletions

View File

@ -5,8 +5,23 @@ import asyncio
import aiogram as telegram
import nio as matrix
MATRIX_HOMESERVER_URL = 'https://matrix.org'
MATRIX_FULL_USER_ID = '@fckidiots:matrix.org'
MATRIX_PASSWORD = '...'
TELEGRAM_BOT_TOKEN = '5890667880:...'
async def main():
await asyncio.gather(matrix_loop(), telegram_loop())
try:
matrix_client = \
matrix.AsyncClient(MATRIX_HOMESERVER_URL, MATRIX_FULL_USER_ID)
await matrix_client.login(MATRIX_PASSWORD)
telegram_client = telegram.Bot(token=TELEGRAM_BOT_TOKEN)
await asyncio.gather(matrix_loop(), telegram_loop())
finally:
if matrix_client:
await matrix_client.close()
async def matrix_loop():
print(123)