Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/damiencorpataux/micropython-mhask
- Owner: damiencorpataux
- License: gpl-3.0
- Created: 2019-12-05T13:41:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T17:37:52.000Z (almost 5 years ago)
- Last Synced: 2024-08-08T22:37:39.470Z (3 months ago)
- Topics: asyncio, flask, http-server, microframework, micropython, rest, uasyncio
- Language: Python
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.