speedparser icon indicating copy to clipboard operation
speedparser copied to clipboard

feedparser but faster and worse

Results 7 speedparser issues
Sort by recently updated
recently updated
newest added

I installed speedparser using `pip install speedparser` . When I tried importing it in a python shell, it gives the following error (in both VSCode and the Windows Terminal). ```...

speedparser is now fully compatible (for me at least). Unit tests mostly work, but there are several that depend on data that isn't committed.

I get import error while trying it importing: ```py >>> import speedparser Traceback (most recent call last): File "", line 1, in File "C:\Python\Python37\lib\site-packages\speedparser\__init__.py", line 1, in from speedparser import...

``` >>> import speedparser >>> feed = "http://news.ycombinator.com/rss" >>> speedparser.parse(feed) {'bozo_tb': 'Traceback (most recent call last):\n File "/home/kir/.virtualenvs/rss/lib/python3.5/site-packages/speedparser/speedparser.py", line 688, in parse\n parser = SpeedParser(document, cleaner, unix_timestamp, encoding)\n File "/home/kir/.virtualenvs/rss/lib/python3.5/site-packages/speedparser/speedparser.py",...

I do everything the same way, as in the tutorial, but get this error on Python 3.4.

`http://www.theprizefinder.com/feed/top-prizes` Not exactly sure on the best approach here... I don't want to uninstall feedparser since I use it when parsing fails catastrophically, but I also don't really want to...

lxml.html.clean cannot clean some raw text (in titles, descriptions, etc); particularly, text that might look like html but isn't. The first case I noticed was the tag "<3" will fail...