You'll need something like this:
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://InsulT:password@mysql.server/InsulT$default'
...where password
is the password you set up on the "Databases" tab (not your web login password, and I recommend you make them different because having your web password in cleartext in your code would be a bad idea) and InsulT$default
is the name of the database you create on the "Databases" tab (all MySQL databases on PythonAnywhere have names starting with your username, then a dollar sign).
[edit: removed extra whitespace from sample code]