aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-09-27 10:40:37 +0200
committercedricbonhomme <devnull@localhost>2011-09-27 10:40:37 +0200
commitfb698b7539715e1457feb2934e866aa713954355 (patch)
treef626ff16347554a0aed72df01682bd9c4048da71 /utils.py
parentBugfix: wrong image url. (diff)
downloadnewspipe-fb698b7539715e1457feb2934e866aa713954355.tar.gz
newspipe-fb698b7539715e1457feb2934e866aa713954355.tar.bz2
newspipe-fb698b7539715e1457feb2934e866aa713954355.zip
Added more comments in headers.~
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils.py b/utils.py
index 6c7ee14b..87db57dd 100755
--- a/utils.py
+++ b/utils.py
@@ -26,6 +26,14 @@ __revision__ = "$Date: 2011/04/15 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
+#
+# This file provides functions used for:
+# - the database management;
+# - generation of tags cloud;
+# - HTML processing;
+# - mail notifications.
+#
+
import re
import hashlib
import sqlite3
bgstack15