[ad_1]
Try
import MySQLdb
db = MySQLdb.connect(host="localhost",
user="user",
passwd="password",
db="database")
cur = db.cursor()
cur.execute("SELECT common_name , genus , species FROM table WHERE sequence LIKE 'MDPSSID%'")
1
[ad_2]
solved Searching through database with python