A library to create forms in aiogram3
Project description
aiogram3-form
A library to create forms in aiogram3
pip install aiogram3-form
Example
import asyncio
from aiogram import Bot, Dispatcher, F, Router, types
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, router=router):
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",
error_message_text="Age should be numeric!",
)
@NameForm.submit()
async def name_form_submit_handler(form: NameForm, event_chat: types.Chat):
# handle form data
# also supports aiogram standart DI (e. g. middlewares, filters, etc)
await form.answer(
f"{form.first_name} {form.second_name} of age {form.age} in chat {event_chat.title}"
)
@router.message(F.text == "/form")
async def form_handler(_, state: FSMContext):
await NameForm.start(bot, state) # start your form
async def main():
await dispatcher.start_polling(bot)
asyncio.run(main())
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
aiogram3_form-0.5.1.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file aiogram3_form-0.5.1.tar.gz
.
File metadata
- Download URL: aiogram3_form-0.5.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.0 CPython/3.10.8 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 885f3583acee483b102b9358272b92d90e0202626b3a8c947c87b63c30364133 |
|
MD5 | 6064a549ab701ff7291ec582dc3c04ff |
|
BLAKE2b-256 | 04376c80456c065a2979f6465654ba41fef166f9d319d7ae8fae75a8e95068fb |
File details
Details for the file aiogram3_form-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: aiogram3_form-0.5.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.0 CPython/3.10.8 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ed7c5798ea047b028e6d3825a48bdf075b15bf53ec18ea8aa02d3b45ed8362c |
|
MD5 | 3b649e5b0cd4734ebdf55b366bc5eebe |
|
BLAKE2b-256 | 675c797b4462919f06a2f8dc76db554aefdf7d033e8970404a10332394b99710 |