DryORM
Code
Result
no cache
SQLite
PostgreSQL 17.4
MariaDB 11.4.5
Select a template
dryorm features
basic
bulk create
bulk fake
csv import
basic fk
self fk
user profile
dryorm tabular output
from django.db import models from django import forms class Person(models.Model): name = models.CharField(max_length=100, default="hello") age = models.IntegerField(default=10) class PersonForm(forms.ModelForm): class Meta: model = Person fields = ['name', 'age'] def run(): initial_form = PersonForm() print(initial_form.instance.name) print(initial_form.instance.age)
Output
Show Template
No output.
Queries
TCL
T
DDL
D
SELECT
S
INSERT
I
UPDATE
U
DELETE
D
Queries
Q
(
0
)
No queries.
✖ Close
Save & Share
✖
private?
Save
Save & Copy