Posts by Tuhin Mitra

Author Biographical Info: Not available

Create a Timer using PyQt5 and Playing alarm sound in Python

By Tuhin Mitra

In this post, I will be teaching you an application in Python that can be used as a “TIMER” for setting alarms for under 1 hour or so. And by doing this small project, .... Read More

Convert string to bytes in Python

By Tuhin Mitra

The basic definition for bytes is the encoded objects of string that can be stored in disk and can be restored into their original form by decoding them to string. The common diffe.... Read More

PyQt5 to exe file

By Tuhin Mitra

In this post you’ll get to know about, how you can convert your PyQt5 GUI program(s) into a standalone .exe file or executable for any platform. You just need to install pyin.... Read More

Creating Analog Clock using PyQt5 in Python

By Tuhin Mitra

In this post, I’ll show how to create an Analog Clock using PyQt5. I am using Python 3.7 throughout all the programs and this should work fine in Python3.8 also. The analog c.... Read More

Solving Linear Regression without using Sklearn and TensorFlow

By Tuhin Mitra

In this post, I’ll be writing about ways by which you can actually make a prediction on training data sets using Linear Regression Algorithm, that too by doing all maths by y.... Read More

Displaying an image using PyQt5 in Python

By Tuhin Mitra

In this post, I will specifically be demonstrating to you the use of a QGraphicsView() widget in PyQt5. I’ll be using Python 3.7 and the versions of other modules are as foll.... Read More

sklearn.model_selection.train_test_split in Python

By Tuhin Mitra

In this post, I will be explaining about scikit learn’s “train_tets_split" function. This utility function comes under the sklearn’s ‘model_selection‘.... Read More

Find the duration of GIF image in Python

By Tuhin Mitra

After reading this post, you will have a general idea of how you can work with gifs using PIL(Python Imaging Library). Access its metadata information and find relevant ( human-rea.... Read More

Related Posts