From 70d983fbca37adac973127dcb425652a12b20d1f Mon Sep 17 00:00:00 2001 From: PyMaster <59120866+pystorage@users.noreply.github.com> Date: Thu, 11 Jun 2020 20:15:43 +0300 Subject: [PATCH] Add files via upload --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index c42709f..fa8d32d 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ ![PyPI](https://img.shields.io/pypi/v/pykeyboard) [![Downloads](https://pepy.tech/badge/pykeyboard)](https://pepy.tech/project/pykeyboard) ![GitHub](https://img.shields.io/github/license/pystorage/pykeyboard) + ## Installation @@ -22,6 +23,10 @@ pip install pykeyboard from pykeyboard import InlineKeyboard ``` +#### Parameters: + +- row_width (integer, default 3) + #### Inline Keyboard add buttons ##### Code @@ -79,6 +84,13 @@ keyboard.row( from pykeyboard import ReplyKeyboard ``` +#### Parameters: + +- resize_keyboard (bool, optional) +- one_time_keyboard (bool, optional) +- selective (bool, optional) +- row_width (integer, default 3) + #### Reply Keyboard add buttons ##### Code @@ -131,6 +143,12 @@ keyboard.row(KeyboardButton('5', 'reply_keyboard#5')) from pykeyboard import InlinePaginationKeyboard ``` +#### Parameters: + +- count_pages (integer) +- current_page (integer) +- callback_pattern (string) - use of the {number} pattern is required + #### Pagination 3 pages ##### Code