Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
354 views
in Technique[技术] by (71.8m points)

python - Why use flask open_resource

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

From the docs:

Opens a resource from the application’s resource folder.

With app.open_resource, paths are always relative to the app's root (resource) folder. They may only be opened for reading, since it would be bad to be able to write to application files in production.

With open, relative paths are relative to the current directory. Files may be opened in any mode.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...