Azure

REST Calls with Postman

REST Calls with Postman

How to set up Postman In order to test REST calls one tool has emerged over the last few years: Postman The following 2-minute-video is great, great summary of how to set it up quickly: I do not want do get into the details. If you need them, you can find them here: https://blog.jongallant.com/2017/11/azure-rest-apis-postman/ REST calls in Azure Personally I have been working on some Azure stuff.
Azure Functions

Azure Functions

This blogpost will demonstrate how to set up Azure Functions with some Python code. More precisely, it will show how to call an Azure Function, add a parameter that specifies the name of the file that we want to read from and store that information in a database. Between reading and storing we have the chance to execute any python code we want. As long as it stays below the 30 min threshold :)
Docker Python

Docker Python

Overview Testing the base image docker run python:3 /bin/echo 'Hello world' docker run is a command to run a container. python:3 is the image you run. For example, the Ubuntu operating system image. When you specify an image, Docker looks first for the image on your Docker host. If the image does not exist locally, then the image is pulled from the public image registry – Docker Hub.