A microservices framework for Python that lets service developers concentrate on application logic and encourages testability.
Project description
[nah-meh-koh]
A microservices framework for Python that lets service developers concentrate on application logic and encourages testability.
A nameko service is just a class:
# 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:
$ nameko run helloworld
starting services: greeting_service
...
And play with it from another:
$ 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.
Support
For help, comments or questions, please use the mailing list on google groups.
Contribute
Fork the repository
Raise an issue or make a feature request
License
Apache 2.0. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nameko-2.4.4.tar.gz.
File metadata
- Download URL: nameko-2.4.4.tar.gz
- Upload date:
- Size: 126.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5292c95b8224f89e840773c16530cb5e29b0d391f8420faa6652b49b5b61e30e
|
|
| MD5 |
e1b1a6b917f3bf5685c48f593d064a3e
|
|
| BLAKE2b-256 |
38e4b4433208b30265dbeb6feb60df43a12fc45e23051325b12a5e29640e5ee7
|
File details
Details for the file nameko-2.4.4-py2.py3-none-any.whl.
File metadata
- Download URL: nameko-2.4.4-py2.py3-none-any.whl
- Upload date:
- Size: 64.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15727264259155316b4a81ac88e091452af0c4fcabc4a5ee0cbab3120241411f
|
|
| MD5 |
349bd9992c56db438946710d2c8a9dde
|
|
| BLAKE2b-256 |
fff7b892dfd95c9f2570e162b952660f4b40383ff56a1dec60ea4254d40d06df
|