Mysql
 sql >> Database >  >> RDS >> Mysql

Scrivi file da BLOB mysql python

Ho trovato la soluzione, dovevo usare il decode('base64') ... è stato un problema facile :/

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()