Skip to main content

Create HTML boilerplate from pydantic models

Project description

Dainty

Dainty is a simple, plug and play extension of pydantic, that allows you to easily create HTML input elements based on your pydantic models.

Installation

uv add dainty

Usage

from typing import Literal

from pydantic import Field

from dainty import DaintyModel
from dainty.dainty import DaintyForm


class MyModel(DaintyModel):
    name: str
    age: int = Field(ge=20, lt=40)
    gender: Literal["Male", "Female", "Non Binary", "Other"]

    dainty_form = DaintyForm(target_url="/submit")


print(MyModel.to_html(form=True))

This will generate the following HTML:

<form>
  <label for="name">Name: </label>
  <input type="text" name="name" id="name" value="" required />
  <br /><br />
  <label for="age">Age: </label>
  <input
    type="number"
    name="age"
    id="age"
    value=""
    step="1"
    min="20"
    max="39"
    required
  />
  <br /><br />
  <label for="gender">Gender: </label>
  <select name="gender" id="gender" required>
    <option value="Male">Male</option>
    <option value="Female">Female</option>
    <option value="Non Binary">Non Binary</option>
    <option value="Other">Other</option>
  </select>
  <br /><br />
  <input type="submit" value="Submit" method="post" formaction="/submit" />
</form>

TODO:

  • Add support for more field types
  • Move inputs inside labels for better clickability
  • More customization options for DaintyForm
  • More html boilerplate elements, such as div containers

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

dainty-0.6.0.tar.gz (35.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dainty-0.6.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file dainty-0.6.0.tar.gz.

File metadata

  • Download URL: dainty-0.6.0.tar.gz
  • Upload date:
  • Size: 35.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.26

File hashes

Hashes for dainty-0.6.0.tar.gz
Algorithm Hash digest
SHA256 5559cf9691dd53eacad500c9cc4ef6ce198074feffc0aa32af6e7be5d7abc3bc
MD5 1dd41a11e94cd231afd1852e62e5c863
BLAKE2b-256 21cbd289057fb525be6b9d1df4db463d35bca2af77973a54e56735042f7bdf94

See more details on using hashes here.

File details

Details for the file dainty-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: dainty-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.26

File hashes

Hashes for dainty-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8f2a1e861fc3b03135c700499e6f6b2437aefbfeacb915a965b0cc9b0a317b3e
MD5 9fdd899e61251b1e5432b4f149d2df96
BLAKE2b-256 7dafb5a6d4124f3277a66ac5252b825af8b93f94b4ce0dac5d2830942aaca632

See more details on using hashes here.

Supported by

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