bottle正则表达式匹配 编程语言 bottle python 发布时间 : 2020-07-17 00:00 字数:41 阅读 : 12345678910from bottle import route, runimport re@route('/re/<num:re:[0-1]*>')def getbinary(num=0): return num#匹配2进字符串#匹配失败则返回404run(port=8088, debug=True, reloader=True) 转载请注明来源 https://tianweiye.github.io