Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am heardy on github.
  • I am heardy (https://keybase.io/heardy) on keybase.
  • I have a public key ASA6SNp9o30o9eSb9_dYH1971aGSoH_DofWL7W4pCuISrQo

To claim this, I am signing this object:

@heardy
heardy / create_test_db.py
Last active March 26, 2023 08:25
Convert SQLite database to JSON files
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sqlite3 as lite
import sys
con = lite.connect('test.sqlite')
with con: