i have used flask_mysqldb module for my flask app and i uploaded it to pythonanywhere with using git but there is an error message called "Error running WSGI application ModuleNotFoundError: No module named 'flask_mysqldb'" i use free mysql hosting not local server actually but that doesn't solve anything
my code like that
app = Flask(__name__)
app.secret_key = "ybblog"
app.config["MYSQL_HOST"] = "remotemysql.com" #başka sunucuda localde olmayan çalışsaydı onun adresi yazılmalı
app.config["MYSQL_USER"] = "cZ4zHMzalt"
app.config["MYSQL_PASSWORD"] = "MkHisCk3EJ"
app.config["MYSQL_DB"] = "cZ4zHMzalt"
app.config["MYSQL_PORT"] = 3306
app.config["MYSQL_CURSORCLASS"] = "DictCursor"