Error OperationalError: (OperationalError) (2006, \'MySQL server has gone away\') i\'m already received this error when i coded project on Flask, but i cant underst
OperationalError: (OperationalError) (2006, \'MySQL server has gone away\')
from documentation you can use pool_recycle parameter:
pool_recycle
from sqlalchemy import create_engine e = create_engine("mysql://scott:tiger@localhost/test", pool_recycle=3600)