DEV Community

Selva Ganapathi Arumugam
Selva Ganapathi Arumugam

Posted on

TamilPY Framework v0.1.10 is now available!

I'm thrilled to announce TamilPY Framework v0.1.10, introducing one of the biggest productivity updates yet! This release brings a visual Studio builder, starter project templates, incremental code generation, and a shared schema foundationβ€”making it faster than ever to build production-ready FastAPI applications.


🎨 TamilPY Studio

The headline feature of this release is TamilPY Studio β€” a visual application builder for designing your backend with an intuitive interface.

✨ Features include:

Visual Model Designer
Relations Canvas
Database Manager
Authentication Configuration
API Explorer
Schema Diff & Preview
Build Console with live progress
Starter Template Browser

Launch Studio with a single command:

tpy studio

No additional npm install requiredβ€”the React UI is pre-built and bundled with TamilPY.

πŸš€ Starter Templates

Kickstart new projects using ready-made templates:

CRM
Institute Admin
Inventory
Helpdesk
Blog CMS

Create a project instantly:

tpy new myapp --template crm

Templates include:

Schema definitions
Admin theme
Seed data
Project README
⚑ Incremental Code Generation

Generate only what you need without rebuilding the entire application.

New commands:

tpy make:model Invoice --fields "amount:float,status:enum(draft,paid)"
tpy make:controller Invoice
tpy make:service Invoice

Generated files now include checksum markers to protect manual changes.

πŸ—οΈ Shared Schema Foundation

A completely new schema infrastructure powers both the CLI and Studio.

βœ… Deterministic schema serialization

βœ… JSON AST bridge for tooling

βœ… Shared parse, serialize & validate API

βœ… Line-accurate validation errors

βœ… Helpful "Did you mean...?" suggestions

πŸ› οΈ More Improvements
Semantic validation before code generation
Bundled Studio UI with package distribution
Admin theme presets
Better project scaffolding
Faster developer workflow
πŸ“¦ Upgrade
pip install --upgrade "tamilPY[all]"
πŸ”— Resources

πŸ“¦ PyPI

https://pypi.org/project/tamilPY/

πŸ“– Documentation

https://selvaganapathiarumugam.github.io/tamilPY/

🎨 Studio Guide

https://selvaganapathiarumugam.github.io/tamilPY/studio.html

πŸ“š Starter Templates

https://selvaganapathiarumugam.github.io/tamilPY/templates.html

⚑ Make Commands

https://selvaganapathiarumugam.github.io/tamilPY/make-commands.html

TamilPY Framework continues to evolve into a complete schema-driven FastAPI development platform. With Studio, starter templates, and incremental code generation, v0.1.10 significantly streamlines application development while preserving the framework's schema-first philosophy.

As always, feedback, ideas, and contributions are welcome. Let's keep building together! πŸš€

Top comments (0)