September 20, 2021 by
Mike This week we welcome Tonya Sims (@TonyaSims) as our PyDev of the Week! Tonya is a Python Developer Advocate for Vonage and is an active member of the Real Python community. Tonya recently gave a talk called "Faceoff Fun with Python Frameworks: FastAPI vs Flask" at EuroPython 2021. Let's spend some time getting to know […]
September 19, 2021 by
Mike The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain code, equations, visualizations, and formatted text. By default, Jupyter Notebook runs Python out of the box. Additionally, Jupyter Notebook supports many other programming languages via extensions. You can use the Jupyter Notebook for data cleaning and transformation, […]
September 18, 2021 by
Mike As a developer, there are times where you may end up with two or more dictionaries that you need to combine into one master dictionary. There are lots of different ways to merge dictionaries in the Python programming language. In this tutorial, you will look at a few of the old ways to merge dictionaries […]
September 17, 2021 by
Mike In this video tutorial, you will learn all about how to import modules using the import and from keywords Related Tutorials Python 101: All about imports Creating a Simple Wizard with wxPython (Video) Python 101 – Working with Files (Video)
September 16, 2021 by
Mike Python 3.10 is adding a new feature called Structural Pattern Matching, which is defined in PEP 634 and has a tutorial on the topic in PEP 636. Structural Pattern Matching brings the case / switch statement to Python. The new syntax goes beyond what some languages use for their case statements. This tutorial's aim is […]
September 15, 2021 by
Mike ReportLab is a very powerful library. With a little effort, you can make pretty much any layout that you can think of. I have used it to replicate many complex page layouts over the years. In this tutorial, you will be learning how to use ReportLab's pdfgen package. You will discover how to do the […]