We still need tests for python-pycurl.
Signed-off-by: Algent Albrahimi <algent@protonmail.com>
Differential D10398
Enable python2 support for python-bottle Authored by algent on Jan 20 2021, 6:07 PM. Tags None Referenced Files
Subscribers
Details
We still need tests for python-pycurl. Signed-off-by: Algent Albrahimi <algent@protonmail.com>
from bottle import route, run, template
@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!', name=name)
run(host='localhost', port=8080)and then open this link http://localhost:8080/hello/world
Diff Detail
|