I had installed dataset module already, but when I import it, it keeps showing that "ModuleNotFoundError: No module named 'MySQLdb'". I'm using python 3.7.10 with osx 10.15.
import dataset
db = dataset.connect('mysql://root:password@127.0.0.1/dataname')
table = db['users']
table.insert(dict(userid='a1344134'))