> What is the package you guys using for web scraping ? Additional to what @LeuGim said,
Use [httpclient](https://nim-lang.org/docs/httpclient.html) module to get the page. Use `parseHtml` from [htmlparser](https://nim-lang.org/docs/httpclient.html) to get the `XmlNode` representation of page. Use [xmltree](https://nim-lang.org/docs/xmltree.html) module to work on that `XmlNode` you got. For practical example, here's some [script](https://github.com/mashingan/nim-etc/blob/master/downloadmanga.nim) I wrote to web scrap [mangastream](http://mangastream.com)
