All Projects → nameko → Nameko

nameko / Nameko

Licence: apache-2.0
Python framework for building microservices

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to Nameko

Servicetalk
A networking framework that evolves with your application
Stars: ✭ 656 (-84.31%)
Mutual labels:  microservices, framework
Micro
Micro is a distributed cloud operating system
Stars: ✭ 10,778 (+157.72%)
Mutual labels:  microservices, framework
Falcon
The no-nonsense REST API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.
Stars: ✭ 8,654 (+106.93%)
Mutual labels:  microservices, framework
Deep Framework
Full-stack JavaScript Framework for Cloud-Native Web Applications (perfect for Serverless use cases)
Stars: ✭ 533 (-87.25%)
Mutual labels:  microservices, framework
Finatra
Fast, testable, Scala services built on TwitterServer and Finagle
Stars: ✭ 2,126 (-49.16%)
Mutual labels:  microservices, framework
Phpboot
☕️ 🚀 tiny & fast PHP framework for building Microservices/RESTful APIs, with useful features: IOC, Hook, ORM, RPC, Swagger, Annotation, Parameters binding, Validation, etc.
Stars: ✭ 638 (-84.74%)
Mutual labels:  microservices, framework
Qiankun
📦 🚀 Blazing fast, simple and complete solution for micro frontends.
Stars: ✭ 11,497 (+174.92%)
Mutual labels:  microservices, framework
Microservices Framework Benchmark
Raw benchmarks on throughput, latency and transfer of Hello World on popular microservices frameworks
Stars: ✭ 615 (-85.29%)
Mutual labels:  microservices, framework
Kratos
A modular-designed and easy-to-use microservices framework in Go.
Stars: ✭ 15,844 (+278.86%)
Mutual labels:  microservices, framework
Framework
Repositório principal contendo o Core e Extensions: JPA, Security, WS
Stars: ✭ 124 (-97.03%)
Mutual labels:  microservices, framework
Pysoa
A Python library for writing (micro)services and their clients
Stars: ✭ 74 (-98.23%)
Mutual labels:  microservices, framework
Restana
Super fast and minimalist framework for building REST micro-services.
Stars: ✭ 341 (-91.85%)
Mutual labels:  microservices, framework
Nest
A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications on top of TypeScript & JavaScript (ES6, ES7, ES8) 🚀
Stars: ✭ 42,981 (+927.76%)
Mutual labels:  microservices, framework
Apworks Core
Apworks framework supporting .NET Core
Stars: ✭ 190 (-95.46%)
Mutual labels:  microservices, framework
Eventhus
Go - CQRS / Event Sourcing made easy - Go
Stars: ✭ 350 (-91.63%)
Mutual labels:  microservices, framework
Reference Architecture
The Reference Architecture for Agility is a technology-neutral logical architecture based on a disaggregated cloud-based model.
Stars: ✭ 384 (-90.82%)
Mutual labels:  microservices
Larapi
An API-friendly fork of Laravel. Authentication, error handling, resource filtering, sorting, pagination and much more included
Stars: ✭ 397 (-90.51%)
Mutual labels:  framework
Di
Dependency injection container in go (golang)
Stars: ✭ 390 (-90.67%)
Mutual labels:  framework
Mip
[Deprecated] 请查看 mip2
Stars: ✭ 390 (-90.67%)
Mutual labels:  framework
Puzzle Js
⚡ Micro frontend framework for scalable and blazing fast websites.
Stars: ✭ 398 (-90.48%)
Mutual labels:  framework

Nameko

[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

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.

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 request

License

Apache 2.0. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].