Hi ! The title of the post is enough to describe the next piece of code: Webserver App to receive binay content and save this as a file locally Here it is. https://gist.github.com/elbruno/286168cfdda38f5f07a6e4feec5edbc5 And, while we perform some posts to the http endpoint, we can start to see the local files in the same folder…… Continue reading #Python 🐍 – Webserver App to receive binay content and save this as a file locally
Tag: Flask
#Azure – How to push / export and run a docker python flask web app on Azure
Hi ! Here is an important reminder before starting: Please do not use as a guide to deploy to production environments. I was reading a lot about Azure Container Registry and other container scenarios. And most of the demos / tutorials are based on .Net Container Web Apps. Which is great, however there are no…… Continue reading #Azure – How to push / export and run a docker python flask web app on Azure
#Python – Flask Webserver sharing information from values in a different thread
Hi ! I have a common scenario which involves: A sensor collecting informationA web-server publishing the sensor information This is simple, however the sensor does not support constants requests, and it may return a “too many requests” response when called directly. The idea to get the sensor information directly in the web-request was not valid…… Continue reading #Python – Flask Webserver sharing information from values in a different thread