8 lines
205 B
Python
Executable File
8 lines
205 B
Python
Executable File
import sqlite3
|
|
db = '/var/folders/zw/y1xldrn518s3frdh6jhc97900000gn/0/com.apple.notificationcenter/db2/db'
|
|
con = sqlite3.connect(db)
|
|
cur = con.cursor()
|
|
test = cur.execute("tables").fetchall()
|
|
print(test)
|
|
|