@hackage http-conduit-downloader1.1.5
HTTP downloader tailored for web-crawler needs.
Categories
License
BSD-3-Clause
Maintainer
Vladimir Shabanov <dev@vshabanov.com>
Links
Versions
Installation
Dependencies (12)
- HsOpenSSL >=0.11.5
- base >=4 && <5
- bytestring
- data-default
- http-client >=0.7.16 && <0.7.17
- http-client-openssl >=0.3.3 && <0.3.4 Show all…
Dependents (2)
@hackage/acme-everything, @hackage/selenium-server
HTTP/HTTPS downloader built on top of http-client
and used in https://bazqux.com crawler.
Previously it was based on http-conduit (hence the name) but since
all the necessary parts are in http-client now http-conduit is no
longer used.
Handles all possible http-client exceptions and returns human readable error messages.
Handles some web server bugs (returning
deflatedata instead ofgzip, invalidgzipencoding).Uses OpenSSL instead of
tlspackage (sincetlsdoesn't handle all sites and works slower than OpenSSL).Ignores invalid SSL sertificates.
Receives data in 32k chunks internally to reduce memory fragmentation on many parallel downloads.
Download timeout.
Total download size limit.
Returns HTTP headers for subsequent redownloads and handles 'Not modified' results.
Can be used with external DNS resolver (e.g.
concurrent-dns-cache).