Skip to content

Commit

Permalink
* Added CHANGELOG.md
Browse files Browse the repository at this point in the history
* Slightly changed README.md
  • Loading branch information
pylakey committed Apr 8, 2021
1 parent e01796a commit abd8ccb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# aiotdlib CHANGELOG

### v0.0.2
* Removed redundant `CurrentAuthorizationState` class

* added `parse_mode` param to `Client` class.
Default parse mode for high-level methods like `send_message`. Default: "html"

* `Client.send_message` now automatically parses text entities in text.
Text will be parsed according to `parse_mode` option passed in constructor

### v0.0.1 - First Public Release
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# aiotdlib

## Python asyncio wrapper for Telegram's TDLib based on Pydantic models
## Python asyncio wrapper for [TDLib](https://github.com/tdlib/td).
> All types and functions are generated automatically based on [TD tl-schema](https://github.com/tdlib/td/blob/master/td/generate/scheme/td_api.tl)
> Tested with TDLib v1.7.3 only. Support for other versions of TDLib is not guaranteed
> Includes prebuilt binary (1.7.3) only for macOS.
> You can use your own binary by passing library_path argument of Client class
> Prebuilt binary (v1.7.3) **only for macOS** included.
> You can use your own binary by passing `library_path` argument to `Client` class constructor
> You need to get your api_id and api_hash first.
> You need to get your **api_id** and **api_hash** first.
> Read more in [Telegram docs](https://core.telegram.org/api/obtaining_api_id#obtaining-api-id)
### Basic example
Expand Down

0 comments on commit abd8ccb

Please sign in to comment.