user3450198
user3450198

Reputation: 39

Read/Write Mysql DB using Python API

Is there any Python API that will allow me to interact with a remote MySQL db (running on RDS) in a transactional manner (read, write)? I believe this can be done using Boto for DynamoDB but I couldn't find anything similar for MySQL. Any suggestions?

Thanks, Bucho

Upvotes: 0

Views: 140

Answers (1)

Moises Rezonzew
Moises Rezonzew

Reputation: 175

There is no such thing in Boto, The easiest and simplest library to interact with MySQL using python in my opinion is MySQLdb.

Upvotes: 1

Related Questions