Haskell equivalent Python urllib

Is there an equivalent python urllib library in Haskell? I want to enter the course homepage (on Moodle) and automatically download the assignments.

+5
source share
1 answer

I recommend http-conduit ; it is widely used, has a simple interface and efficient implementation, plus automation of multi-page request flows (including cookies, etc.).

A more standard option (part of the Haskell platform) is the HTTP library , which has similar automation support , but I personally prefer the http-conduit API.

+7
source

All Articles