aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-06-10 14:06:58 +0200
committercedricbonhomme <devnull@localhost>2010-06-10 14:06:58 +0200
commit840c626cbca3ffe4dd71d54da8c5bdc217bc0f52 (patch)
tree6bd3b3d63d7a07488a458a7b888737b94af453bc /utils.py
parentIt is now possible to remove all articles of a given feed from the SQLite bas... (diff)
downloadnewspipe-840c626cbca3ffe4dd71d54da8c5bdc217bc0f52.tar.gz
newspipe-840c626cbca3ffe4dd71d54da8c5bdc217bc0f52.tar.bz2
newspipe-840c626cbca3ffe4dd71d54da8c5bdc217bc0f52.zip
Release 1.4. It is now possible to remove all articles of a given feed from the SQLite base via the management page. You can also add a feed just with the URL of the web page. The URL of the feed is obtained by parsing the web page with the module BeautifulSoup.
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index e9395ed3..d2ae88e0 100755
--- a/utils.py
+++ b/utils.py
@@ -4,8 +4,8 @@
from __future__ import with_statement
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.6 $"
-__date__ = "$Date: 2010/04/29 $"
+__version__ = "$Revision: 0.7 $"
+__date__ = "$Date: 2010/06/10 $"
__copyright__ = "Copyright (c) 2010 Cedric Bonhomme"
__license__ = "GPLv3"
bgstack15