feedparser
feedparser copied to clipboard
Download error...
Hi all,
I am facing trouble downloading some feed urls, like:
https://meaculpa.gr/politiki?format=feed
The error I get is:
Traceback (most recent call last):
File "find_feed.py", line 26, in
I am using Python 3.6.6.
I can not reproduce your errors. Please provide some minimal working code to reproduce your problem.
This is what I did
>>> url = 'https://meaculpa.gr/politiki?format=feed'
>>> a = fp.parse(url)
>>> a.status
200
>>> len(a.entries)
22
>>> a.bozo
0
>>>