feedparser-clj
feedparser-clj copied to clipboard
Atom/RSS Feed Parsing for Clojure
For example running `(parse-feed "http://engineering.tumblr.com/rss")` throws: ```SAXParseException Premature end of file. com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException (ErrorHandlerWrapper.java:203)``` ``` $ curl -I http://engineering.tumblr.com/rss HTTP/1.1 302 Found Server: openresty Date: Wed, 26 Jul 2017 14:01:55 GMT...
Trying to run the example command `(parse-feed "http://gregheartsfield.com/atom.xml")` throws following error: SAXParseException The element type "hr" must be terminated by the matching end-tag "". com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException (ErrorHandlerWrapper.java:203) I've verified that other...
…so in project using updated dependencies
1. records not structs 2. point to clojars dep instead of lein install
Some RSS feed providers refuse connections according to user-agent strings ([one](https://developer.appcelerator.com/question/179177/http-response-giving-403-forbidden-while-it-works-fine-on-normal-browsers-and-rest-client), [two](https://jira.sakaiproject.org/si/jira.issueviews:issue-html/SAK-10159/SAK-10159.html)) It sure would be real nice to be able to pass in a custom user-agent string so that...
- Addresses #11
Having a `-main` function in `core.clj` means that I am not able to have my own `-main` function where ever I `:use` the feedparser. Is this ok? I'm new to...
Clojars
Would you consider publishing this library on clojars? Installing from local source makes usage more cumbersome in deployment scenarios. Thank you in advance.
I'm having trouble getting author information from many RSS feeds. These feeds have dc:creator tags for each feed item, but the :authors key for each parsed entry is empty. Could...