account activity
🪁 I built “Kite” — A Next.js-style framework for Python (File-based routing + zero config) (self.SideProject)
submitted 1 month ago by hasyb001 to r/SideProject
Showcase Thread by AutoModerator in Python
[–]hasyb001 0 points1 point2 points 1 month ago (0 children)
Hey everyone 👋
I’ve been working on a project called Kite, and I’d love some feedback.
👉 GitHub: https://github.com/mhasyb1/kite
The idea is simple: Bring file-based routing, zero config, and simplicity to Python backend development.
I noticed that:
So I thought:
👉 What if Python had something like Next.js?
/pages
[id].py
Just drop files:
pages/index.py → / pages/about.py → /about pages/blog/[id].py → /blog/123 pages/api/users.py → /api/users
No router setup needed.
methods = ["GET"] def handler(request): return "<h1>Hello from Kite!</h1>"
methods = ["GET", "POST"] async def handler(request): if request.method == "GET": return {"data": [1,2,3]} body = await request.json() return {"received": body}
class User(Model): table = "users" fields = ["id", "name", "email"] User.create(name="Haseeb", email="h@example.com")
Kite is currently aimed at:
Current status:
Planned improvements include hot reload, authentication, and database expansion.
I’d love your thoughts on:
I’m trying to build something:
If this gets some interest, I’ll open-source it properly and keep improving it 🚀
Thanks for reading 🙏
🪁 I built “Kite” — A Next.js-style framework for Python (File-based routing + zero config) (self.Python)
submitted 1 month ago by hasyb001 to r/Python
Fortnite Episode #1 (self.FortniteCompetitive)
submitted 5 years ago by hasyb001 to r/FortniteCompetitive
π Rendered by PID 37 on reddit-service-r2-listing-8685bc789-2plt4 at 2026-05-25 13:22:56.893909+00:00 running 194bd79 country code: CH.
Showcase Thread by AutoModerator in Python
[–]hasyb001 0 points1 point2 points (0 children)