summaryrefslogtreecommitdiff
path: root/scripts/tuvotereminder.py
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:20:29 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:23:13 +0200
commit37188603b52a3dac23df229ada82c7da0c3d9c00 (patch)
treef7df7af7edcd8ca49fe1354883537013d020319f /scripts/tuvotereminder.py
parent85866796a40923708f6b868c32ddc2f2f4417d1d (diff)
Make maintenance scripts installable
Add wrappers for the maintenance scripts to the setuptools configuration. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'scripts/tuvotereminder.py')
-rwxr-xr-xscripts/tuvotereminder.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/tuvotereminder.py b/scripts/tuvotereminder.py
deleted file mode 100755
index 97b1d12..0000000
--- a/scripts/tuvotereminder.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python3
-
-import subprocess
-import time
-
-import aurweb.config
-import aurweb.db
-
-notify_cmd = aurweb.config.get('notifications', 'notify-cmd')
-
-
-def main():
- conn = aurweb.db.Connection()
-
- now = int(time.time())
- filter_from = now + 500
- filter_to = now + 172800
-
- cur = conn.execute("SELECT ID FROM TU_VoteInfo " +
- "WHERE End >= ? AND End <= ?",
- [filter_from, filter_to])
-
- for vote_id in [row[0] for row in cur.fetchall()]:
- subprocess.Popen((notify_cmd, 'tu-vote-reminder', str(vote_id))).wait()
-
-
-if __name__ == '__main__':
- main()