Hoogle Search

Within LTS Haskell 24.1 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. openURI :: String -> IO (Either String ByteString)

    download Network.Download

    Download content specified by url (in RFC1738 form), using either FTP, HTTP or file protocols, returning the content as a strict ByteString. If the url is malformed, a Left value is returned. Similarly, if an error occurs, Left is returned, with a protocol-specific error string. If the file protocol is used, documents will be retrieved from the local filesystem. If the ftp scheme is used, the FTP protocol (RFC959) is used. If no user name or password are provided, anonymous login, with user name anonymous and password anonymous will be attempted. If the http method is used, HTTP/1.1 will be used. Examples:

    openURI "http://haskell.org"
    

  2. openURI :: String -> IO (Either String ByteString)

    download-curl Network.Curl.Download

    Download content specified by a url using curl, returning the content as a strict ByteString. If an error occurs, Left is returned, with a protocol-specific error string. Examples:

    openURI "http://haskell.org"
    

  3. openURIString :: String -> IO (Either String String)

    download Network.Download

    Like openURI, but returns the result as a String Examples:

    openURIString "http://haskell.org"
    

  4. openURIString :: String -> IO (Either String String)

    download-curl Network.Curl.Download

    Like openURI, but returns the result as a String Examples:

    openURIString "http://haskell.org"
    

  5. openURIWithOpts :: [CurlOption] -> String -> IO (Either String ByteString)

    download-curl Network.Curl.Download

    Like openURI, but takes curl options. Examples:

    openURIWithOpts [CurlPost True] "http://haskell.org"
    

  6. data BeamOpenURIInvalid

    beam-core Database.Beam.Backend.URI

    No documentation available.

  7. BeamOpenURIInvalid :: BeamOpenURIInvalid

    beam-core Database.Beam.Backend.URI

    No documentation available.

  8. data BeamOpenURIUnsupportedScheme

    beam-core Database.Beam.Backend.URI

    No documentation available.

  9. BeamOpenURIUnsupportedScheme :: String -> BeamOpenURIUnsupportedScheme

    beam-core Database.Beam.Backend.URI

    No documentation available.

  10. SQLOpenURI :: SQLOpenFlag

    direct-sqlite Database.SQLite3

    No documentation available.

Page 1 of 2 | Next