Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active August 7, 2019 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d232dc17ae7cf1efb458217880db2491 to your computer and use it in GitHub Desktop.
Save parzibyte/d232dc17ae7cf1efb458217880db2491 to your computer and use it in GitHub Desktop.
import pymysql
try:
conexion = pymysql.connect(host='localhost',
user='root',
password='',
db='peliculas')
print("Conexión correcta")
except (pymysql.err.OperationalError, pymysql.err.InternalError) as e:
print("Ocurrió un error al conectar: ", e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment