Nameko

构建微服务的 Python 框架。「Python framework for building microservices」

Github星跟踪图

Nameko

.. image:: https://github.com/nameko/nameko/actions/workflows/ci.yaml/badge.svg

[nah-meh-koh]

.. pull-quote ::

A microservices framework for Python that lets service developers concentrate on application logic and encourages testability.

A nameko service is just a class:

.. code-block:: python

# helloworld.py

from nameko.rpc import rpc

class GreetingService:
    name = "greeting_service"

    @rpc
    def hello(self, name):
        return "Hello, {}!".format(name)

You can run it in a shell:

.. code-block:: shell

$ nameko run helloworld
starting services: greeting_service
...

And play with it from another:

.. code-block:: pycon

$ nameko shell
>>> n.rpc.greeting_service.hello(name="ナメコ")
'Hello, ナメコ!'

Features

  • AMQP RPC and Events (pub-sub)
  • HTTP GET, POST & websockets
  • CLI for easy and rapid development
  • Utilities for unit and integration testing

Getting Started

  • Check out the documentation <http://nameko.readthedocs.io>_.

Support

For help, comments or questions, please go to <https://discourse.nameko.io/>_.

For enterprise

Available as part of the Tidelift Subscription.

The maintainers of Nameko and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more. <https://tidelift.com/subscription/pkg/pypi-nameko?utm_source=pypi-nameko&utm_medium=referral&utm_campaign=enterprise&utm_term=repo>_

Security contact information

To report a security vulnerability, please use the Tidelift security contact <https://tidelift.com/security>_. Tidelift will coordinate the fix and disclosure.

Contribute

  • Fork the repository
  • Raise an issue or make a feature request

License

Apache 2.0. See LICENSE for details.

主要指标

概览
名称与所有者nameko/nameko
主编程语言Python
编程语言Makefile (语言数: 2)
平台
许可证Apache License 2.0
所有者活动
创建于2013-02-26 11:59:08
推送于2024-05-01 22:12:22
最后一次提交2023-02-22 09:44:18
发布数111
最新版本名称v3.0.0-rc11 (发布于 )
第一版名称v0.1.0 (发布于 )
用户参与
星数4.7k
关注者数164
派生数469
提交数2.6k
已启用问题?
问题数269
打开的问题数67
拉请求数410
打开的拉请求数28
关闭的拉请求数76
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?