Maxim Maeder

My name is Maxim Mäder, I am a young programming enthusiast looking to have fun coding and teaching you some things about programming.

I Master several programming languages like Python, PHP and JavaScript I also know how to make websites with HTML and CSS. Sometimes I even try to make games with the Godot Game Engine. But I always return to my first language Python, and that is why I love making tutorials about them. I hope you learn something from my tutorials and have as much fun as I do!



Maxim Maeder Articles


How to Create Videos from Images in Python
How to Create Videos from Images in Python

Learn how to create videos from image arrays using Python and OpenCV, focusing on timelapses. Setting up OpenCV, using argparse for input parameters, and processing images in batches. Key steps include configuring the VideoWriter object, iterating over images to build the video, and tips for efficient memory use.

How to Use the Argparse Module in Python
How to Use the Argparse Module in Python

Master the argparse module in Python with this comprehensive tutorial, covering command-line applications, argument parsing, real-world examples, integration with other libraries, and best practices to create user-friendly interfaces and powerful command-line tools.

How to Minify CSS with Python
How to Minify CSS with Python

Learn how to utilize cssutils library to minimize CSS files in a web project in Python.

How to Make a Python Code Editor using Tkinter in Python
How to Make a Python Code Editor using Tkinter in Python

Learn how to make a simple python code editor that supports running the code and simple syntax highlighting using Tkinter in Python.

How to Make a Rich Text Editor with Tkinter in Python
How to Make a Rich Text Editor with Tkinter in Python

Learn how to make a simple rich text editor where we can set a number of predefined styles for parts of the text via a Graphical User Interface (GUI) using Tkinter in Python.

How to Build a Spreadsheet App with Tkinter in Python
How to Build a Spreadsheet App with Tkinter in Python

Learn how to make a simple spreadsheet app like Excel, where cells can reference each other and make calculations using Tkinter library in Python.

How to Generate SVG Country Maps in Python
How to Generate SVG Country Maps in Python

Learn how to use the GADM API to make SVG maps of all world countries in Python.

How to Make a Markdown Editor using Tkinter in Python
How to Make a Markdown Editor using Tkinter in Python

Learn how you can create a markdown editor using the Tkinter library and regular expressions in Python.

How to Plot Weather Temperature in Python
How to Plot Weather Temperature in Python

Learn how to make an interactive plot that shows the temperatures forecast in a given city with matplotlib and requests libraries in Python.

Zipf's Word Frequency Plot with Python
Zipf's Word Frequency Plot with Python

Learn how to make plots with Python and matplotlib by checking texts for their word frequency distributions.

How to Make a Text Adventure Game in Python
How to Make a Text Adventure Game in Python

Learn how to make a simple text adventure game with Python using the os, json, and pyinputplus modules.

How to Make a Password Generator in Python
How to Make a Password Generator in Python

Learn how to make a password generator in Python with the ability to choose the length of each character type using the built-in random, string and argparse modules.

How to Make a Planet Simulator with PyGame in Python
How to Make a Planet Simulator with PyGame in Python

Learn how to build a planet simulator using pygame library in Python

How to Make a Typing Speed Tester with Tkinter in Python
How to Make a Typing Speed Tester with Tkinter in Python

Learn how to build a UI-based typing speed tester in Python using the built-in Tkinter library.

How to Replace Text in Docx Files in Python
How to Replace Text in Docx Files in Python

Learn how to replace text in Word document files (.docx) using python-docx library in Python.

How to Make a Calculator with Tkinter in Python
How to Make a Calculator with Tkinter in Python

Learn how to make a calculator app with various features such as history and formulas using Tkinter library in Python.