We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7b2c4 commit 6275938Copy full SHA for 6275938
README.md
@@ -17,6 +17,7 @@ Framework | Requests/Sec | Average Latency
17
[Zewo](https://github.com/Zewo/Zewo) | 4948 | 31.02 ms
18
[Flask + Tornado](https://github.com/tornadoweb/tornado) | 1805 | 81.79 ms
19
[Sinatra](https://github.com/sinatra/sinatra) | 974 | 203.71 ms
20
+[Bottle](https://github.com/bottlepy/bottle) | 546 | 1.38ms
21
[Flask](https://github.com/pallets/flask) | 544 | 74.15 ms
22
[Falcon](https://github.com/falconry/falcon) | 543 | 47.06 ms
23
bottle/app.py
@@ -0,0 +1,7 @@
1
+from bottle import route, run
2
+
3
+@route('/hello')
4
+def index():
5
+ return "Hello, World!"
6
7
+run(host='localhost', port=8080)
0 commit comments