From 46abefd447f43a00082b5cb4e80072ad37329f30 Mon Sep 17 00:00:00 2001 From: Giulio Date: Mon, 27 Aug 2018 14:53:04 +0200 Subject: [PATCH] Simple fixes --- db_to_html.py | 2 +- vvvvget.py | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/db_to_html.py b/db_to_html.py index fcf5410..76c3c64 100644 --- a/db_to_html.py +++ b/db_to_html.py @@ -21,7 +21,7 @@ out.write(''' -Source Database

'''.format(vvvvidb)) +Source Database

''') # select all the series # cur.execute("SELECT * FROM series;") diff --git a/vvvvget.py b/vvvvget.py index b9d9883..54d3fe2 100644 --- a/vvvvget.py +++ b/vvvvget.py @@ -103,17 +103,17 @@ if not os.path.isfile(vvvvidb): cur.execute("CREATE TABLE episodes (serie_id INTEGER, season_id INTEGER, cdn_url TEXT NOT NULL, type TEXT NOT NULL);") con.commit() con.close() -#else: -# con = sqlite3.connect(vvvvidb) -# cur = con.cursor() -# cur.execute("SELECT id FROM series ORDER BY id DESC LIMIT 1;") -# rows = cur.fetchall() -# if len(rows) > 0: -# last = rows[0][0] + 1 -# con.commit() -# con.close() -# -#print("Resuming from...{}".format(last)) +else: + con = sqlite3.connect(vvvvidb) + cur = con.cursor() + cur.execute("SELECT id FROM series ORDER BY id DESC LIMIT 1;") + rows = cur.fetchall() + if len(rows) > 0: + last = rows[0][0] + 1 + con.commit() + con.close() + +print("Resuming from...{}".format(last)) con = sqlite3.connect(vvvvidb) cur = con.cursor() @@ -164,4 +164,4 @@ for i in range(last, min(last + 500, 1000)): # episodi gia' presenti pass -con.close() \ No newline at end of file +con.close()