The Impossible Web Framework For Python

Manpreet Singh
2 min readFeb 20, 2023

Welcome back! Python is an amazing programming language with a bunch of capability, one of the best features of this language is actually vast array of web frameworks we have! However, there is a newer web framework you need to check out! This is the microdot framework, it’s an impossibly small web framework for Python! Here is a link to their GitHub page:

This specific web framework is inspired by Flask (another web framework for Python), this specific framework is supposed to run on machine with limited resources, they mention microcontrollers as an example. Here is an example command of how this framework works:

from microdot import Microdot

app = Microdot()

@app.route('/')
def index(request):
return 'Hello, world!'

app.run()

If you want to install this framework, you can use the following pip command:

pip install microdot

There you have it! Do you plan on checking this framework out? I would love to hear your thoughts about this!

Thanks So Much!

Feel free to connect via Twitter if you have any thoughts or questions:

Thanks so much for your support!

--

--

Manpreet Singh
Manpreet Singh

Responses (1)