A library for creating forms in aiogram3
Project description
aiogram3-form
A library for creating forms in aiogram3
pip install aiogram3-form
What is a form?
Form is a set of fields that you want your user to fill in. Forms are defined as classses derived from aiogram3_form.Form
and contain fields with annotated types and aiogram3_form.FormField
values. You should not inherit your form class from your another form class. (so no deep inheritance).
When you start your form with .start()
method, your bot will ask a user input values one by one until the end. Filling in the last field of a form means "submitting" it.
Forms use default aiogram FSM.
Minimal example
import asyncio
from aiogram import Bot, Dispatcher, F, Router
from aiogram3_form import Form, FormField
from aiogram.fsm.context import FSMContext
bot = Bot(token="YOUR_TOKEN")
dispatcher = Dispatcher()
router = Router()
dispatcher.include_router(router)
class NameForm(Form):
first_name: str = FormField(enter_message_text="Enter your first name please")
second_name: str = FormField(
enter_message_text="Enter your second name please",
filter=(F.text.len() > 10) & F.text,
)
age: int = FormField(enter_message_text="Enter age as integer")
@NameForm.submit(router=router)
async def name_form_submit_handler(form: NameForm):
# handle form submitted data
# also supports aiogram standart DI (e. g. middlewares, filter data, etc)
# you can do anything you want in here
await form.answer(f"{form.first_name} {form.second_name} of age {form.age}")
@router.message(F.text == "/form")
async def form_handler(_, state: FSMContext):
await NameForm.start(bot, state) # start your form
asyncio.run(dispatcher.start_polling(bot))
Keyboards
You can use any type of keyboard in your form, but only reply keyboards are actually useful. (cause forms only accept messages as input, so no callback queries)
FRUITS = ("Orange", "Apple", "Banana")
fruits_markup = (
ReplyKeyboardBuilder().add(*(KeyboardButton(text=f) for f in FRUITS)).as_markup()
)
class FruitForm(Form):
fruit: str = FormField(
enter_message_text="Pick your favorite fruit",
filter=F.text.in_(FRUITS) & F.text,
reply_markup=fruits_markup,
)
Form filters
Default filters are built in for types: str
(checks for mesasge text and returns it), int
(tries to convert message text to int), float
, datetime.date
, datetime.datetime
, aiogram.types.PhotoSize
, aiogram.types.Document
, aiogram.types.Message
Supported form filter kinds: sync function, async function, aiogram magic filter.
If your filter is a function (sync or async), it should take aiogram.types.Message
as the first argument and return False
, if it does not pass. If a filter passed, it should return the value you want in your form data.
Magic filters return None
on failure, so it's a special case that is handled differently.
If your filter fails and error_message_text
is provided in FormField
call, an error message will be sent with the provided text.
def sync_fruit_form_filter(message: types.Message) -> str:
if message.text not in FRUITS:
return False
return message.text
async def async_fruit_form_filter(
message: types.Message,
): ... # some async fruit filtering
class FruitForm(Form):
fruit: str = FormField(
enter_message_text="Pick your favorite fruit",
filter=sync_fruit_form_filter, # you can pass an async filter here as well
reply_markup=fruits_markup,
error_message_text="Thats an invalid fruit",
)
Enter callback
Enter callbacks enable you to write your own enter functions for form fields
async def enter_fruit_callback(chat_id: int, user_id: int, data: dict[str, Any]):
# do whatever you want in here
print(f"user {user_id} has just entered the fruit callback in chat {chat_id}!")
return await bot.send_message(
chat_id, "Hey, pick your favorite fruit please", reply_markup=fruits_markup
)
class FruitForm(Form):
fruit: str = FormField(
enter_callback=enter_fruit_callback,
filter=sync_fruit_form_filter,
error_message_text="Thats an invalid fruit",
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aiogram3_form-2.0.4.tar.gz
.
File metadata
- Download URL: aiogram3_form-2.0.4.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 056086a76063c37f7264463fd7a185c447c74de96a91971a9801dfe8f37027ed |
|
MD5 | 9c0df6107abd63024936c0de4fd51615 |
|
BLAKE2b-256 | 86d49c4fe39e00257cdad146b4cb59db22606763ced7e8e2b7b88467c4b5c18a |
File details
Details for the file aiogram3_form-2.0.4-py3-none-any.whl
.
File metadata
- Download URL: aiogram3_form-2.0.4-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3508ac32950af0b2e4a54fe410a8939e6d65512f5dc891b8a40d207c315d2e7c |
|
MD5 | 7244b89af861981dbd70ea40f34647f2 |
|
BLAKE2b-256 | 525dc8450c2672a017cfdefb190ba317e8b3d73ec529754fc59fb3a35f70f497 |