Skip to main content

Forms for aiogram

Project description

aiogram-forms

Introduction

aiogram-forms is an addition for aiogram which allows you to create different forms and process user input step by step easily.

Installation

pip install aiogram-forms

Usage

Create form you need by subclassing aiogram_forms.forms.Form. Fields can be added with aiogram_forms.fields.Field

from aiogram_forms import forms, fields

class UserForm(forms.Form):
    """User profile data form"""
    name = fields.StringField('Name')
    language = fields.StringField('Language', choices=('English', 'Russian', 'Chinese'))
    email = fields.EmailField('Email')

Code of Conduct

History

All notable changes to this project will be documented in CHANGELOG file.

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

aiogram-forms-0.1.0.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

aiogram_forms-0.1.0-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

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