I was trying to use flask-uploads module but I found in the thread:
That I should go with flask-reuploaded module to fix the error:
import name 'secure_filename' from 'werkzeug' (c:\users\gabri\desktop\shop\venv\lib\site-packages\werkzeug\__init__.py)
It says in the thread that I don't have to change a line of code but I dont know how to import the module properly, because when I try
from flask_uploads import UploadSet I get
No module named 'flask_uploads'
and if I try any variation of from flask-reuploaded import UploadSet It cannot find the proper library to import
I didn't find anything about it in documentation can you please help?