I'm happy to announce release of http.async.client v0.2.0 an Asynchronous HTTP 
Client for Clojure.

This is wrapper/adapter on top of 
http://github.com/AsyncHttpClient/async-http-client

Project: http://github.com/neotyk/http.async.client/
Documentation: http://neotyk.github.com/http.async.client/
API autodoc: http://neotyk.github.com/http.async.client/autodoc/
Changelog: http://github.com/neotyk/http.async.client/blob/master/changelog.org

Simple usage:
(ns sample (:require [http.async.client :as c]))
(let [response (c/GET "http://github.com/neotyk/http.async.client/";)]
  (c/await response)
  (c/string response))

Allows you to consume Twitter Streaming API with an ease:
http://codemeself.blogspot.com/2010/09/asynchronous-http-client-for-clojure.html
http://github.com/neotyk/http.async.client/raw/master/twitter-sample.clj

Changes in this release:
* HTTP Streams as clojure.core/seq
* Cookies support
* Authentication support (BASIC and DIGEST)
* Proxy per request
* Allowed branding User-Agent
* Keyworded arguments in API

I would love to hear from you what you think of this library,
Hubert.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to