Author name: Aarnav Subbaramu

Build a MP3 cutter/trimmer application using Python and Tkinter

Audio is a widespread form of media on the web, commonly in the MP3 file format. In this tutorial, we’ll learn how to build a GUI application in Python which can trim/cut any user input portion of an MP3 audio file. To build such an application, we’ll use the following packages: ‘pydub‘ package in Python …

Build a MP3 cutter/trimmer application using Python and Tkinter Read More »

Create an English to Spanish language translator using Python

Text translation is becoming increasingly important in a growing digital space like the internet. With users from multiple nationalities accessing online websites, it’s essential to create globally readable content. This involves the task of language translation. Using Python, we can build a language translator to accomplish this goal. In this tutorial, we will understand 2 …

Create an English to Spanish language translator using Python Read More »

How to print the calendar of any year in Python using Tkinter

To create a Graphical User Interface (GUI) calendar, where users can input their year of choice, press enter, and obtain a calendar for each month of the year, we can make use of multiple GUI packages. One of the easiest to use is the ‘tkinter’ package available in Python. The packages used in this tutorial …

How to print the calendar of any year in Python using Tkinter Read More »

Scroll to Top