Accessing remote MySQL database with peewee
问题 I'm trying to connect to a MySQL database on Amazon's RDS using peewee and I can't get it to work. I'm new to databases so I'm probably doing something stupid, but this is what I'm trying: import peewee as pw myDB = pw.MySQLDatabase(host="mydb.crhauek3cxfw.us-west-2.rds.amazonaws.com",port=3306,user="user",passwd="password",db="mydb") class MySQLModel(Model): """A base model that will use our MySQL database""" class Meta: database = myDB class User(MySQLModel): username = CharField() myDB