`
guangboo
  • 浏览: 34082 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Twisted from Scratch,or The Evolution of Finger

阅读更多


Twisted from Scratch, or The Evolution of Finger

2.5.1 介绍

当人们使用Twisted时,一般都会觉得Twisted强大的不可思议。甚至不知道从何说起。

本指南从会从基础开始,大量运用框架中的重要特征,慢慢构建功能全面的Twisted应用。这里会提供大量的代码,所以不用担心。

我们正关注的应用是“finger”服务,它由UNIX服务器提供支持,沿用了传统的熟悉的服务方式。我们将在标准服务的基础上,进行略微的扩展,以显示Twisted的高级特性。

2.5.2 主要内容

本教程分11部分:

  1. The Evolution of Finger:构建简单的finger服务;
  2. The Evolution of Finger:添加新特征;
  3. The Evolution of Finger:清理代码;
  4. The Evolution of Finger:转移到基于框架的组件;
  5. The Evolution of Finger:可插件化后台;
  6. The Evolution of Fingerweb前台;
  7. The Evolution of Finger:使用Perspective Broker支持Twisted客户端;
  8. The Evolution of Finger:为多协议使用单子工厂;
  9. The Evolution of FingerTwisted finger客户端;
  10. The Evolution of Finger:创建finger库;
  11. The Evolution of Finger:配置、打包finger服务。

0
0
分享到:
评论

相关推荐

    The Twisted Documentation

    Twisted is a good (if somewhat idiosyncratic) pure-python framework or library, depending on how you treat it, and it continues to improve. As a platform, Twisted should be focused on integration. ...

    Twisted Network Programming Essentials, 2nd Edition

    Twisted comes with client and server implementations for all of its protocols, as well as utilities that make it easy to configure and deploy production-grade Twisted applications from the command ...

    The Twisted Documentation 电子版 pdf

    ### 关于《扭曲文档》(The Twisted Documentation)的核心知识点概览 #### 一、扭曲框架简介 **标题与描述解读:** 标题“《扭曲文档》电子版 PDF”明确指出文档的主题是关于“Twisted”框架,这是一款用于Python...

    The Twisted Documentation.pdf

    根据提供的文档信息,我们可以梳理出一系列与《The Twisted Documentation》相关的IT知识点。这份文档主要围绕着Twisted框架展开,涉及了异步编程、网络应用开发等方面的内容。下面将对这些知识点进行详细的介绍。 ...

    Twisted-13.1.0.win32-py2.7

    Twisted是一个事件驱动的python网络框架被所有类型的软件使用。

    twisted适合python3.8版本

    Twisted是Python编程语言中的一个开源网络框架,专注于异步编程和事件驱动的网络应用开发。这个框架在Python社区中广泛使用,特别是对于构建高性能、高并发的服务器端应用程序。标题提到"twisted适合python3.8版本...

    twisted 语法 pdf

    from twisted.internet.protocol import Protocol, ClientFactory class SimpleClient(Protocol): def connectionMade(self): self.transport.write("Hello, world!") def dataReceived(self, data): print(...

    Twisted与异步编程入门

    【Twisted与异步编程入门】是一篇关于Python中Twisted框架和异步编程的教程。Twisted是一个强大的网络应用框架,特别适用于处理复杂的异步编程需求。文章首先强调了理解异步编程模型的重要性,指出只有深入理解模型...

    twisted入门教程源码

    from twisted.internet import protocol, reactor class Echo(protocol.Protocol): def dataReceived(self, data): self.transport.write(data) class EchoFactory(protocol.Factory): def buildProtocol(self,...

    Twisted事件驱动网络框架

    from twisted.internet import protocol, reactor class Echo(protocol.Protocol): def dataReceived(self, data): self.transport.write(data) class EchoFactory(protocol.Factory): def buildProtocol(self,...

    twisted例子

    Twisted是一个强大的Python异步网络编程框架,广泛用于构建复杂的、高性能的网络应用程序。这个"twisted例子"可能是一个从Twisted系列教程中提取的实际应用示例,旨在帮助学习者更好地理解和掌握Twisted的核心概念和...

    Python Twisted网络编程框架(中文)

    ### Python Twisted网络编程框架知识点解析 #### 一、引言 Twisted 是一个非常强大的异步编程框架,主要用于Python中的网络编程。该框架能够帮助开发者轻松地构建高性能的网络应用,包括但不限于客户端和服务端应用...

    Twisted系列教程 的中文翻译

    Twisted是Python语言中一个非常重要的网络编程框架,其核心理念在于提供一个事件驱动模型以实现异步编程。本系列教程是对Twisted框架的详细介绍,从基础理论到实际应用,逐步引导读者入门并深入理解Twisted的各种...

    The Twisted Documentation-20120213.pdf

    根据提供的文档信息,我们可以深入探讨《The Twisted Documentation-20120213.pdf》中的关键知识点,特别是与Delphi相关的部分。虽然文档主要围绕Twisted框架展开,但我们将重点放在文档所涵盖的核心概念和技术上。 ...

    twisted网络通信模型

    from twisted.internet import reactor, protocol class MyProtocol(protocol.Protocol): def dataReceived(self, data): print("Received:", data) class MyFactory(protocol.Factory): protocol = MyProtocol...

Global site tag (gtag.js) - Google Analytics