aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/utils.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 08:22:14 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 08:22:14 +0200
commit401478b6698d82eb9ff054c1d544e9d6fd72323b (patch)
tree74a8d8e19e1e32324d9aa31a28a1567cb0da57ba /pyaggr3g470r/utils.py
parentUsing lxml parser instead of html.parser, fixes #4. (diff)
downloadnewspipe-401478b6698d82eb9ff054c1d544e9d6fd72323b.tar.gz
newspipe-401478b6698d82eb9ff054c1d544e9d6fd72323b.tar.bz2
newspipe-401478b6698d82eb9ff054c1d544e9d6fd72323b.zip
Updated requirements.txt.
Diffstat (limited to 'pyaggr3g470r/utils.py')
-rwxr-xr-xpyaggr3g470r/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index 88a3904a..2ed828f6 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -40,7 +40,7 @@ import opml
import operator
from urllib import urlencode
from urlparse import urlparse, parse_qs, urlunparse
-from BeautifulSoup import BeautifulSoup
+from bs4 import BeautifulSoup
from collections import Counter
from contextlib import contextmanager
@@ -257,4 +257,4 @@ def search_feed(url):
if __name__ == "__main__":
import_opml("root@pyAggr3g470r.localhost", "./var/feeds_test.opml")
- #import_opml("root@pyAggr3g470r.localhost", "./var/pyAggr3g470r.opml") \ No newline at end of file
+ #import_opml("root@pyAggr3g470r.localhost", "./var/pyAggr3g470r.opml")
bgstack15