sql >> Base de Datos >  >> RDS >> Mysql

Escribir archivo desde BLOB mysql python

Encontré la solución, necesitaba usar el decode('base64')... fue un problema fácil :/

cur = db2.cursor()
#get the file
cur.execute("SELECT mimetype,File,Name FROM ContentFiles WHERE ContentID=10414")
archivo = cur.fetchone()

imagen = open(archivo[2],'wb')
imagen.write(archivo[1].decode('base64'))
imagen.close()