Python论坛  - 讨论区

标题:[python-chinese] 发现一个Python高性能I/O项目

2006年07月07日 星期五 13:09

wang dy dongyang.wang at gmail.com
Fri Jul 7 13:09:17 HKT 2006

http://python-hpio.net/trac/wiki What

The Python High Performance I/O project (HPIO) exists to develop and
maintain Python interfaces to low-level POSIX/UNIX/OSX I/O APIs, including:

* Access to UNIX IO subsystems like kqueue(), epoll(), and others.

* Wrappers for system calls not provided in Python (*sendmsg()*, *
socketpair()*, etc).

* Access to the aio_* family of system calls for asynchronous disk (and
socket) I/O.

* Access to POSIX shared memory and advanced IPC.
Why

Because sometimes you need these things, and prefer coding Python to coding
in C or C++

Many of these modules have been around for awhile, either unreleased or
unmaintained, and usually incomplete in some way. A primary goal of this
project is to bring them all under one roof and make them both usable and
easily deployable.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060707/c36fae59/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 13:15

刘鑫 march.liu at gmail.com
Fri Jul 7 13:15:09 HKT 2006

好东西啊,要是有Windows版就好了。可惜Windows那个I/O怪怪的,估计*nix的大牛看不上……

2006/7/7, wang dy <dongyang.wang at gmail.com>:
>
> http://python-hpio.net/trac/wiki What
>
> The Python High Performance I/O project (HPIO) exists to develop and
> maintain Python interfaces to low-level POSIX/UNIX/OSX I/O APIs, including:
>
> * Access to UNIX IO subsystems like kqueue(), epoll(), and others.
>
> * Wrappers for system calls not provided in Python (*sendmsg()*, *
> socketpair()*, etc).
>
> * Access to the aio_* family of system calls for asynchronous disk (and
> socket) I/O.
>
> * Access to POSIX shared memory and advanced IPC.
> Why
>
> Because sometimes you need these things, and prefer coding Python to
> coding in C or C++
>
> Many of these modules have been around for awhile, either unreleased or
> unmaintained, and usually incomplete in some way. A primary goal of this
> project is to bring them all under one roof and make them both usable and
> easily deployable.
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
欢迎访问:
http://blog.csdn.net/ccat

刘鑫
March.Liu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060707/b9543c5a/attachment-0001.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 13:28

Yingbo Qiu qiuyingbo at gmail.com
Fri Jul 7 13:28:13 HKT 2006

twisted 里面已经有 kqueue 了,基于 twsited 的 epoll 也有

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 15:35

netkiller openunix at 163.com
Fri Jul 7 15:35:30 HKT 2006

那个BT是不是用这个???

----- Original Message ----- 
From: "Yingbo Qiu" <qiuyingbo at gmail.com>
To: <python-chinese at lists.python.cn>
Sent: Friday, July 07, 2006 1:28 PM
Subject: Re: [python-chinese] 发现一个Python高性能I/O项目


> twisted 里面已经有 kqueue 了,基于 twsited 的 epoll 也有
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese 




[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 16:26

Yingbo Qiu qiuyingbo at gmail.com
Fri Jul 7 16:26:30 HKT 2006

>
> 那个BT是不是用这个???
>

不知道,我只是在看 PyMSNt 的代码的时候发现了这一点

http://twistedmatrix.com/documents/current/api/twisted.internet.kqreactor.html

PyMSNt 的作者自己实现了 epollreactor

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 17:37

netkiller openunix at 163.com
Fri Jul 7 17:37:56 HKT 2006

是python的MSN client吗??
我正想搞一个和google talk通信的东东.听说他是用jabber做的服务器.那很容易了...

----- Original Message ----- 
From: "Yingbo Qiu" <qiuyingbo at gmail.com>
To: <python-chinese at lists.python.cn>
Sent: Friday, July 07, 2006 4:26 PM
Subject: Re: [python-chinese] 发现一个Python高性能I/O项目


> >
>> 那个BT是不是用这个???
>>
>
> 不知道,我只是在看 PyMSNt 的代码的时候发现了这一点
>
> http://twistedmatrix.com/documents/current/api/twisted.internet.kqreactor.html
>
> PyMSNt 的作者自己实现了 epollreactor
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese 




[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 17:58

Yingbo Qiu qiuyingbo at gmail.com
Fri Jul 7 17:58:54 HKT 2006

准确的说,是 xmpp server 的 MSN gateway

> 是python的MSN client吗??
> 我正想搞一个和google talk通信的东东.听说他是用jabber做的服务器.那很容易了...

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 18:27

netkiller openunix at 163.com
Fri Jul 7 18:27:52 HKT 2006

我在看.语音传输GIPS和Gtalk,你有兴趣吗??

我大体想实现这个功能..

电台 - > 适配器 -> 电脑  -------互联网------ 电脑<-适配器<-电台.



----- Original Message ----- 
From: "Yingbo Qiu" <qiuyingbo at gmail.com>
To: <python-chinese at lists.python.cn>
Sent: Friday, July 07, 2006 5:58 PM
Subject: Re: [python-chinese] 发现一个Python高性能I/O项目


> 准确的说,是 xmpp server 的 MSN gateway
>
>> 是python的MSN client吗??
>> 我正想搞一个和google talk通信的东东.听说他是用jabber做的服务器.那很容易了...
>


--------------------------------------------------------------------------------


> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese 




[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 18:54

Zoom.Quiet zoom.quiet at gmail.com
Fri Jul 7 18:54:57 HKT 2006

On 7/7/06, netkiller <openunix at 163.com> wrote:
>
> 我在看.语音传输GIPS和Gtalk,你有兴趣吗??
>
> 我大体想实现这个功能..
>
> 电台 - > 适配器 -> 电脑  -------互联网------ 电脑<-适配器<-电台.
>
关注!

>
>
> ----- Original Message -----
> From: "Yingbo Qiu" <qiuyingbo at gmail.com>
> To: <python-chinese at lists.python.cn>
> Sent: Friday, July 07, 2006 5:58 PM
> Subject: Re: [python-chinese] 发现一个Python高性能I/O项目
>
>
> > 准确的说,是 xmpp server 的 MSN gateway
> >
> >> 是python的MSN client吗??
> >> 我正想搞一个和google talk通信的东东.听说他是用jabber做的服务器.那很容易了...
> >
>
>
> --------------------------------------------------------------------------------
>
>
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>


-- 
"""Time is unimportant, only life important!
blogging  :  http://blog.zoomquiet.org/pyblosxom/
wiki enter:   http://wiki.woodpecker.org.cn/moin/ZoomQuiet
in douban:  http://www.douban.com/people/zoomq/
"""

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 20:01

Yingbo Qiu qiuyingbo at gmail.com
Fri Jul 7 20:01:51 HKT 2006

基于 jabber + SIP ?

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月07日 星期五 23:02

 huanghao.c at gmail.com
Fri Jul 7 23:02:27 HKT 2006

xmpp 我 比较 有兴趣,以前用 .net 做过一个client

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年07月08日 星期六 00:55

Yingbo Qiu qiuyingbo at gmail.com
Sat Jul 8 00:55:25 HKT 2006

呵呵,我 python 完全是在入门阶段,C 还凑合..

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号