以mysql為例,這樣就使得url就是加密的,且不用再管特殊字元。
from sqlalchemy import URL out_config={'host':'localhost','port':3306,'user':'root','passwd':'****'} OUT_SQLALCHEMY_DATABASE_URL=URL.create( drivername="mysql+pymysql", username=out_config.get('user'), password=out_config.get('passwd'), host=out_config.get('host'), port=out_config.get('port'), database='***',)