Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/damiencorpataux/micropython-mhask

Micropython HTTP Asynchronous Service like Flask
https://github.com/damiencorpataux/micropython-mhask

asyncio flask http-server microframework micropython rest uasyncio

Last synced: 2 days ago
JSON representation

Micropython HTTP Asynchronous Service like Flask

Awesome Lists containing this project

README

        

micropython-mhask
=================

Micropython HTTP Asynchronous Service like Flask

Install
-------
```sh
micropython -m upip install micropython-mhask
```

Usage
-----
```python3
app = mhask.App(__name__)

@app.route('/')
def index():
return 'Hello'

app.run()
```
See more examples at https://github.com/damiencorpataux/micropython-mhask/blob/master/examples.