MySQL Connector/Python Release Notes
This module contains both MySQL server and client error codes defined as module attributes with the error number as value. Using error codes instead of error numbers could make reading the source code a bit easier.
Press CTRL+C to copy>>> from mysql.connector import errorcode >>> errorcode.ER_BAD_TABLE_ERROR 1051
For more information about MySQL errors, see Error Messages and Common Problems.