コード例 #1
0
ファイル: server.py プロジェクト: zverham/cs6501_project
def annotation_results(url):
	annotation = reader.annotate(url)
	return render_template('index.html', annotation=annotation)
コード例 #2
0
ファイル: server.py プロジェクト: zverham/cs6501_project
def to_annotate(filename):
	annotation = reader.annotate(filename)
	return render_template('index.html', annotation=annotation)