reportmonster-client/src/reportmonster_client/test.py
2022-07-19 16:43:37 +02:00

12 lines
289 B
Python

from reportmonster_client import ReportMonsterClient
import asyncio
async def test():
client = ReportMonsterClient("test", "test")
await client.connect()
await client.auth()
return await client.write("users Testcademy")
output = asyncio.run(test())
print(output.content)