Skip to content

Instantly share code, notes, and snippets.

@martinmev
Created June 1, 2014 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinmev/fdc3462e62b039a910c4 to your computer and use it in GitHub Desktop.
Save martinmev/fdc3462e62b039a910c4 to your computer and use it in GitHub Desktop.
Dump Nokia Suite SQLite database
import sqlite3
conn = sqlite3.connect('c:\\Users\\Martin\\AppData\\Local\\Nokia\\Nokia Data Store\\DataBase\\MDataStore.db3')
for i in conn.iterdump():
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment