forked from haskell/HTTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTP.cabal
104 lines (95 loc) · 3.44 KB
/
HTTP.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Name: HTTP
Version: 4000.1.2
Cabal-Version: >= 1.2
Build-type: Simple
License: BSD3
License-file: LICENSE
Copyright:
Copyright (c) 2002, Warrick Gray
Copyright (c) 2002-2005, Ian Lynagh
Copyright (c) 2003-2006, Bjorn Bringert
Copyright (c) 2004, Andre Furtado
Copyright (c) 2004, Ganesh Sittampalam
Copyright (c) 2004-2005, Dominic Steinitz
Copyright 2007 Robin Bate Boerop
Copyright 2008- Sigbjorn Finne
Author: Warrick Gray <[email protected]>
Maintainer: Ganesh Sittampalam <[email protected]>
Homepage: http://projects.haskell.org/http/
Category: Network
Synopsis: A library for client-side HTTP
Description:
The HTTP package supports client-side web programming in Haskell. It lets you set up
HTTP connections, transmitting requests and processing the responses coming back, all
from within the comforts of Haskell. It's dependent on the network package to operate,
but other than that, the implementation is all written in Haskell.
.
A basic API for issuing single HTTP requests + receiving responses is provided. On top
of that, a session-level abstraction is also on offer (the @BrowserAction@ monad);
it taking care of handling the management of persistent connections, proxies,
state (cookies) and authentication credentials required to handle multi-step
interactions with a web server.
.
The representation of the bytes flowing across is extensible via the use of a type class,
letting you pick the representation of requests and responses that best fits your use.
Some pre-packaged, common instances are provided for you (@ByteString@, @String@.)
.
Here's an example use:
.
>
> do
> rsp <- Network.HTTP.simpleHTTP (getRequest "http://www.haskell.org/")
> -- fetch document and return it (as a 'String'.)
> fmap (take 100) (getResponseBody rsp)
>
> do
> rsp <- Network.Browser.browse $ do
> setAllowRedirects True -- handle HTTP redirects
> request $ getRequest "http://google.com/"
> fmap (take 100) (getResponseBody rsp)
>
.
Git repository available at <git://github.com/haskell/HTTP.git>
Extra-Source-Files: CHANGES
Flag old-base
description: Old, monolithic base
default: False
Library
Exposed-modules:
Network.BufferType,
Network.Stream,
Network.StreamDebugger,
Network.StreamSocket,
Network.TCP,
Network.HTTP,
Network.HTTP.Headers,
Network.HTTP.Base,
Network.HTTP.Stream,
Network.HTTP.Auth,
Network.HTTP.Cookie,
Network.HTTP.Proxy,
Network.HTTP.HandleStream,
Network.Browser
Other-modules:
Network.HTTP.Base64,
Network.HTTP.MD5,
Network.HTTP.MD5Aux,
Network.HTTP.Utils
GHC-options: -fwarn-missing-signatures -Wall
Build-depends: base >= 2 && < 4.5, network, parsec, mtl
Extensions: FlexibleInstances
if flag(old-base)
Build-depends: base < 3
else
Build-depends: base >= 3, array, old-time, bytestring
if os(windows)
Build-depends: Win32
Test-Suite test
type: exitcode-stdio-1.0
build-tools: ghc >= 6.10 && < 7.2
main-is: test/httpTests.hs
build-depends: HUnit,
httpd-shed,
haskell98,
test-framework,
test-framework-hunit