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.6.3.tar.gz
(5.1 kB
view details)
Built Distribution
File details
Details for the file aiogram3_form-0.6.3.tar.gz
.
File metadata
- Download URL: aiogram3_form-0.6.3.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d66db332fa1ccdc6e40a174414dad86dd97d64d986464ca9178500d54e7ba914 |
|
MD5 | cbe4f34cf96f594c406ff69d66eebc6f |
|
BLAKE2b-256 | cb6f8ff654eb16414acc4ee1a7e6ef0e4f13dfa2f2ba79b25c8e9be8fbbb0085 |
File details
Details for the file aiogram3_form-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: aiogram3_form-0.6.3-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce672230dcfbe985568b85b55053e74346d7ab77e1a487e5e0edc77b5aa682ad |
|
MD5 | 61b2dc017291dc13a474d411472c5720 |
|
BLAKE2b-256 | 7d162128df1e18a8158dc3a30697472c023c37520ff42c796324f29000121ed6 |