News

Mypy, Pytype, Pyright, and Pyre can help you keep your type-hinted Python code bug-free. Let’s see what each of these useful tools has to offer.
How to use cProfile The cProfile module gathers statistics about the execution time of a Python program. It can report on anything from the entire app to a single statement or expression.
This post explains what a Python module is and how to use it to drastically extend the capabiltiies of your code. Plus: how to make your own!
In this video, I'm going to teach you how to write unit tests in Python using a module called Pytest. It's a skill you'll ...
The new PyScript project lets you embed Python programs directly in HTML pages and execute them within the browser without any server-based requirements. The project was announced this weekend at ...
Welcome to a new tutorial series on Beautiful Soup 4! Beautiful Soup 4 is a web scraping module that allows you to get information from HTML documents and modify them as well. It's very versatile and ...