Updated readme #nolog
This commit is contained in:
18
README.md
18
README.md
@@ -1,7 +1,23 @@
|
||||
# microdot
|
||||
[](https://github.com/miguelgrinberg/microdot/actions) [](https://codecov.io/gh/miguelgrinberg/microdot)
|
||||
|
||||
A minimalistic Python web framework for microcontrollers inspired by Flask
|
||||
*“The impossibly small web framework for Python and MicroPython”*
|
||||
|
||||
Microdot is a minimalistic Python web framework inspired by Flask, and designed
|
||||
to run on systems with limited resources such as microcontrollers. It runs on
|
||||
standard Python and on MicroPython.
|
||||
|
||||
```python
|
||||
from microdot import Microdot
|
||||
|
||||
app = Microdot()
|
||||
|
||||
@app.route('/')
|
||||
def index(request):
|
||||
return 'Hello, world!'
|
||||
|
||||
app.run()
|
||||
```
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
Reference in New Issue
Block a user