Tag: python

June 13, 2021

Getting Started With Locust: A Python Based Performance Testing Tool

Last year in one of the consulting assignments, I was asked to perform performance testing on an application using locust, client wanted to integrate load testing within backend code which was written in python. Initially, I suggested JMeter but the client said a valid point that they want something that can easily be maintained by developers later on without much training. I understood their point […]

March 6, 2021

How to create a compressed tar file with the relative file path in python

Whether you are working on file-heavy applications or on logs heavy applications, compressing files to save storage is very useful for efficient files management as well as disk storage management. Recently I worked on a project which required compressing a set of files and folders and below are some useful things I noticed while creating a compressed tar file in python: Create a simple tar […]