PyQt vs Tkinter – The better GUI library

This article compares two Python GUI libraries, PyQt vs Tkinter. The PyQt vs Tkinter debate is one I’ve been seeing ever since I joined up with several Python communities and social media sites. In this article, I’m going to share my own journey and personal experience with these two GUI libraries. Besides my personal experience, … Read more

Python Game projects with source code

This article is a compilation of several game projects in Python along with the source code. This page serves as a compilation point for all the game projects available on our site, Coderslegacy. Each Game project is listed with the following details. An Image of the game A brief description of the game A brief … Read more

Python “No Module Named” Import Error

This Article discusses the famed “no module named xxx” import error in Python. As someone who owns a Coding website and blog, I tend to keep an eye out on the Programming community and their troubles. If I notice enough demand for a certain topic or question, I’ll create a tutorial or make a post … Read more

Python – Import a class from another File

This Article explains how to import a class from another Python file. If you’ve been coding in Python for over a week, there’s a 9 out of 10 chance that you’ve already begun importing some libraries into your code to enhance the functionality of your code. Python would not have the world wide recognition it … Read more

Best Python Libraries to learn

This article covers the best Python libraries out there. A language that relies heavily on it’s library, Python has amassed hundreds of thousands of libraries over the years. Here we have selected over a dozen of Python’s best libraries to show case their abilities. The libraries mentioned in this article will cover a wide range … Read more

How to create Software in Python?

Before we get around to explaining how to create software using Python, let’s list down some basic differences between an actual software and the small scripts. A Graphical User Interface (GUI) Exception Handling Logging System Software is compiled code that is executed Scripts are interpreted Script are typically a single file program Software may consists … Read more