本文整理汇总了Python中song.Song.get_html方法的典型用法代码示例。如果您正苦于以下问题:Python Song.get_html方法的具体用法?Python Song.get_html怎么用?Python Song.get_html使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类song.Song
的用法示例。
在下文中一共展示了Song.get_html方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: preview_form
# 需要导入模块: from song import Song [as 别名]
# 或者: from song.Song import get_html [as 别名]
def preview_form(environ, start_response):
req = webob.Request(environ)
meta = {
'title': req.POST['title'].replace(':', '.'),
'subtitle': req.POST['subtitle'].replace(':', '.'),
'byline': req.POST['byline'].replace(':', '.')}
lines = [''] + req.POST['text'].split('\r\n')
song = Song(lines, meta)
if req.POST.get('action') == 'Save':
id = title_to_id(req.POST['title'])
Songs().write(id, song)
start_response("302 Found", [('Location', '/d/songs/' + id)])
return []
else:
start_response("200 OK", [('Content-type', 'text/html')])
return [song.get_html()]
示例2: preview_text
# 需要导入模块: from song import Song [as 别名]
# 或者: from song.Song import get_html [as 别名]
def preview_text(environ, start_response):
song = Song(read_request_body(environ))
start_response("200 OK", [('Content-type', 'text/html')])
return [song.get_html()]