Create a Simple Progress Bar with PyQt5 in Python

A progress bar is a greay way to visualize the progression of an operation or task, such as when you are downloading/transfering files, or processing a list of task. In PyQt5, there is a Progress Bar widget, which can be used to display the progress of an operation....

Automate Excel with Python and xlwings Part 1: The Basic

xlwings is an open-source library created by Zoomer Analytics to manipulate Microsoft Excel with Python. In my opinion, xlwings is probably one of the best libraries out there to interact with Excel application beside win32com. Since you can achieve quiet many things...

Python Virtual Environment For Beginners

A Python Virtual Environment in simple definition, is an isolated python development environment. When you are working on a Python project, it is always advised to create a separated Python environment to install the necessary libraries and packages. In this tutorial,...