Python 3 microservice framework using asyncio (async / await) with HTTP, RabbitMQ / AMQP and AWS SNS+SQS support for event bus based communication.
Tomodachi is a tiny framework designed to build fast microservices listening on HTTP or communicating over event driven message buses like RabbitMQ, AMQP, AWS (Amazon Web Services) SNS+SQS, etc. It's designed to be extendable to make use of any type of transport layer available.
Tomodachi (友達) means friends – and since microservices wouldn't make sense on their own I think they need to be friends with each other. 😍 👬 👭 👫
$ pip install tomodachi
import tomodachi
from tomodachi.transport.http import http, http_error
@tomodachi.service
class Service(object):
name = 'example_service'
# Request paths are specified as regex for full flexibility
@http('GET', r'/resource/(?P<id>[^/]+?)/?')
async def resource(self, request, id):
# Returning a string value normally means 200 OK
return 'id = {}'.format(id)
@http('GET', r'/health')
async def health_check(self, request):
# Return can also be a tuple, dict or even an aiohttp.web.Response
# object for more complex responses - for example if you need to
# send byte data, set your own status code or define own headers
return {
'body': 'Healthy',
'status': 200
}
# Specify custom 404 catch-all response
@http_error(status_code=404)
async def error_404(self, request):
return 'error 404'
$ tomodachi run service.py
Offered under the MIT license
The latest developer version of tomodachi is available at the GitHub repo https://github.com/kalaspuff/tomodachi
- What is the best way to run a tomodachi service?
- There is no way to tell you how to orchestrate your infrastructure. Some people may run it containerized in a Docker environment, deployed via Terraform and some may run several services on the same environment, on the same machine. There are no standards and we're not here to tell you about your best practices.
- Are there any more example services?
- There are a few examples in the examples folder, including examples to publish events/messages to an AWS SNS topic and subscribe to an AWS SQS queue. There's also a similar example of how to work with pub-sub for RabbitMQ via AMQP transport protocol.
- Why should I use this?
- I'm not saying you should, but I'm not saying you shouldn't.
tomodachi
is a perfect place to start when experimenting with your architecture or trying out a concept for a new service. It may not have all the features you desire and it may never do. - Should I run this in production?
- It's all still highly experimental and it depends on other experimental projects, so you have to be in charge here and decide for yourself. Let me know if you do however!
- Who built this and why?
- My name is Carl Oscar Aaro and I'm a coder from Sweden. I simply wanted to learn more about asyncio and needed a constructive off-work project to experiment with – and here we are. 🎉