Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 844 Bytes

README.md

File metadata and controls

47 lines (32 loc) · 844 Bytes

cháofēng

Cháofēng is a simple telnet bbs framework for python

更多的文档写在wiki里.

Hello, world

Here is a simple example app for Chaofeng :

from chaofeng import Frame, Server
import chaofeng.ascii as c

class Hello(Frame):

    def initialize(self):
        self.write('Hello,World!')
        self.close()

    def clear(self):
        self.write('Don leave me alone ...\r\n')

if __name__ == '__main__' :
    s = Server(Hello)
    s.run()

作为服务器,你可以这样运行:

python /path-to-the-file/

作为客户端,你可以这样(在linux):

telnet host port

一般的,本地的host是填loaclhost,port是5000。所以如果服务器是本地的话,你可以:

telnet localhost 5000