Skip to main content

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


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.1.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

aiogram3_form-0.1.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file aiogram3_form-0.1.0.tar.gz.

File metadata

  • Download URL: aiogram3_form-0.1.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.0 CPython/3.10.8 Windows/10

File hashes

Hashes for aiogram3_form-0.1.0.tar.gz
Algorithm Hash digest
SHA256 93864a5bb87681acd23e0eeb6a7bd42ce48d1128acb2997817e350d9501911ad
MD5 cc18561a3047b19fe290c437483f9efd
BLAKE2b-256 3581dfd9d792d4145ce100b0f1caaae982eeb4268a394a91d5ec57cb71408a38

See more details on using hashes here.

File details

Details for the file aiogram3_form-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: aiogram3_form-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.0 CPython/3.10.8 Windows/10

File hashes

Hashes for aiogram3_form-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c82d3338fc686ceafa58a05e09d9a86f9405db89f29e40c49ffa8d2cb585881f
MD5 fde9749c74ca16ab20948ea1e8fb9284
BLAKE2b-256 9d6e36ea46679bf14083960025013839ed422101f127eb1a6818492a17c9738f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page