- 授权协议: Apache
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/nameko/nameko
- 软件文档: https://nameko.readthedocs.io/
软件介绍
Nameko 是一个 Python 的微服务框架,可以让你专注于应用逻辑。
主要特性:
AMQP RPC and Events (pub-sub)
HTTP GET, POST & websockets
简化开发的命令行工具
单元和集成测试工具
示例代码:
# helloworld.py
from nameko.rpc import rpc
class GreetingService:
name = "greeting_service"
@rpc
def hello(self, name):
return "Hello, {}!".format(name)运行方法:
$ nameko run helloworld starting services: greeting_service ...
测试:
$ nameko shell >>> n.rpc.greeting_service.hello(name="ナメコ") 'Hello, ナメコ!'
An Introduction to the Analysis of Algorithms
Robert Sedgewick、Philippe Flajolet / Addison-Wesley Professional / 1995-12-10 / CAD 67.99
This book is a thorough overview of the primary techniques and models used in the mathematical analysis of algorithms. The first half of the book draws upon classical mathematical material from discre......一起来看看 《An Introduction to the Analysis of Algorithms》 这本书的介绍吧!
