Show and tell: Lanes – A Flask‑like async web framework for MicroPython (now on uPyPi) #19269
SeaMite43981045
started this conversation in
Show and tell
Replies: 2 comments 8 replies
-
|
Congrats on releasing! However, I can't use mip to install; there's an error in your Also, the https://upypi.net/pkgs/lanes/1.0.0-pre URL is a 404. Finally, the community has a popular flask-like alternative in microdot; I, for one, would really appreciate having a comparison - what are the unique features of your library? |
Beta Was this translation helpful? Give feedback.
4 replies
-
|
Why wouldn’t I |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
TL;DR:
Lanesis a lightweight, asynchronous web framework for MicroPython with a familiar Flask‑like API. It now has a package on uPyPi – you can install it directly onto your device withmip🚀Hi everyone 👋,
I’m excited to share a project I’ve been working on: Lanes – a web framework for MicroPython designed to run efficiently on resource‑constrained devices like the ESP32, ESP8266, and RP2040.
It was built because I wanted a simple, Flask‑like way to build web interfaces and REST APIs directly on my IoT devices, without needing a separate server.
✨ Features
@app.get(),@app.post(), etc./user/:iddict/listas JSON.📦 Installation
Thanks to uPyPi, you can now install Lanes with a single line:
Remote install (inside REPL):
Local install (using mpremote):
Or simply copy
lanes.pyto your device's/libfolder.🚀 Quick Start
🔧 Status & Roadmap
The current release is 1.0.0-pre – stable for development and experimental on some boards.
Next steps:
urlencodedform parsingContent‑Lengthfor static filesI’d love your help with: testing on different devices, feedback on the API, and contributions (especially on the items above!)
🔗 Links
I’d really appreciate any feedback, bug reports, or ideas. If you end up using Lanes in one of your projects, I’d love to hear about it!
Thanks for reading 🙏
Beta Was this translation helpful? Give feedback.
All reactions