grammers-python’s documentation

from grammers import Client

client = Client(name, api_id, api_hash)

async def main():
    async client:
        # Now you can use all client methods listed below, like for example...
        await client.send_message('me', 'Hello to myself!')

client.run(main())

What is this?

grammers-python is the Python bindings of gramme.rs. This library aims to balance the performance of Rust and the ease of use of Python.