- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/kennethreitz/inbox.py
软件介绍
inbox.py 是一个最简单的 Python 实现的 SMTP 服务器,异步的。因为有了 Gevent 的支持,单实例每秒钟可处理一千封邮件的发送。
示例代码:
from inbox import Inbox
inbox = Inbox()
@inbox.collate
def handle(to, sender, body):
...
# Bind directly.
inbox.serve(address='0.0.0.0', port=4467)
Head Rush Ajax
Brett McLaughlin、Eric Freeman、Elisabeth Freeman / O'Reilly Media, Inc. / 2006-03-01 / USD 34.99
Ajax, or Asynchronous JavaScript and XML, is a term describing the latest rage in web development. Ajax is used to create interactive web applications with XML-based web services, and using JavaScript......一起来看看 《Head Rush Ajax》 这本书的介绍吧!
