How to accept strings with special characters in them?
14 views
Skip to first unread message
peng...@gmail.com
unread,
Sep 23, 2018, 8:00:12 AM9/23/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to bottlepy
I use the following bottle code.
@route('/hello/<name>')
def index(name): print name return template('<b>Hello {{name}}</b>!', name=name)
run(host='localhost', port=8080)
Neither of the following wget command will return a name with slash in it. Does anybody know how to allow it take strings with special characters like slashes? Thanks.