You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ greg download 10-15
Traceback (most recent call last):
File "/Users/reubano/Library/Python/3.6/bin/greg", line 11, in<module>sys.exit(main())
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/greg/parser.py", line 138, in main
function(vars(args))
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/greg/commands.py", line 247, in download
feed.download_entry(entry)
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/greg/classes.py", line 324, in download_entry
sanitizedsummary)
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/greg/classes.py", line 362, in __init__
feed.podcast.feed.subtitle)
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/greg/aux_functions.py", line 109, in html_to_text
beautify = BeautifulSoup(data, "lxml")
File "/Users/reubano/Library/Python/3.6/lib/python/site-packages/bs4/__init__.py", line 165, in __init__
% ",".join(features))
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
The text was updated successfully, but these errors were encountered:
By default, BS4 will use the HTML parser included in Python's standard library, but it also supports third-party Python parsers, such as lxml parser and html5lib parser.
In order to use the third-party Python parsers, you need to install them, since they are not the built-in part of your installation.
You can find more details on the bs4 document listed below. https://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-a-parser
The text was updated successfully, but these errors were encountered: