flask-share
flask-share copied to clipboard
ImportError: cannot import name 'Markup' from 'flask'
Kindly change the import code below in the init.py from: from flask import current_app, request, Blueprint, url_for, Markup
to: from flask import current_app, request, Blueprint, url_for, from markupsafe import Markup
This will solve the ImportError been experienced when running flask 3.0.0 and above