मुझे समाधान मिल गया, मुझे डिकोड ('बेस 64') का उपयोग करने की आवश्यकता थी ... यह एक आसान समस्या थी:/
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()