aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-06-25 07:38:37 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-06-25 07:38:37 +0200
commit295fc570b631597952339e6c491266c960fb446e (patch)
treee00acd8e54213dfbc18ccb1fbfe4d2821189fff3 /README.md
parentTest if the database has not been indexed. (diff)
downloadnewspipe-295fc570b631597952339e6c491266c960fb446e.tar.gz
newspipe-295fc570b631597952339e6c491266c960fb446e.tar.bz2
newspipe-295fc570b631597952339e6c491266c960fb446e.zip
Added link to the Whoosh library in the README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8a2de73e..03c7a0bc 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ A documentation is available [here](https://pyaggr3g470r.readthedocs.org/).
Features
------------
* articles are stored in a [MongoDB](http://www.mongodb.org/) database (local or remote);
-* article searching;
+* fast full-text indexing and searching thanks the [Whoosh](https://bitbucket.org/mchaput/whoosh) library;
* e-mail notification;
* export articles to HTML, EPUB, PDF or raw text;
* favorite articles;
@@ -31,6 +31,7 @@ Software required
* [Python](http://python.org/) >= 3.1;
* [MongoDB](http://www.mongodb.org/) and [PyMongo](http://api.mongodb.org/python/current/) >= 1.9;
+* [Whoosh](https://bitbucket.org/mchaput/whoosh) (article searching);
* [feedparser](http://code.google.com/p/feedparser/) >= 5.1.2 (for **feedgetter.py**, the RSS feed parser);
* [CherryPy](http://cherrypy.org/) >= 3.2.2 and [Mako](http://www.makotemplates.org/) (for **pyAggr3g470r.py**, the Web interface);
* [BeautifulSoup](http://www.crummy.com/software/BeautifulSoup/) >= 4.1.2 (automatically find a feed in a HTML page).
bgstack15