Alexander Akhmetov
Alexander Akhmetov
Hi! Sorry, there is no example, unfortunately. You can check out how [send_message](https://github.com/alexander-akhmetov/python-telegram/blob/7e11953c920e1454b0a54afaf8dd3f03319148a3/telegram/client.py#L173) works and then you'll need to figure out how to call tdlib with the proper parameters. I...
Hi! Sorry for the late response. The wrapper does not support async.
Hi! I don't think it's possible to use tgcall with this wrapper. > how can i make Json-ld like message Sorry, what do you mean?
Hi, No, the library officially doesn't support async/await syntax, you'll have to write a wrapper if you want to use it.
Probably, it should be possible to have both the current synchronous client and a new async API, and the synchronous client could be migrated to use the new async-await API...
Thank you, looks good! Could you please add a type definition for `contacts` for mypy? ``` telegram/client.py:205: error: Function is missing a type annotation for one or more arguments ```
@HemmaCuda I'd suggest increasing [tdlib verbosity](https://github.com/alexander-akhmetov/python-telegram/blob/master/telegram/client.py#L69), it might help. > @New-dev0 > I Tried keeping the config at logging.DEBUG level and error was printed/logged with that. Are you talking about...
Thank you for the feedback! Yes, there were several issues with that. Choosing `telegram` probably wasn't the best decision. But changing the namespace might break some external code. I'll leave...
`0.16.0` uses tdlib `v1.8.5`
#346 Adds markup support (the change is released in version `0.17.0`). See the [README.md](https://github.com/alexander-akhmetov/python-telegram/blob/3b9d4d3a3bc2a3e69f75325a9d94debe12f51500/README.md) and the [text module](https://github.com/alexander-akhmetov/python-telegram/blob/3b9d4d3a3bc2a3e69f75325a9d94debe12f51500/telegram/text.py) for more information.