while reading flask api documentation, I came across this open_resource method that opens file, like this
with app.open_resource('schema.sql') as f:
contents = f.read()
do_something_with(contents)
but why not just do this?
with open('schema.sql') as f:
contents = f.read()
do_something_with(contents)
I want to see a use case where app.open_resource could do something that open can't already do
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…