I am trying to connect python to mysql database use SQLAlchemy engine and after overcoming a password parsing error/issue, I received this issue. I looked at the forums for similar issues and one of the recommendations is to go through BASH and see if I can connect to the server/database that way and I am able to do so.
engine = create_engine ( "mysql+mysqldb://{username}:{password}@{xxxxxx.mysql.pythonanywhere-services.com}:3306/{xxxxxxx$FORECAST_RESULTS}" )
xxxxx is where I changed the hostname for anonymity purposes. Any help would be great. Thank you.