this post was submitted on 26 Jun 2024
7 points (100.0% liked)

Django

406 readers
1 users here now

Django Project

Django Community

Django Ecosystem

Jobs
Learning/Docs
Podcasts:
Related Fediverse communities
Feeds

founded 1 year ago
MODERATORS
 

Via https://mastodon.cloud/@radiac/112641898082821618

In my experience flask is great until it isn't - I've seen quite a few projects which outgrew it, and the lack of django's batteries and guard rails left a maintenance nightmare. Not sure if it'll be helpful, but as a result I wrote nanodjango, which lets you write a django site in a single file, then convert it to a full project if you outgrow it.

top 3 comments
sorted by: hot top controversial new old
[–] anzo@programming.dev 3 points 2 months ago

I must say, this is not only cute but convenient, and useful!

[–] norambna@programming.dev 2 points 1 week ago

https://mastodon.cloud/@radiac/113096990972136170

Nanodjango 0.8 is out, adding async view and ASGI support. Now you can write async single file scripts that look like Flask or FastAPI, but with all #django features like models, auth, admin etc.

[–] callcc@lemmy.world 1 points 2 months ago

Very interesting one. Although why not just make a nice template for your projects?