, 17 2015 . 14:34
+
Bottle - Python, - .
, , . , . , bottle web-, .
handler, , s3 - , bottle .
bottle , :
from bottle import route, run, template
@route('/hello/')
def index(name):
return template('Hello {{name}}!', name=name)
run(host='localhost', port=8080)
(
.)
(, ), , , . , , . CRUDL - -.
:
bottle plugin. .
→ http://habrahabr.ru/post/250831/
:
python
bottle