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
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)
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
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
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
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