Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nameko/nameko
Python framework for building microservices
https://github.com/nameko/nameko
framework microservices nameko python
Last synced: 5 days ago
JSON representation
Python framework for building microservices
- Host: GitHub
- URL: https://github.com/nameko/nameko
- Owner: nameko
- License: apache-2.0
- Created: 2013-02-26T11:59:08.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T22:12:22.000Z (9 months ago)
- Last Synced: 2025-01-14T01:08:01.312Z (12 days ago)
- Topics: framework, microservices, nameko, python
- Language: Python
- Homepage: https://www.nameko.io
- Size: 5.69 MB
- Stars: 4,726
- Watchers: 165
- Forks: 472
- Open Issues: 95
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES
- Contributing: docs/contributing.rst
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
- starred-awesome - nameko - Python framework for building microservices (Python)
README
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 testingGetting Started
---------------* Check out the `documentation `_.
Support
-------For help, comments or questions, please go to ``_.
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. `_
Security contact information
----------------------------To report a security vulnerability, please use the `Tidelift security contact `_. Tidelift will coordinate the fix and disclosure.
Contribute
----------* Fork the repository
* Raise an issue or make a feature requestLicense
-------Apache 2.0. See LICENSE for details.