download alternatives and similar packages
Based on the "Network" category.
Alternatively, view download alternatives based on common mentions on social networks and blogs.
-
prometheus-client
Haskell client library for exposing prometheus.io metrics. -
connection
simple client connection library in haskell with builtin features: SSL/TLS, SOCKS, session management. -
network-hans
HaNS <-> Network Shims for easier porting to HaNS and the HaLVM -
pcap
Haskell bindings for the pcap library, which provides a low level interface to packet capture systems. -
tcp-streams
One stop solution for tcp client and server with tls support. -
kafka-client
Low-level Haskell client library for Apache Kafka 0.7.
Access the most powerful time series database as a service
Do you think we are missing an alternative of download or a related project?
README
download
Download web content as strict bytestring, strings, HTML tags, XML, RSS or Atom feeds or JSON, via HTTP, FTP or file protocols, using a URL interface.
Using the library:
Importing the library:
import Network.Download
Loading a webpage as a ByteString
:
doc <- openURI "http://google.com"
Loading from a file:
doc <- openURI "file:///tmp/A.hs"
Loading a HTML page as a list of tags:
tags <- openAsTags "http://google.com"
Loading a HTML page as XML:
tags <- openAsXML "http://google.com"
Loading an RSS or Atom feed:
feed <- openAsFeed "http://google.com"
These data types can the be processed further with the XML, Feed and TagSoup libraries.