Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/metachris/micropython-minimal-webserver-asyncio3
Minimal MicroPython webserver / TCP connection handler using uasyncio v3 (MicroPython 1.13+), with fallback for earlier versions of uasyncio / MicroPython
https://github.com/metachris/micropython-minimal-webserver-asyncio3
micropython webserver
Last synced: 15 days ago
JSON representation
Minimal MicroPython webserver / TCP connection handler using uasyncio v3 (MicroPython 1.13+), with fallback for earlier versions of uasyncio / MicroPython
- Host: GitHub
- URL: https://github.com/metachris/micropython-minimal-webserver-asyncio3
- Owner: metachris
- Created: 2020-12-03T11:21:52.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T15:02:40.000Z (about 4 years ago)
- Last Synced: 2024-05-01T12:17:05.803Z (8 months ago)
- Topics: micropython, webserver
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Minimal MicroPython webserver, using uasyncio v3 (MicroPython 1.13+), with a fallback for earlier versions of uasyncio/MicroPython.
---
A simple TCP server that reads request line and headers, and sends a HTTP 1.0 response.
For a more fully featured webserver, I recommend [tinyweb](https://github.com/belyalov/tinyweb) (and [picoweb](https://github.com/pfalcon/picoweb) for pycopy).
* License: MIT
* Author: Chris Hager / twitter.com/metachris
* Repository: https://github.com/metachris/micropython-minimal-webserver-asyncio3References:
- http://docs.micropython.org/en/latest/library/uasyncio.html
- https://github.com/peterhinch/micropython-async/blob/master/v3/README.md
- https://github.com/peterhinch/micropython-async/blob/master/v3/docs/TUTORIAL.md
- https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5