編輯接口文件 hellowworld.thriftpython
service HelloWorld { string ping(), string say(1:string msg) }
#!/usr/bin/env python import socket import sys sys.path.append('./gen-py') from helloworld import HelloWorld from helloworld.ttypes import * from thrift.transport import TSocket from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol from thrift.server import TServer class HelloWorldHandler: def ping(self): return "pong" def say(self, msg): ret = "Received: " + msg print ret return ret handler = HelloWorldHandler() processor = HelloWorld.Processor(handler) transport = TSocket.TServerSocket("localhost", 9090) tfactory = TTransport.TBufferedTransportFactory() pfactory = TBinaryProtocol.TBinaryProtocolFactory() server = TServer.TSimpleServer(processor, transport, tfactory, pfactory) print "Starting thrift server in python..." server.serve() print "done!"
編輯 client.py
服務器
#!/usr/bin/env python import sys sys.path.append('./gen-py') from helloworld import HelloWorld from thrift import Thrift from thrift.transport import TSocket from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol try: transport = TSocket.TSocket('localhost', 9090) transport = TTransport.TBufferedTransport(transport) protocol = TBinaryProtocol.TBinaryProtocol(transport) client = HelloWorld.Client(protocol) transport.open() print "client - ping" print "server - " + client.ping() print "client - say" msg = client.say("Hello!") print "server - " + msg transport.close() except Thrift.TException, ex: print "%s" % (ex.message)
運行:app
thrift --gen py helloworld.thrift python server.py python client.py #這個分一個窗口運行
若是修改裏面的一個方法或者增長一個調用方法的話,須要在 helloword.thrift 裏面定義函數及參數。socket
在服務端運行代碼 thrift -r --gen py helloworld.thrift 函數
從新生成 gen-py 文件夾,將裏面的代碼拷貝到客戶端的服務器。spa