Files
onefinity-firmware/scripts/delete-cookies.py
David A. Carley 1a2613677d Update delete-cookies.py
Neglected to commit the changes to the DB.
2021-12-08 10:04:36 -08:00

8 lines
209 B
Python

#!/usr/bin/env python3
import sqlite3
db = sqlite3.connect('/home/pi/.config/chromium/Default/Cookies')
cur = db.cursor()
cur.execute("DELETE FROM cookies WHERE creation_utc < 13240000000000000")
db.commit()