All Projects → PacktPublishing → Python Microservices Development

PacktPublishing / Python Microservices Development

Licence: mit
Python Microservices Development, published by Packt

Programming Languages

python
139335 projects - #7 most used programming language

Python Microservices Development

This is the code repository for Python Microservices Development, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

We often deploy our web applications into the cloud, and our code needs to interact with many third-party services. An efficient way to build applications to do this is through microservices architecture. But, in practice, it's hard to get this right due to the complexity of all the pieces interacting with each other.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

Chapter 11 does not have any code files

The source code for the Runnerly application that is developed across the book is also provided in the code bundle.

The code will look like the following:

import time

def application(environ, start_response):
    headers = [('Content-type', 'application/json')]
    start_response('200 OK', headers)
    return bytes(json.dumps({'time': time.time()}), 'utf8')

To execute the commands and applications in this book, you will need Python 3.x, Virtualenv 1.x, and Docker CE installed on your system. Detailed instructions are given in the chapters where needed.

Related Products

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].