conn = pymysql.connect(host=host, port=port, user=user, passwd=password, db=mydb)
cursor = conn.cursor()
cursor.execute("INSERT IGNORE INTO 'users' ('username', 'password', 'email') VALUES (%s, %s, %s)", (usernamee, passwordd, emaill))
conn.commit()
(1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''users' ('username', 'password', 'email') VALUES ('Dex', 'Dexx', 'email@bk' at line 1")
INSERT IGNORE INTO `users` (`username`, `password`, `email`) ...