Currently we only need the db to keep track of the files that were already downloaded, thus we only use one database and only one table. A complete sql database is a bit too bulky for this purpose. By using sqlite we can minimize and embed the db.master
parent
415a21da3b
commit
4a8cf45ad3
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
while true; do python /studip/run.py -o /studip/data -u $USER -p $PSWD -s $URL --db_user $DB_USER --db_passwd $DB_PSWD --host $HOST && sleep $INTERVAL; done
|
while true; do python /studip/run.py -o /studip/data -u $USER -p $PSWD -s $URL && sleep $INTERVAL; done
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
tqdm==4.46.1
|
pysqlite3==0.4.3
|
||||||
requests==2.23.0
|
requests==2.24.0
|
||||||
PyMySQL==0.9.3
|
|
||||||
|
Loading…
Reference in new issue