One of the cool tricks I came across was how to write a self-sufficient AWS Lambda function, the idea is to have your Lambda function installs its dependencies at runtime/require time, instead of having to redeploy it each time you add a new dependency. (more…)
Read more »
This project contains the examples of the book "Using Asyncio in Python: Understanding Python's Asynchronous Programming Features". - ckarageorgkaneen/using-asyncio-examples... (more…)
Read more »
In this tutorial you'll learn how to use OpenCV and deep learning to classify images with pre-trained networks via Caffe, TensorFlow, and PyTorch. (more…)
Read more »
I have been using Python extensively for the last 7 years but using pip and requirements.txt file for managing dependencies never clicked with me. Maybe it was because during those 7 years, my work required me to use Spring Boot for a few months and that ... (more…)
Read more »
Unlike languages like C, much of the time Python will free up memory for you. But sometimes, it won’t work the way you expect it to. Consider the following Python program—how much memory do you think it will use at peak? import numpy as np def load_1GB_of... (more…)
Read more »