| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 09:11:19 GMT
X-Served-By: cache-dfw-kdal2120107-DFW, cache-bom-vanm7210030-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768641079.867836,VS0,VE287
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
haskell-proxy-list: Simple library for retrieving proxy servers info from https://proxy-list.org
haskell-proxy-list: Simple library for retrieving proxy servers info from https://proxy-list.org
Downloads
- haskell-proxy-list-0.0.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.0.1 |
|---|---|
| Dependencies | base (>=4.8 && <5), base64-string, bytestring, lens, random, regex-base, regex-posix, text, wreq [details] |
| License | LicenseRef-PublicDomain |
| Author | grzegorzgoldapl |
| Maintainer | contact@grzegorzgolda.com |
| Uploaded | by grzegorzgolda at 2016-06-17T10:36:23Z |
| Revised | Revision 1 made by grzegorzgolda at 2016-06-20T04:22:49Z |
| Category | Web |
| Home page | https://github.com/grzegorzgoldapl/haskell-proxy-list |
| Source repo | head: git clone git://github.com/grzegorzgoldapl/haskell-proxy-list.git |
| Distributions | NixOS:0.0.1 |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 1140 total (3 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2016-06-17 [all 1 reports] |
Readme for haskell-proxy-list-0.0.1
[back to package description]PROXY LIST
Very simple library for downloading a list of proxies from https://proxy-list.org
HOW TO USE
Library exports two functions. Proxy is represented by a tuple (Host, Port).
getProxyList :: Bool -> IO [(String, Int)]
getProxyList ssl
Argument indicates if requested proxy servers should have HTTPS support.
Returns a list of proxy servers.
randomProxy :: [(String, Int)] -> (String, Int)
randomProxy proxyList
Selects random proxy.
Example:
import HTTP.ThirdParty.ProxyList
main = do
proxyList <- getProxyList True
proxyServer <- randomProxy proxyList
print proxyServer