私は次のことを達成するためにフラスコを使用しようとしています。
ローカルディスクにファイルがあります。その大きなファイルです。そのため、そのファイルの上位20行を読み取りたいだけです。
ファイルを読み取ってその内容をブラウザに表示するにはどうすればよいですか?
任意のポインタ..提案。ありがとう
このようなものは、動作するはずです
import webbrowser
# firstly you need to make write to an html file that will have the top 20 lines
# you can do that using
top_lines_file = open("shows.html", "w")
i = 1
while i in range(1,21):
top_lines_file.write("write something to the file")
i += 1
# this will iterate over the file and write to it 20 times
top_lines_file.close() # close the file
# now you need to pass the path of the html file to the webbrowser object
webbrowser.open("file://" + path/to/the/html/file)
# this will open the webbrowser with your html file