Skip to content

Instantly share code, notes, and snippets.

@dom96

dom96/foo.nim Secret

Created January 15, 2017 09:38
Show Gist options
  • Save dom96/ff253e793639b40e8f281267d1db6927 to your computer and use it in GitHub Desktop.
Save dom96/ff253e793639b40e8f281267d1db6927 to your computer and use it in GitHub Desktop.
import httpclient, os, streams, xmltree, parsexml, xmlparser
proc getFeed(): StringStream =
var client = newHttpClient()
newStringStream(client.getContent("http://stackexchange.com/feeds/questions"))
let entries = getFeed().parseXml.findAll "entry"
echo(entries)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment