You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ pip install flask-file-upload
21
21
#### General Flask config options
22
22
(Important: The below configuration variables need to be set before initiating `FileUpload`)
23
23
````python
24
+
from flask_file_upload.file_upload import FileUpload
25
+
from os.path import join, dirname, realpath
26
+
24
27
# This is the directory that flask-file-upload saves files to. Make sure the UPLOAD_FOLDER is the same as Flasks's static_folder or a child. For example:
0 commit comments