mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
Mooore doc's.
This commit is contained in:
parent
68eff96798
commit
595caaa458
12 changed files with 455 additions and 7 deletions
|
|
@ -1,9 +1,9 @@
|
|||
API Reference
|
||||
=============
|
||||
aiogram.bot.Bot
|
||||
===============
|
||||
|
||||
For detailed information about parameters read the official `Telegram Bot API reference <https://core.telegram.org/bots/api>`_
|
||||
|
||||
|
||||
.. automodule:: aiogram.bot
|
||||
.. automodule:: aiogram.bot.bot
|
||||
:members:
|
||||
:show-inheritance:
|
||||
12
docs/source/aiogram.rst
Normal file
12
docs/source/aiogram.rst
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
API Reference
|
||||
=============
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
|
||||
.. toctree::
|
||||
|
||||
aiogram.bot.BaseBot
|
||||
aiogram.bot.Bot
|
||||
aiogram.types
|
||||
269
docs/source/aiogram.types.rst
Normal file
269
docs/source/aiogram.types.rst
Normal file
|
|
@ -0,0 +1,269 @@
|
|||
Data types
|
||||
==========
|
||||
|
||||
Bases
|
||||
-----
|
||||
:class:`aiogram.types.base.Serializable`
|
||||
|
||||
:class:`aiogram.types.base.Deserializable`
|
||||
|
||||
.. automodule:: aiogram.types.base
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Update
|
||||
------
|
||||
:class:`aiogram.types.Update`
|
||||
|
||||
.. automodule:: aiogram.types.update
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
WebhookInfo
|
||||
-----------
|
||||
:class:`aiogram.types.WebhookInfo`
|
||||
|
||||
.. automodule:: aiogram.types.webhook_info
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
User
|
||||
----
|
||||
:class:`aiogram.types.User`
|
||||
|
||||
.. automodule:: aiogram.types.user
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Chat
|
||||
----
|
||||
:class:`aiogram.types.Chat`
|
||||
|
||||
.. automodule:: aiogram.types.chat
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Message
|
||||
-------
|
||||
:class:`aiogram.types.Message`
|
||||
|
||||
.. automodule:: aiogram.types.message
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
MessageEntity
|
||||
-------------
|
||||
:class:`aiogram.types.MessageEntity`
|
||||
|
||||
.. automodule:: aiogram.types.message_entity
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
|
||||
PhotoSize
|
||||
---------
|
||||
:class:`aiogram.types.PhotoSize`
|
||||
|
||||
.. automodule:: aiogram.types.photo_size
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Audio
|
||||
-----
|
||||
:class:`aiogram.types.Audio`
|
||||
|
||||
.. automodule:: aiogram.types.audio
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Document
|
||||
--------
|
||||
:class:`aiogram.types.Document`
|
||||
|
||||
.. automodule:: aiogram.types.document
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Sticker
|
||||
-------
|
||||
:class:`aiogram.types.Sticker`
|
||||
|
||||
.. automodule:: aiogram.types.sticker
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Video
|
||||
-----
|
||||
:class:`aiogram.types.Video`
|
||||
|
||||
.. automodule:: aiogram.types.video
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Voice
|
||||
-----
|
||||
:class:`aiogram.types.Voice`
|
||||
|
||||
.. automodule:: aiogram.types.voice
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
VideoNote
|
||||
---------
|
||||
:class:`aiogram.types.VideoNote`
|
||||
|
||||
.. automodule:: aiogram.types.video_note
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Contact
|
||||
-------
|
||||
:class:`aiogram.types.Contact`
|
||||
|
||||
.. automodule:: aiogram.types.contact
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Location
|
||||
--------
|
||||
:class:`aiogram.types.Location`
|
||||
|
||||
.. automodule:: aiogram.types.location
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Venue
|
||||
-----
|
||||
:class:`aiogram.types.Venue`
|
||||
|
||||
.. automodule:: aiogram.types.venue
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
UserProfilePhotos
|
||||
-----------------
|
||||
:class:`aiogram.types.UserProfilePhotos`
|
||||
|
||||
.. automodule:: aiogram.types.user_profile_photos
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
File
|
||||
----
|
||||
:class:`aiogram.types.File`
|
||||
|
||||
.. automodule:: aiogram.types.file
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
ReplyKeyboardMarkup & KeyboardButton & ReplyKeyboardRemove
|
||||
----------------------------------------------------------
|
||||
:class:`aiogram.types.ReplyKeyboardMarkup`
|
||||
|
||||
:class:`aiogram.types.KeyboardButton`
|
||||
|
||||
:class:`aiogram.types.ReplyKeyboardRemove`
|
||||
|
||||
.. automodule:: aiogram.types.reply_keyboard
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
InlineKeyboardMarkup & InlineKeyboardButton
|
||||
-------------------------------------------
|
||||
:class:`aiogram.types.InlineKeyboardMarkup`
|
||||
|
||||
:class:`aiogram.types.InlineKeyboardButton`
|
||||
|
||||
.. automodule:: aiogram.types.inline_keyboard
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
CallbackQuery
|
||||
-------------
|
||||
:class:`aiogram.types.CallbackQuery`
|
||||
|
||||
.. automodule:: aiogram.types.callback_query
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
ForceReply
|
||||
----------
|
||||
:class:`aiogram.types.ForceReply`
|
||||
|
||||
.. automodule:: aiogram.types.force_reply
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
ChatMember
|
||||
----------
|
||||
:class:`aiogram.types.ChatMember`
|
||||
|
||||
.. automodule:: aiogram.types.chat_member
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Inline mode objects
|
||||
-------------------
|
||||
|
||||
.. automodule:: aiogram.types.inline_query
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.chosen_inline_result
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.inline_query_result
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
Payments
|
||||
--------
|
||||
|
||||
.. automodule:: aiogram.types.labeled_price
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.invoice
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.shipping_address
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.order_info
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.shipping_option
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.successful_payment
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.shipping_query
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.pre_checkout_query
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
|
||||
Games
|
||||
-----
|
||||
|
||||
.. automodule:: aiogram.types.game
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.animation
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
||||
.. automodule:: aiogram.types.game_high_score
|
||||
:members:
|
||||
:show-inheritance:
|
||||
|
|
@ -53,7 +53,7 @@ Contents
|
|||
.. toctree::
|
||||
install
|
||||
quick_start
|
||||
api
|
||||
aiogram
|
||||
features
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue