Re: Asynchronous HTTP client

2010-03-12 Thread Antoine Pitrou
Le Sun, 07 Mar 2010 22:40:36 +0800, pingooo a écrit : > I'm writing an open source python client for a web service. The client > may be used in all kinds of environments - Linux, Mac OS X, Windows, web > hosting, etc by others. It is not impossible to have twisted as a > dependency, but that makes

Re: Asynchronous HTTP client

2010-03-07 Thread exarkun
On 02:40 pm, ping.nsr@gmail.com wrote: 2010/3/7 On 06:53 am, ping.nsr@gmail.com wrote: Hi, I'm trying to find a way to create an asynchronous HTTP client so I can get responses from web servers in a way like async_http_open('http://example.com/', callback_func)

Re: Asynchronous HTTP client

2010-03-07 Thread pingooo
2010/3/7 > On 06:53 am, ping.nsr@gmail.com wrote: > >> Hi, >> >> I'm trying to find a way to create an asynchronous HTTP client so I >> can get responses from web servers in a way like >> >> async_http_open('http://example.com/', call

Re: Asynchronous HTTP client

2010-03-07 Thread Lie Ryan
On 03/07/2010 05:53 PM, Ping wrote: > Hi, > > I'm trying to find a way to create an asynchronous HTTP client so I > can get responses from web servers in a way like > > async_http_open('http://example.com/', callback_func) > # immediately continues, and c

Re: Asynchronous HTTP client

2010-03-07 Thread exarkun
On 06:53 am, ping.nsr@gmail.com wrote: Hi, I'm trying to find a way to create an asynchronous HTTP client so I can get responses from web servers in a way like async_http_open('http://example.com/', callback_func) # immediately continues, and callback_func is called with

Asynchronous HTTP client

2010-03-06 Thread Ping
Hi, I'm trying to find a way to create an asynchronous HTTP client so I can get responses from web servers in a way like async_http_open('http://example.com/', callback_func) # immediately continues, and callback_func is called with response as arg when it is ready It seems