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.5.0.tar.gz (31.8 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.5.0-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for dainty-0.5.0.tar.gz
Algorithm Hash digest
SHA256 82a743b3da435eb7a996242146b7f9258199abc576a98b3e98c996a4980a8893
MD5 f6bf7e620e0c4efd909534646856570c
BLAKE2b-256 be04226bcb89bad25b36fc6aa527f87789f24e4e2ff0dc572ddb2c021cd0055a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dainty-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7f4e11ec4fecab4fc164329e50bbcd17f447f1187a852fe2ce43432aec656901
MD5 bc4bcd6139fb54dfbfe2203f896bbdc5
BLAKE2b-256 ad547cc0be39710f931ae854a0c5939a2b8666a8c75bdb089dc3a4c60da119f6

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