dhruvjain1512
dhruvjain1512
Users want environment variables to control color output. Today, colorama.init() ignores NO_COLOR and FORCE_COLOR, so tools cannot globally disable color or force it in CI without code changes. Implement env-aware...
Problem feature would solve: Users want Markdown heading ids that match GitHub-style anchors when using the toc extension. Today toc uses its default slugify which differs on underscores, punctuation, Unicode...
## 🚀 Feature Request: Conditional Query Builder Helpers for Optional Filters and Joins ### **Problem** Building dynamic queries with optional filters, joins, and conditions currently requires **repeated `if` checks** scattered...
## 🚀 Feature Request: Automatic Alias Deduplication for User-Selected Fields ### **Problem** When users select fields with identical aliases, the generated SQL can contain **duplicate column names**, causing: - Ambiguous...
## 🚀 Feature Request: Add `Query.as_table(name)` for Inline View (Derived Table) Support ### **Problem Statement** Currently, creating derived tables in SQL queries requires **verbose manual wrapping** using subqueries and string...
Add an access-control mixin that evaluates boolean expressions over a user's groups and permissions, so you don't have to stack multiple mixins. Example: group("editors") & (perm("blog.change_post") | perm("blog.add_post")). It must...
For any validator (including |, &, ~ compositions), return a structured trace of pass/fail with nested attempts, reasons, and failure paths. Proposed Solution: Implement explain_validation(validator, value) -> ValidationExplanation with root_attempt:...