mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Small changes in documentation
This commit is contained in:
parent
9f902ef232
commit
74db2c47e6
8 changed files with 88 additions and 52 deletions
|
|
@ -23,3 +23,4 @@ Dispatcher is subclass of router and should be always is root router.
|
|||
class_based_handlers/index
|
||||
filters/index
|
||||
filters/magic_filters
|
||||
middlewares
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ aiogram
|
|||
:target: https://pypi.python.org/pypi/aiogram
|
||||
:alt: Supported python versions
|
||||
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-4.9-blue.svg?logo=telegram
|
||||
.. image:: https://img.shields.io/badge/Telegram%20Bot%20API-5.2-blue.svg?logo=telegram
|
||||
:target: https://core.telegram.org/bots/api
|
||||
:alt: Telegram Bot API
|
||||
|
||||
|
|
|
|||
|
|
@ -12,53 +12,31 @@ Using PIP
|
|||
|
||||
pip install -U aiogram
|
||||
|
||||
Using AUR
|
||||
---------
|
||||
|
||||
Using poetry
|
||||
------------
|
||||
*aiogram* 2.x is also available in Arch Linux Repository, so you can install this framework
|
||||
on any Arch-based distribution like Arch Linux, Antergos, Manjaro, etc.
|
||||
|
||||
To do this, just use pacman to install the *python-aiogram* package:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
poetry add aiogram
|
||||
|
||||
|
||||
Using Pipenv
|
||||
------------
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pipenv install aiogram
|
||||
|
||||
Using poetry
|
||||
------------
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
poetry add aiogram
|
||||
|
||||
Using Pacman
|
||||
------------
|
||||
*aiogram* is also available in Arch Linux Repository, so you can install this framework on any
|
||||
Arch-based distribution like Arch Linux, Antergos, Manjaro, etc. To do this, just use pacman
|
||||
to install the `python-aiogram <https://archlinux.org/packages/community/any/python-aiogram/>`_ package:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pacman -S python-aiogram
|
||||
$ pacman -S python-aiogram
|
||||
|
||||
Development build (3.x)
|
||||
=======================
|
||||
|
||||
From private PyPi index
|
||||
From test PyPi index
|
||||
-----------------------
|
||||
|
||||
On every push to the `dev-3.x` branch GitHub Actions build the package and publish
|
||||
to the `2038.host <https://aiogram.2038.io/simple>`_ server with seems like official PyPi files structure.
|
||||
That's mean you can always install latest (may be unstable) build via next command:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pip install --extra-index-url https://dev-docs.aiogram.dev/simple --pre aiogram
|
||||
pip install -U --extra-index-url https://test.pypi.org/simple/ --pre aiogram
|
||||
|
||||
From GitHub
|
||||
-----------
|
||||
|
||||
In this repository available only last success build. All previous builds is always removes
|
||||
before uploading new one. Also before building this package all tests is also pass.
|
||||
.. code-block:: bash
|
||||
|
||||
pip install https://github.com/aiogram/aiogram/archive/refs/heads/dev-3.x.zip
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue