python开发webapi_Python webapi包_程序模块 - PyPI - Python中文网

快速启动

定义消息和服务:class TestRequest(messages.Message):

string = messages.StringField(1)

class TestResponse(messages.Message):

string = messages.StringField(1)

@webapi.package('examplepackage')

class ExampleService(object):

@webapi.method(TestRequest, TestResponse, 'examplemethod')

def test(self, request):

""" an identity function"""

assert isinstance(request, TestRequest)

return TestResponse(string=request.string)

构建wsgi应用程序:API = webapi.api([ExampleService], 'exampleapi', 'v1')

routes = [

webapp2.Route('/rpc', webapi.rpc_handler(API))

]

app = webapp2.WSGIApplication(routes)

api应该在/rpc上可用。

方法exampleAPI.examplePackage.exampleMethod应可供调用方使用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值