stubs/django/forms/__init__.pyi (12 lines of code) (raw):

# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from django.core.exceptions import ValidationError as ValidationError from django.forms.fields import BooleanField as BooleanField, EmailField as EmailField from django.forms.forms import Form as Form from django.forms.models import ModelForm as ModelForm from django.forms.widgets import ( CheckboxInput as CheckboxInput, EmailInput as EmailInput, HiddenInput as HiddenInput, NumberInput as NumberInput, TextInput as TextInput, URLInput as URLInput, )