llama_index
                                
                                 llama_index copied to clipboard
                                
                                    llama_index copied to clipboard
                            
                            
                            
                        WebPageDemo.ipynb error
In the file examples/data_connectors/WebPageDemo.ipynb, the "Using RssReader" demo throws the error: AttributeError: 'list' object has no attribute 'split'
Any thoughts on what this could be?
Can you share the trace of the error message?
@beddows is it fixed now? the rss reader has been updated
@jerryjliu @simonManydata Still getting the error - trace attached
Apologies, I discovered an older version was installed. Latest version installed and API key verified. New error attached.
@bborn do you have an idea of what the issue is?
@beddows what's the URL of the feed you're passing it. Looks like the feedparser isn't finding a content element.
@bborn I'm using the provided links in the notebook, which seem to be valid:
documents = RssReader().load_data([ "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml", "https://roelofjanelsinga.com/atom.xml" ])
@jerryjliu  ok looks like the content attribute isn't there for some types of feeds, so we need to check for it in the Dict first. Sent a PR: https://github.com/jerryjliu/gpt_index/pull/435
Closed with #435