skillfed

WTForms-Components

Additional fields, validators and widgets for WTForms.

wtforms-components v0.11.0 112.5K downloads/30d#12,368 on PyPI67
Permissive license BSD Active released

What it is and what it does

WTForms-Components augments WTForms with a curated set of additional field types, validators, and widgets. It sits on top of WTForms and its dependencies (validators, intervals, MarkupSafe) to provide ready-made components that reduce boilerplate when building form-heavy web applications.

The package is designed for developers who find themselves repeatedly implementing the same custom fields or validation logic across projects. Rather than writing these from scratch each time, you import them from WTForms-Components. It has been maintained continuously since 2013-03-15 and supports Python 3.9, 3.10, 3.11, and 3.12, making it a stable choice for modern web development.

Use it for:

  • Add pre-built validators to form fields without writing custom validation logic from scratch
  • Use specialized field types for common web form inputs that WTForms doesn't provide out of the box
  • Render forms with enhanced widgets that produce cleaner or more functional HTML
  • Speed up form development in frameworks that use WTForms
  • Standardize form components across a large web application or team

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Extends WTForms with additional field types, validators, and widgets to simplify form building in web applications.

Yes. The package has low install friction, active maintenance as of 2026-05-19, no known vulnerabilities, and a permissive BSD license. It solves a real problem—reducing form boilerplate—for developers already using WTForms. Install it if you build web forms in Python and want to avoid reinventing common validators and field types.

Install

wtforms-components on PyPI

pip

pip install wtforms-components

uv

uv add wtforms-components

poetry

poetry add wtforms-components

Installing WTForms-Components

Before you install

Low install friction with a pure-Python wheel distribution. Actively maintained as of 2026-05-19, with continuous development since 2013-03-15.

License in practice

BSD license is permissive; you can use, modify, and distribute this package with minimal restrictions, provided you retain the license notice.

Quickstart

pip install wtforms-components

from wtforms_components import IntegerField
from wtforms import Form

class MyForm(Form):
    count = IntegerField()

Verify before relying

  • Specific list of additional field types, validators, and widgets provided beyond WTForms' standard set
  • Whether this package is compatible with all current WTForms versions or has version constraints

Package facts

License BSD (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 4 — WTForms, validators, intervals, MarkupSafe
Maintenance actively maintained — 637 days since the last release
Last repo commit
First released
Downloads 112,523/month — #12,368 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: WTForms_Components-0.11.0-py2.py3-none-any.whl

Environment :: Web EnvironmentIntended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Internet :: WWW/HTTP :: Dynamic ContentTopic :: Software Development :: Libraries :: Python Modules

Tags

wtforms field validatorswtforms custom widgetswtforms form componentsweb form validation pythonwtforms extensionsform field types wtformshtml form builder python
form-validationweb-framework-extension

More Python Modules packages