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.2.2.tar.gz
(5.3 kB
view details)
Built Distribution
File details
Details for the file aiogram3_form-0.2.2.tar.gz
.
File metadata
- Download URL: aiogram3_form-0.2.2.tar.gz
- Upload date:
- Size: 5.3 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 | c3370b32d04c7f2abce49a1b9d9cc91ab2d46558a605ce22d1999cc31f4728b3 |
|
MD5 | b876c0c066f7436fc5db423b8623102e |
|
BLAKE2b-256 | 2afada10d9caed8d3f589fe4a8b49fb25b025c10d86034f233a948055be59b49 |
File details
Details for the file aiogram3_form-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: aiogram3_form-0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.3 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 | a9b09b89e646ea017b45a0fb1ebffd51e9c34fe2b0da61508519e5d0e143872d |
|
MD5 | a7628b576d799a3c9e0acdb2812a06d0 |
|
BLAKE2b-256 | b9c210e1b47b65123e695cdb960e18329eeced0ad9c77cebae19b28582397572 |