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
Release history Release notifications | RSS feed
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.1.tar.gz
(35.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dainty-0.6.1.tar.gz.
File metadata
- Download URL: dainty-0.6.1.tar.gz
- Upload date:
- Size: 35.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c65157c586c55520b8bef071d3a116aa66b5d22d4571d7f6e157fbb2634efcc4
|
|
| MD5 |
f6bb4561eacd7327fb5f72994986de44
|
|
| BLAKE2b-256 |
6a919a80d02b2931bec0747e80010dff881c192961b5aac4a633154c0325d9f4
|
File details
Details for the file dainty-0.6.1-py3-none-any.whl.
File metadata
- Download URL: dainty-0.6.1-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed172676747d61b255e39d195c801825efaf36e159de2e812e3e29865bdd81aa
|
|
| MD5 |
2481fcf59c2e2751d9e956b17dcd053e
|
|
| BLAKE2b-256 |
d6864f664c0170b81d6b6418228571ccbef4adcd2119cf0fc6e72baa582f4b44
|