I'm using MySQL for my Flask application; but I need help for hiding the password in the MySQL user credentials
Currently it's like this
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
import pymysql
app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "mysql+pymysql://iaflask:Flask123@localhost/my_database"
Is there a way to hide the username:password (iaflask:Flask123) or at least just to hide the password within the code.