How do i display a blob content from SQL into html page
I am trying to display data from the SQL table onto the html page My data is a MEDIUMBLOB type data main.py @app.route("/text") def text(): def generate(): if 'name' in request.form: cursor = mysql.connection.cursor(MySQLdb.cursors.DictCursor) name = request.form['name'] here = cursor.execute("SELECT…