Skip to content
Snippets Groups Projects
Verified Commit 31efc062 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Folder cleanup

parent 5f9eb31c
No related branches found
No related tags found
No related merge requests found
/raw
/imdb_data.sqlite
/output
#!/bin/bash
rm imdb_data.sqlite
sqlite3 imdb_data.sqlite < schema.sql
rm output/imdb_data.sqlite
sqlite3 output/imdb_data.sqlite < schema.sql
python3 import.py
import csv, sqlite3
con = sqlite3.connect("imdb_data.sqlite")
con = sqlite3.connect("output/imdb_data.sqlite")
cur = con.cursor()
def batch(iterable, n=1):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment