diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-08-11 15:02:39 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-08-11 15:02:39 +0200 |
commit | 23e8bfad1d883d8b2c5ea8cd71f622707423f31d (patch) | |
tree | 484983e615535b44a1cf43b0983be0afd9d36bcc | |
parent | proxy object is now instancied in the __init__ function of feedgetter class. (diff) | |
download | newspipe-23e8bfad1d883d8b2c5ea8cd71f622707423f31d.tar.gz newspipe-23e8bfad1d883d8b2c5ea8cd71f622707423f31d.tar.bz2 newspipe-23e8bfad1d883d8b2c5ea8cd71f622707423f31d.zip |
Updated documentation and README file.
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | docs/index.rst | 9 | ||||
-rwxr-xr-x | source/pyAggr3g470r.py | 4 |
3 files changed, 12 insertions, 2 deletions
@@ -15,6 +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); +* HTTP proxy support; * 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; diff --git a/docs/index.rst b/docs/index.rst index c651654b..50ce635f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -21,6 +21,7 @@ Features -------- * articles are stored in a MongoDB_ database (local or remote); +* HTTP proxy support; * fast full-text indexing and searching thanks the Whoosh_ library; * e-mail notification; * export articles to HTML, EPUB, PDF or raw text; @@ -177,9 +178,17 @@ section of the configuration file: password = your_password [misc] diaspora_pod = joindiaspora.com + feed_list = ./var/feed.lst + http_proxy = 127.0.0.1:8118 Then just click on "Stay tuned" for the desired feed(s) at the main page of pyAggr3g470r in your browser. +HTTP proxy +`````````` +You can specify the address of a proxy in the configuration file (in the *misc* section). +For example `127.0.0.1:8118` if you are using Privoxy/Tor. If you are not using a proxy just +leave the value of `http_proxy` to blank. + Launch ------ diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 4a99ce2d..3de1dfa6 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -20,9 +20,9 @@ # along with this program. If not, see <http://www.gnu.org/licenses/> __author__ = "Cedric Bonhomme" -__version__ = "$Revision: 4.0 $" +__version__ = "$Revision: 4.1 $" __date__ = "$Date: 2010/01/29 $" -__revision__ = "$Date: 2013/06/25 $" +__revision__ = "$Date: 2013/08/11 $" __copyright__ = "Copyright (c) Cedric Bonhomme" __license__ = "GPLv3" |