I'm transferring from an sqlite database to MySql and am having some trouble creating the database.
Since python 3 does not support MySql I am using PyMySql
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://<username>:<password>@<Database host address>/<database name>
ERROR MESSAGE: sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on 'ilankessler.mysql.pythonanywhere-services.com' ([Errno 60] Operation timed out)")
note: the Database host address is 'ilankessler.mysql.pythonanywhere-services.com'