mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Merge pull request #287 from crazyuploader/patch-1
Fix some typos and grammatical mistakes
This commit is contained in:
commit
6c0f6888fa
7 changed files with 12 additions and 12 deletions
|
|
@ -6,7 +6,7 @@
|
|||
[](https://pypi.python.org/pypi/aiogram)
|
||||
[](https://pypi.python.org/pypi/aiogram)
|
||||
[](https://pypi.python.org/pypi/aiogram)
|
||||
[](https://core.telegram.org/bots/api)
|
||||
[](https://core.telegram.org/bots/api)
|
||||
[](http://docs.aiogram.dev/en/latest/?badge=latest)
|
||||
[](https://github.com/aiogram/aiogram/issues)
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ AIOGramBot
|
|||
:target: https://pypi.python.org/pypi/aiogram
|
||||
:alt: Supported python versions
|
||||
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-4.5-blue.svg?style=flat-square&logo=telegram
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-4.6-blue.svg?style=flat-square&logo=telegram
|
||||
:target: https://core.telegram.org/bots/api
|
||||
:alt: Telegram Bot API
|
||||
|
||||
|
|
|
|||
|
|
@ -38,5 +38,5 @@ __all__ = [
|
|||
'utils'
|
||||
]
|
||||
|
||||
__version__ = '2.5.1dev1'
|
||||
__api_version__ = '4.5'
|
||||
__version__ = '2.6.1'
|
||||
__api_version__ = '4.6'
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ class Methods(Helper):
|
|||
"""
|
||||
Helper for Telegram API Methods listed on https://core.telegram.org/bots/api
|
||||
|
||||
List is updated to Bot API 4.5
|
||||
List is updated to Bot API 4.6
|
||||
"""
|
||||
mode = HelperMode.lowerCamelCase
|
||||
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ html_decoration = TextDecoration(
|
|||
quote=html.escape,
|
||||
)
|
||||
|
||||
MARKDOWN_QUOTE_PATTERN = re.compile(r"([_*\[\]()~`>#+\-|{}.!])")
|
||||
MARKDOWN_QUOTE_PATTERN = re.compile(r"([_*\[\]()~`>#+\-=|{}.!])")
|
||||
|
||||
markdown_decoration = TextDecoration(
|
||||
link="[{value}]({link})",
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ Welcome to aiogram's documentation!
|
|||
:target: https://pypi.python.org/pypi/aiogram
|
||||
:alt: Supported python versions
|
||||
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-4.5-blue.svg?style=flat-square&logo=telegram
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-4.6-blue.svg?style=flat-square&logo=telegram
|
||||
:target: https://core.telegram.org/bots/api
|
||||
:alt: Telegram Bot API
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ Using Pipenv
|
|||
|
||||
Using AUR
|
||||
---------
|
||||
*aiogram* is also available in Arch User Repository, so you can install this framework on any Arch-based distribution like ArchLinux, Antergos, Manjaro, etc. To do this, use your favorite AUR-helper and install `python-aiogram <https://aur.archlinux.org/packages/python-aiogram/>`_ package.
|
||||
*aiogram* is also available in Arch User Repository, so you can install this framework on any Arch-based distribution like ArchLinux, Antergos, Manjaro, etc. To do this, use your favorite AUR-helper and install the `python-aiogram <https://aur.archlinux.org/packages/python-aiogram/>`_ package.
|
||||
|
||||
From sources
|
||||
------------
|
||||
|
|
@ -52,7 +52,7 @@ You can speedup your bots by following next instructions:
|
|||
|
||||
$ pip install uvloop
|
||||
|
||||
- Use `ujson <https://github.com/esnme/ultrajson>`_ instead of default json module.
|
||||
- Use `ujson <https://github.com/esnme/ultrajson>`_ instead of the default json module.
|
||||
|
||||
*UltraJSON* is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3.
|
||||
|
||||
|
|
@ -64,9 +64,9 @@ You can speedup your bots by following next instructions:
|
|||
|
||||
- Use aiohttp speedups
|
||||
|
||||
- Use `cchardet <https://github.com/PyYoshi/cChardet>`_ instead of chardet module.
|
||||
- Use `cchardet <https://github.com/PyYoshi/cChardet>`_ instead of the chardet module.
|
||||
|
||||
*cChardet* is high speed universal character encoding detector.
|
||||
*cChardet* is a high speed universal character encoding detector.
|
||||
|
||||
**Installation:**
|
||||
|
||||
|
|
@ -94,4 +94,4 @@ You can speedup your bots by following next instructions:
|
|||
|
||||
$ pip install aiohttp[speedups]
|
||||
|
||||
In addition, you don't need do nothing, *aiogram* is automatically starts using that if is found in your environment.
|
||||
In addition, you don't need do anything, *aiogram* automatically starts using that if it is found in your environment.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue