foxylad
Results
2
comments of
foxylad
Hi - I agree that parsing non-gcode commands is dubious, but I'd go further and suggest that parsing _any_ commands is dubious (with the possible exception of manually entered commands)....
It seems speedparser does not include feedparsers handling of URLs. You have to get the feed with something like: ```python import urllib2 feed=urllib2.urlopen('http://newsroom.co.nz/feed/rss') speedparser.parse(feed.read()) ```