From 360a8eadd1dcf566e4a8f0436d31754544e477d5 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 30 Apr 2019 12:00:17 +0300 Subject: [PATCH] Add python-tdlib to the list of examples. GitOrigin-RevId: cd47b8ec465bd138269e0b4182dc470c7087443e --- example/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/README.md b/example/README.md index 207664e2..6226ac42 100644 --- a/example/README.md +++ b/example/README.md @@ -39,8 +39,8 @@ Convenient Python wrappers already exist for our JSON interface. If you use modern Python >= 3.6, take a look at [python-telegram](https://github.com/alexander-akhmetov/python-telegram). The wrapper uses the full power of asyncio, has a good documentation and has several examples. It can be installed through pip or used in a Docker container. -For older Python versions you can use [demo-pytdlib](https://github.com/i-Naji/demo-pytdlib). -This wrapper contains generator for TDLib API classes and basic class for interaction with TDLib. +For older Python versions you can use [demo-pytdlib](https://github.com/i-Naji/demo-pytdlib) or [python-tdlib](https://github.com/andrew-ld/python-tdlib). +These wrappers contain generators for TDLib API classes and basic classes for interaction with TDLib. You can also check out [example/python/tdjson_example.py](https://github.com/tdlib/td/tree/master/example/python/tdjson_example.py) and [tdlib-python](https://github.com/JunaidBabu/tdlib-python) for some very basic examples of TDLib JSON interface integration with Python.