#python

[ follow ]
Python
fromInfoWorld
2 days ago

Making good choices: How to get the best from Python tools

Leverage Python's strengths and avoid its pitfalls to excel in AI development using tools like uv run and SQL-free chatbot libraries.
fromGrahamdumpleton
3 days ago

Status of wrapt (September 2025) - Graham Dumpleton

Back then, constructing decorators using function closures had various short comings and the resulting wrappers didn't preserve introspection and various other attributes associated with the wrapped function. Many of these issues have been resolved in updates to Python and the functools.wraps helper function, but wrapt based decorators were still useful for certain use cases such as being able to create a decorator where you could work out whether it was applied to a function, instance method, class method or even a class.
Python
fromRealpython
5 days ago

Defining and Calling Python Functions Quiz - Real Python

Interactive 9-question quiz to practice defining and calling Python functions, positional/keyword arguments, defaults, docstrings, collecting extra arguments, and enforcing parameter passing.
#dictionaries
#string-splitting
fromRealpython
6 days ago

The Python Documentary Celebrates History While Developer Surveys Celebrate Python - Real Python

At the end of August, Python: The Documentary premiered on YouTube, where you can watch it for free. It's an 84-minute film tracing Python's journey from Amsterdam side project to the world's most popular programming language: Produced by CultRepo (formerly Honeypot) and directed by Ida Bechtle, the documentary explores Python's evolution and the community that shaped it. It features Guido van Rossum and key contributors like Mariatta and recent Real Python Podcast guest, Travis Oliphant. The documentary also highlights the important role of PyLadies and addresses controversial topics including the Python 2 to 3 transition.
Software development
Python
fromPythonmorsels
1 week ago

The power of Python's print function

Python's print function accepts multiple positional arguments, can unpack iterables, handles automatic string conversion, and offers flexible separators—often replacing join for printing.
Python
fromPythonmorsels
1 week ago

The power of Python's print function

Python's print function accepts multiple arguments, unpacks iterables with *, and automatically converts objects to strings, providing flexible alternatives to join and f-strings.
Python
fromRealpython
1 week ago

uv vs pip: Managing Python Packages and Dependencies Quiz - Real Python

Choose between pip and uv by weighing install speed, dependency locking, project-level management, and suitability for specific environments and workflows.
Web frameworks
fromThe JetBrains Blog
1 week ago

The Most Popular Python Frameworks and Libraries in 2025 | The PyCharm Blog

FastAPI is a modern, high-performance, type-safe, asynchronous Python framework ideal for building fast APIs and deploying ML models with auto-generated documentation.
#pytest
Python
fromPythonmorsels
1 week ago

Checking your operating system in Python

Use os.name, sys.platform, or platform.system() to detect the operating system in Python, varying in granularity and user-facing naming.
Software development
fromRealpython
2 weeks ago

Deep vs Shallow Copies in Python Quiz - Real Python

Practice deep and shallow copying in Python, including assignment semantics, object identity, nested and user-defined object copying, plus writing and customizing copy helpers.
#closures
Python
fromRealpython
2 weeks ago

Exploring Python T-Strings Quiz - Real Python

Covers essential Python string formatting techniques including f-strings, C-style formatting, str.format(), and new t-strings in a 10-question interactive quiz.
fromRealpython
2 weeks ago

Profiling Performance in Python Quiz - Real Python

Ready to level up your Python code optimization skills? In this quiz, you'll revisit key concepts about profiling, benchmarking, and diagnosing performance bottlenecks. You'll practice with tools like cProfile and timeit, and see how deterministic and statistical profilers differ.
Python
fromRealpython
2 weeks ago

Working With Python's .__dict__ Attribute Quiz - Real Python

This quiz helps you sharpen your understanding of Python's .__dict__ attribute.
Python
Artificial intelligence
fromPythonshow
1 month ago

54 - Neural Networks and Data Visualization with Nicolas Rougier

Nicolas Rougier applies computational models, neural networks, and Python-based visualization tools like Glumpy and VisPy to study the brain and neurodegenerative diseases.
Python
fromRealpython
2 weeks ago

Python Skill Test Quiz - Real Python

A 12-question interactive quiz evaluates Python skills from fundamentals to advanced topics, scoring one point per correct answer and offering explanations and study links.
#docstrings
Python
fromZero To Mastery
2 weeks ago

[August 2025] Python Monthly Newsletter | Zero To Mastery

Curated Python highlights for August 2025 covering performance myths, alternatives to classes, nested functions, a pixel-art editor, pyx registry beta, and code formatter updates.
fromhttps://daniel.feldroy.com
3 weeks ago

TIL: Single source version package builds with uv (redux)

Here's how [he demonstrated](https://adamj.eu/tech/2025/07/30/python-check-package-version-importlib-metadata-version/) I should be doing it instead. ```toml # pyproject.toml [project] name = "air" version = "0.25.0" # This is the source of truth for the version number ```
Python
JavaScript
fromTreehouse Blog
3 weeks ago

Python vs. JavaScript Comparison for 2025

Knowledge of JavaScript makes learning Python easier because core programming concepts and data types are similar, with syntax and style differences to adjust to.
fromPycoders
3 weeks ago

PyCoder's Weekly | Issue #695

Subinterpreters provide a means to run separate Python interpreters within a single process, allowing for better isolation. However, the community currently lacks a deep understanding of how to effectively implement them.
Software development
Python
fromTheregister
3 weeks ago

Python usage growing while Foundation struggles for funds

The eighth Python Developer Survey shows that Python usage is expanding with increasing numbers of new developers and significant challenges in version upgrades.
Python
fromRealpython
3 weeks ago

Deep vs Shallow Copies in Python - Real Python

Understanding how to copy objects in Python is essential for effective programming.
Python
fromPythonbytes
3 weeks ago

Auto-activate Python virtual environments for any project

Astral is enhancing Python packaging and management tools for developers.
Python
fromTechzine Global
3 weeks ago

Python matures: data science and Rust integration dominate

Python usage is dominated by data science, with newcomers comprising a significant portion of the developer community.
fromThe Hacker News
3 weeks ago

Malicious PyPI and npm Packages Discovered Exploiting Dependencies in Supply Chain Attacks

The termncolor package and its malicious dependency colorinal highlight the increasing sophistication of attacks targeting software repositories, enabling attackers to achieve remote code execution and system persistence.
Information security
Python
fromTest & Code
4 weeks ago

Test & Code | 238: So Long, and Thanks for All the Fish

The podcast journey spanned ten enjoyable years, focusing on software development and testing.
#object-oriented-programming
Python
fromInfoWorld
1 month ago

The truth about Python's AI-powered popularity surge

Python is gaining popularity due to its integration with AI, ease of use, and new features like editable installs and improved type hinting.
#programming
Python
fromPycoders
2 months ago

PyCoder's Weekly | Issue #690

Python's JIT compiler and __init__.py module are key topics for developers, alongside debugging tools and data privacy compliance within the Python Software Foundation.
Python
fromPythoninsider
1 month ago

Python 3.14.0rc2

Python 3.14.0rc2 is released with a crucial bug fix affecting .pyc files, leading to a third release candidate before the final release.
fromwww.tensorflow.org
1 month ago

Why Your tf.function Isn't Working the Way You Think (and How to Fix It)

The outputs of a tf.function must be return values, and side effects may behave unexpectedly, executing only for the first call with a set of inputs.
Python
Python
fromQuansight
1 month ago

Support for ABI3 packages in conda!

Point72 and Quansight funded ABI3 packages for better compatibility in the conda ecosystem.
fromRealpython
1 month ago

Episode #260: Harnessing the Power of Python Polars - The Real Python Podcast

Polars offers significant speed advantages, particularly in data projects when compared to pandas, making it an optimal choice for performance-centric applications.
Python
fromMicrosoft for Python Developers Blog
1 month ago

Python in Visual Studio Code - August 2025 Release - Microsoft for Python Developers Blog

The Python Environments extension continued to receive bug fixes and improvements as part of the controlled roll-out currently available to 20% of Stable users.
Python
fromMouse Vs Python
1 month ago

Python 101: Reading TOML with Python - Mouse Vs Python

TOML (Tom's Obvious Minimal Language) is a configuration format adopted widely in Python development, especially useful in popular Python packages which use pyproject.toml.
Python
Python
fromThe Hacker News
1 month ago

Webinar: How to Stop Python Supply Chain Attacks-and the Expert Tools You Need

Python packages harbor risks due to rising supply chain attacks, notably through various exploitation techniques like typo-squatting and repo-jacking.
fromPythoninsider
1 month ago
Python

Python 3.13.6

Python 3.13.6 is the latest release, featuring new features, optimizations, and around 200 bugfixes since the previous version.
fromJames Bennett
1 month ago

Litestar is worth a look

Litestar stands out in the Python web ecosystem as a unique async-first, type-hint-driven framework, attracting positive attention due to its simplicity and ease of use.
Web frameworks
#mixin-classes
Python
fromHackernoon
8 years ago

5 Python Libraries I Wish I'd Found Sooner | HackerNoon

Five Python libraries can drastically improve data processing efficiency and debugging experience.
#postgres
fromPycoders
1 month ago
Python

PyCoder's Weekly | Issue #693

Postgres maintenance helps prevent performance issues in Python apps through regular monitoring and optimization practices.
fromPycoders
1 month ago
Python

PyCoder's Weekly | Issue #691

Stay proactive with Postgres maintenance to avoid performance issues in Python applications.
fromHackernoon
2 years ago

Pandas vs Polars in 2025: Choosing the Best Python Tool for Big Data | HackerNoon

Pandas is a Python library used for data analysis and manipulation on labeled datasets. The core mission of the Pandas development team is to be the fundamental high-level building block for practical, real-world data analysis in Python. It provides tools and methods for aligning, merging, transforming, and managing data from various persistent stores, positioning itself as the definitive tool for data analysis in Python.
Python
fromRealpython
1 month ago

Exploring Python T-Strings - Real Python

Python 3.14's t-strings allow you to intercept and transform input values before assembling them into a final representation.
Python
fromRealpython
1 month ago

Mastering While Loops Quiz - Real Python

This quiz will allow participants to practice indefinite iteration using the Python while loop, covering basic and complex while loops along with interrupting loop execution.
Python
Python
fromInfoWorld
1 month ago

Python popularity boosted by AI coding assistants - Tiobe

Python reached its highest historical rating in the Tiobe index, boosted by AI coding assistants.
fromPythonbytes
1 month ago

Patching Multiprocessing

Ruff is a formatter written in Rust that is extremely fast and has special love for the Python community, including a PyPI wrapper for easy installation.
Python
Python
fromRealpython
1 month ago

Skip Ahead in Loops With Python's Continue Keyword - Real Python

The continue keyword in loops jumps to the next iteration, skipping any code after it in the loop body.
fromRealpython
1 month ago

Build a Scalable Flask Web Project From Scratch Quiz - Real Python

The quiz allows participants to test their knowledge of Flask application development through 9 questions related to views, blueprints, and application factory patterns.
Web frameworks
fromRealpython
1 month ago

Introduction to Web Scraping With Python Quiz - Real Python

This quiz consists of seven questions that test knowledge on core concepts of web scraping using Python, focusing on Beautiful Soup and MechanicalSoup.
Web development
Python
fromRealpython
1 month ago

Working With Python's Built-in Exceptions Quiz - Real Python

The interactive quiz tests knowledge of Python's built-in exceptions and error handling.
Python
fromRealpython
1 month ago

Python Namespace Packages Quiz - Real Python

Python's namespace packages enable modular package organization across directories.
#textual
fromReuven Lerner
1 month ago

How to conference

Make sure your badge has your name facing out, so that people can read it. Euro Python has, for several years, had two-sided badges to ensure that your name is visible even if (when) it turns around, which is great.
Python
fromRealpython
1 month ago

Episode #258: Supporting the Python Package Index - The Real Python Podcast

Supporting over 650,000 projects on the Python Package Index involves tackling user issues and enhancing community engagement through varied support roles.
Writing
fromPythonshow
7 months ago

Writing Creating TUI Applications with Textual and Python

Exploring the journey of creating 'Creating TUI Applications with Textual and Python' reveals challenges and the joy of using Textual.
fromwww.techiediaries.com
1 month ago

Python Roadmap with Free Courses/Certifcates to High-Paying Jobs

In 2025, the programming language most linked to six-figure salaries is Python, particularly in fields such as artificial intelligence, data science, and cybersecurity.
Python
fromDeveloper Tech News
1 month ago

Python 3.14 slithers closer with RC1 arrival

Python 3.14's first release candidate (3.14.0rc1) is now available, ensuring the codebase's stability ahead of the official launch.
fromInfoWorld
1 month ago

Amp your Python superpowers with 'uv run'

Astral's uv tool simplifies Python project setup by automating the creation of temporary environments and managing dependencies, allowing smooth execution of programs without formal installation.
Python
fromPythonmorsels
1 month ago

Don't call dunder methods

Dunder methods, or double-underscore methods, serve as hooks for customizing Python behavior, allowing programmers to define or modify functionalities like equality and comparison.
Python
#sqlite
Python
fromRealpython
1 month ago

What Does isinstance() Do in Python? - Real Python

isinstance() determines if an object is an instance of a specified class or its superclass.
Python
fromTalkpython
1 month ago

Python Language Summit 2025

Annual Python Language Summit focuses on high-priority topics for CPython with insights from core developers and experts.
fromThepythoncodingstack
1 month ago

Do You Really Know How `or` And `and` Work in Python?

In Python, every object is either truthy or falsy. When using the built-in bool(), truthy objects return True and falsy objects return False.
Python
fromWingware
1 month ago

Wing Python IDE Version 11.0.2 - July 17, 2025 - Wing Python IDE

Wing Python IDE version 11.0.2 enhances source code analysis and fixes integration issues with the ruff external code checker, along with other minor improvements.
Python
Python
fromInfoWorld
1 month ago

4 tips for getting started with free-threaded Python

Free-threaded Python is officially supported, allowing true parallelism that may disrupt traditional threading assumptions.
fromPythonbytes
2 months ago

Can't Register for VibeCon

Auth is crucial for application security and user experience. Propel Auth simplifies the integration process, allowing developers to focus on their core value propositions.
Python
Python
fromTalkpython
2 months ago

Stories from Python History

The podcast features Barry Warsaw, Paul Everitt, Carol Willing, and Brett Cannon sharing humorous stories from Python's history and evolution.
fromRealpython
2 months ago

How to Debug Common Python Errors Quiz - Real Python

Debugging involves identifying, analyzing, and resolving issues in Python code. Important techniques include reading tracebacks, using print() for value tracking, and writing tests to catch errors.
Python
[ Load more ]