Manage Projects With pyproject.toml & Explore Polars LazyFrames
Mar 14, 2025
auto_awesome
In this engaging discussion, Christopher Trudeau, a regular Python enthusiast, shares insights on simplifying Python project management using a pyproject.toml file. He explains how this configuration file helps streamline dependencies and builds. The conversation also dives into Polars' LazyFrames, emphasizing their efficiency by storing query plans instead of data. Listeners are treated to a roundup of community news, including a build tutorial for a to-do app and recommendations for influential tech literature, enriching their Python experience.
Using pyproject.toml centralizes Python project management by simplifying package setup and dependency handling in one standardized file.
Polars LazyFrames enhance data processing efficiency by deferring execution until all query operations are specified, minimizing memory usage.
Deep dives
Simplifying Python Project Management with pyproject.toml
Using a pyproject.toml file can significantly streamline the configuration and management of Python projects. This file centralizes package setup, dependency management, and build processes into a single, standardized location, making it easier for developers to manage their projects effectively. A tutorial illustrates how to create a simple command-line application called 'Snake Say,' demonstrating the ease of project setup and structure using this file format. This approach not only formalizes project organization but also enhances clarity and reproducibility in development processes.
Exploring Lazy Frames with Polars
Lazy frames in the Polars library bring a powerful approach to handling data queries by deferring execution until all operations are specified. Instead of reading data directly into memory, a lazy frame allows chaining of multiple query operations, optimizing how data is accessed and processed. For example, filtering customer orders from Canada can be done more efficiently without loading all data into memory, as processing is only applied to the relevant subset. This capability is particularly beneficial when managing large datasets, as it minimizes memory usage and improves overall performance.
Building Interactive Data Apps with Python
A project called Preswold is introduced as a framework for creating interactive data applications, dashboards, and internal tools using Python. It enables users to easily deploy applications locally or on the cloud with minimal setup, making it accessible even for those new to programming. The platform combines Python libraries such as FastAPI and React, allowing for a seamless development experience while catering to both front-end and back-end needs. Its strong documentation and various structural features provide a solid foundation for developers interested in building modern data-driven applications.
Books on Computer Science for Developers
An engaging discussion centers on recommended fiction and non-fiction books related to computer science. While many traditional titles focus on technical principles and theoretical insights, suggestions also highlight works that fuse storytelling with programming concepts, such as 'The Cuckoo's Egg' for its narrative of computer espionage. Notable classics like 'The Mythical Man-Month' and newer entries like 'Dreaming in Code' provide valuable insights into software development and project management. The conversation emphasizes the importance of blending technical knowledge with broader perspectives to deepen one’s understanding of the field.
How can you simplify the management of your Python projects with one file? What are the advantages of using LazyFrames in Polars? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder’s Weekly articles and projects.
We share a recent Real Python tutorial by Ian Currie about managing projects with a pyproject.toml file. This file simplifies Python project configuration by unifying package setup, managing dependencies, and streamlining builds.
Christopher continues his exploration of the Polars library by covering another Real Python tutorial about working with LazyFrames. He describes how LazyFrames don’t contain data but instead store a set of instructions known as a query plan.
We also share several other articles and projects from the Python community, including a news roundup, building a to-do app with Python and Kivy, working with DuckDB directly instead of using a DataFrame library, a discussion on fiction and nonfiction books about computer science, a terminal visual effects engine, and a full-stack platform for interactive data apps.
In this Code Conversation video course, you’ll learn how to package your everyday projects with pyproject.toml. Playing on the same team as the import system means you can call your project from anywhere, ensure consistent imports, and have one file that’ll work for many build systems.
Topics:
00:00:00 – Introduction
00:02:00 – Happy Pi Day!
00:02:15 – Follow-up: Is BDD Dying?
00:03:32 – Django security releases issued: 5.1.7, 5.0.13 and 4.2.20
00:04:01 – Django 5.2 Beta 1 Released
00:04:11 – DjangoCon Africa Aug 2025 CFP
00:04:29 – Launching the PyCon US 2025 Schedule
00:04:48 – PyPy v7.3.19 Release
00:05:06 – Poetry 2.0.0 Released
00:05:34 – How to Manage Python Projects With pyproject.toml
00:12:10 – Build a To-Do App With Python and Kivy
00:16:22 – Mastering DuckDB When You’re Used to pandas or Polars
00:21:08 – Video Course Spotlight
00:22:42 – How to Work With Polars LazyFrames
00:27:41 – Fiction/Non-Fiction Books on the Topic of CS?
00:42:28 – preswald: Full-Stack Platform for Interactive Data Apps
Launching the PyCon US 2025 Schedule – This post summarizes the schedule for PyConUS, including a summary of the keynote speakers, and updates on conference swag.
How to Manage Python Projects With pyproject.toml – Learn how to manage Python projects with the pyproject.toml configuration file. In this tutorial, you’ll explore key use cases of the pyproject.toml file, including configuring your build, installing your package locally, managing dependencies, and publishing your package to PyPI.
Build a To-Do App With Python and Kivy – “In this tutorial, you’ll go through a series of steps to build a basic To-Do app with Python, SQLite, and Kivy.”
Mastering DuckDB When You’re Used to pandas or Polars – Why use DuckDB / SQL at all if you’re used to DataFrames? This article makes the case for some reasons why, and shows how to perform some operations which in DataFrames are basic but in SQL aren’t necessarily obvious.
How to Work With Polars LazyFrames – In this tutorial, you’ll gain an understanding of the principles behind Polars LazyFrames. You’ll also learn why using LazyFrames is often the preferred option over more traditional DataFrames.