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 class Post(models.Model): title = models.CharField(max_length=200) content = models.TextField() created_at = models.DateTimeField(auto_now_add=True) def __str__(self): return self.title def run(): Post.objects.create(title="First Post", content="This is the first post") Post.objects.create(title="Second Post", content="This is the second post") Post.objects.create(title="Third Post", content="This is the third post") posts = Post.objects.all().order_by('-created_at') for post in posts: print(f"{post.created_at} - {post.title}") print('----') Post.objects.create(title="Fourth Post", content="This is the fourth post") posts = Post.objects.all().order_by('-created_at') for post in posts: print(f"{post.created_at} - {post.title}")
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