Skip to content

The Developer Experience Dream

- To Master A Web Framework In 30 Minutes Or Less

Heaven was born from a simple dream: You shouldn't need a PhD in web development to build an enterprise web application

Web development is like a chess board. Many frameworks expect you to be at the level of Magnus Carlsen before you can play (create) a legendary game (web application).

Other frameworks are like a crowded room shouting suggestions at you. They try to be everything for everyone. They bury you in layers of abstraction until you forget what HTTP looks like.

Heaven is different.

It gives you raw, unadulterated power and gets out of your way immediately with a syntax designed for an average developer to understand in 30 minutes or less.


yourapp/app.py

from heaven import Router

# create the application
app = Router()

# define a route and tell heaven where it can find your handler
app.GET('/v1/games/:id', 'controllers.games.play_a_game')


yourapp/controllers/games.py

def play_a_game(req, res, ctx):
  res.body = 'Checkmate.'


Why Another Python Framework?

Tired of Flask's thread-local magic and aging internals. Tired of Django's monolithic weight. Tired of FastAPI's dependency injection labyrinth?

Looking for something Powerful and lightning Fast. A framework that You won't spend months learning, cos life is too short - and more importantly years mastering?

... then you belong in Heaven.

Your 30-Minute Path to Mastery

Because Heaven relies on standard Python and pure HTTP concepts, you don't need a 500-page manual. You need 30 minutes.

Advanced Topics


Ready to Play?

$ pip install heaven
from heaven import App

# For instance if this app could talk it might tell you:
# Hello my name is `your-app` - I am a Python web application
# I spend my time serving web requests and 
# when I am free - I spend my time dreaming of becoming a chess engine
app = App()

# The move is yours.
app.GET('/', lambda req, res, ctx: res.json({'message': 'Checkmate.'}))