10 lines
No EOL
190 B
Python
Executable file
10 lines
No EOL
190 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sqlite3
|
|
import os
|
|
|
|
conn = sqlite3.connect(os.path.expanduser('~/llvm-propject.db'))
|
|
c = conn.cursor()
|
|
|
|
c.execute('CREATE TABLE repo (hash text)')
|
|
conn.commit() |