2023-03-05 09:07:25 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import json
|
|
|
|
import asyncio
|
|
|
|
from bot import Bot
|
|
|
|
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
fp = open('config.json', 'r')
|
|
|
|
config = json.load(fp)
|
|
|
|
matrix_bot = Bot(homeserver=config['homeserver'],
|
|
|
|
user_id=config['user_id'],
|
|
|
|
password=config['password'],
|
|
|
|
device_id=config['device_id'],
|
2023-03-09 11:21:12 -05:00
|
|
|
room_id=config.get('room_id', ''), # provide a default value when the key does not exist
|
2023-03-09 19:29:12 -05:00
|
|
|
api_key=config.get('api_key', ''),
|
|
|
|
)
|
2023-03-05 09:07:25 -05:00
|
|
|
await matrix_bot.login()
|
|
|
|
await matrix_bot.sync_forever()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
2023-03-09 11:21:12 -05:00
|
|
|
loop = asyncio.get_running_loop()
|
|
|
|
except RuntimeError:
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
asyncio.run(main())
|