I encounter mysql_exceptions.OperationalError: (2003 when connect to aws rds mysql.
host = "something.rds.amazonaws.com" (end point of aws)
pwd = "www"
dbname = "mydb"
user = "abc"
engine = mdb.connect(host='something.rds.amazonaws.com',user='abc',passwd='www',db='mydb',port=3306)
I am not sure what is going wrong.I have double check all the pw and username, it is correct.