A library to create forms in aiogram3
Project description
aiogram3-form
A library to create forms in aiogram3
Example
# suppose you import here your router and bot objects
from aiogram import F, types
from aiogram3_form import Form, FormField
class NameForm(Form, router=your_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)
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 bot.send_message(
event_chat.id, f"Your full name is {form.first_name} {form.second_name}!"
)
@router.message(F.text == "/form")
async def form_handler(message: types.Message, state: FSMContext):
await NameForm.start(state) # start your form
After submit callback call the state would be automatically cleared.
You can control this state using the following metaclass kwarg
...
class NameForm(Form, clear_state_on_submit=False): # True by default
...
@NameForm.submit()
async def name_form_submit_handler(form: NameForm, state: FSMContext):
# so you can set your exit state manually
await state.set_state(...)
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.3.2.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file aiogram3_form-0.3.2.tar.gz
.
File metadata
- Download URL: aiogram3_form-0.3.2.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 | f3a9bef9388858c97769284f4e2866ef4e66c327c21fd27ad55992ecc50170e7 |
|
MD5 | 3a1aa2f8cfa02f1cea464344b262bf1a |
|
BLAKE2b-256 | 9ef1ab6f8de13273e5332c53953d7072e07a3debd6cc8c6924d8662052a75168 |
File details
Details for the file aiogram3_form-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: aiogram3_form-0.3.2-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 | 0c5b1012b3a065e0db8f5cd910cc97fcfba4032949bc41aeaa935bb5ec004d17 |
|
MD5 | c11f45be21ddbd351a82bb8751649f60 |
|
BLAKE2b-256 | 8e8961abf9103b2e8ed7be3db42671eacb879fce4abafb7c2ac48bbfed360eae |