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
title = "this is pretty awesome" STOPWORDS = ["is", "awesome"] def original(): result = [] for i, word in enumerate(title.split()): lw = word.lower() if i == 0 or lw not in STOPWORDS: result.append(word.capitalize()) else: result.append(lw) return result def updated(): first, *rest = title.lower().split() result = [first.capitalize()] for word in rest: if word not in STOPWORDS: result.append(word.capitalize()) else: result.append(word) return result def run(): assert ['This', 'is', 'Pretty', 'awesome'] == original() assert ['This', 'is', 'Pretty', 'awesome'] == updated()
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