import asyncio
from neonize.aioze.client import NewAClient
from neonize.utils.jid import build_jid

client = NewAClient("meow.sqlite3")
country_code = "521"
#num="5566263797"
num="2288472526"


async def main():
    await client.connect()
    while not client.connected:
        await asyncio.sleep(0.1)
    await client.send_message(build_jid(f"{country_code}{num}"), "Hello!")
    await client.stop()

asyncio.run(main())
