#python

[ follow ]
fromReuven Lerner
3 days 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
6 days 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.
fromNedbatchelder
6 days ago
Software development

Coverage 7.10.0: patch

Coverage 7.10 introduces significant new features including automatic support for subprocess coverage measurement and data preservation on program exit.
fromPythonshow
6 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
6 days 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.
#software-development
fromInfoWorld
1 week 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 week 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
fromPycoders
1 week ago

PyCoder's Weekly | Issue #691

Stay proactive with Postgres maintenance to avoid performance issues in Python applications.
fromRealpython
1 week ago

Exploring Python Closures: Examples and Use Cases - Real Python

Closures in Python are inner functions that capture variables from their enclosing scope.
#sqlite
fromRealpython
1 week ago

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

isinstance() determines if an object is an instance of a specified class or its superclass.
#programming
fromTalkpython
1 week 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 week 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 week 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
fromMouse Vs Python
2 weeks ago

An Intro to Asciimatics - Another Python TUI Package - Mouse Vs Python

Asciimatics is a Python package for creating text-based user interfaces.
fromInfoWorld
2 weeks 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 weeks 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
fromMouse Vs Python
2 weeks ago

Creating TUIs with Textual and Python is Released - Mouse Vs Python

Textual facilitates building sophisticated text-based user interfaces for terminal applications using Python.
Python
fromTalkpython
2 weeks 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 weeks 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
Web development
fromMedium
2 weeks ago

End-to-End Setup for Scala Pipeline and CI/CD on Windows for Python Developers

Setting up a Scala pipeline on Windows requires installing JDK 11 and configuring environment variables.
fromPybites
2 weeks ago

From SQL To SQLModel: A Cleaner Way To Work With Databases In Python - Pybites

SQLModel is a library for interacting with databases through Python objects and type annotations, eliminating the need to write direct SQL queries.
Python
#visual-studio-code
Python
fromRealpython
2 weeks ago

Episode #257: Comparing Real-World Python Performance Against Big O - The Real Python Podcast

Real-world performance of algorithms often contradicts Big O expectations, with profiling revealing significant discrepancies.
#ai-development
fromHackernoon
3 months ago
Artificial intelligence

Why Most AI Agents Fail in Production (And How to Build Ones That Don't) | HackerNoon

Build practical AI systems for production rather than flashy prototypes to ensure reliability and scalability.
fromInfoWorld
1 month ago
Python

Nifty new Python projects to watch and try

Python Installation Manager simplifies installing and managing Python versions on Windows.
Google's Agent Development Kit helps in developing AI agents for users of any AI platform.
fromHackernoon
3 months ago
Artificial intelligence

Why Most AI Agents Fail in Production (And How to Build Ones That Don't) | HackerNoon

fromMedium
3 weeks ago

Bridging the Gap: Python & Scala in Production Gen AI

Generative AI transforms human-technology interaction using Large Language Models, necessitating a robust GenAI Stack.
Python excels in AI research and prototyping but faces performance challenges in production environments.
fromRealpython
3 weeks ago

What Is Python's __init__.py For? - Real Python

__init__.py serves as a marker for Python packages, enabling directory imports and structuring code.
fromInfoWorld
3 weeks ago

Get started with Google Agent Development Kit

Google's Agent Development Kit simplifies developing AI agents in Python for various tasks.
fromPycoders
3 weeks ago

PyCoder's Weekly | Issue #689

The Gang of Four design patterns specify object-oriented solutions to common issues in code, yet Python lacks many of the problems these solutions address.
Python
#beta-release
Python
fromRealpython
3 weeks ago

Exploring Protocols in Python - Real Python

Protocols in Python enable structural subtyping and static duck typing, enhancing type hinting and type checking capabilities.
#type-checker
fromPyPy
3 weeks ago
Python

PyPy v7.3.20 release

PyPy version 7.3.20 releases interpreters for Python 2.7 and 3.11, fixing critical bugs and ensuring compatibility with upcoming Cython.
fromRealpython
3 weeks ago

Episode #256: Solving Problems and Saving Time in Chemistry With Python - The Real Python Podcast

Chemists learn coding to optimize workflows and solve problems quickly using Python.
fromQuansight
3 weeks ago

Escaping Contravariance Hell

Contravariance is a key concept in type checking that can cause confusion when using Python typecheckers.
Python
fromTalkpython
4 weeks ago

Building a JIT Compiler for CPython

Python's upcoming JIT compiler aims to enhance performance by converting bytecode into machine code.
fromPythonSpeed
4 weeks ago

500 faster: Four different ways to speed up your code

Combining multiple speed improvement practices can result in substantial performance gains in Python code.
Python
fromRealpython
4 weeks ago

Python 3.14 Preview: Template Strings (T-Strings) - Real Python

String templates allow dynamic value population through placeholders for generating text content.
Python
fromInfoWorld
4 weeks ago

How to use editable installs for Python packages

Editable installs allow you to link to Python packages, making source changes immediately available across installations.
fromPycoders
4 weeks ago

PyCoder's Weekly | Issue #688

Reading code is a great way to learn to write better code. This involves examining the Python standard library and understanding coding practices through the use of elements like for loops and data structures.
Python
fromMouse Vs Python
4 weeks ago

Creating a Website with Sphinx and Markdown - Mouse Vs Python

To create a barebones Sphinx site, run the command sphinx-quickstart NAME_OF_SITE_FOLDER inside your virtual environment. It will ask you a series of questions.
Python
Digital life
fromRealpython
1 month ago

Use TorchAudio to Prepare Audio Data for Deep Learning Quiz - Real Python

The quiz tests knowledge on audio fundamentals and using TorchAudio for deep learning preparation.
Python
fromInfoWorld
1 month ago

Google touts new Python client library for Data Commons

Google has launched a Python client library for querying the Data Commons platform, enhancing data integration capabilities.
fromRealpython
1 month ago

Episode #255: Structuring Python Scripts & Exciting Non-LLM Software Trends - The Real Python Podcast

Effective Python scripts should use PEP 723 metadata for dependency management and script organization.
Local-first software trends are shifting data privacy focus from the cloud to personal devices.
#type-hinting
fromRealpython
1 month ago

The Python print() Function Quiz - Real Python

The print() function outputs objects to the console or a specified file-like stream, and the quiz tests understanding of its parameters and best practices.
Python
fromHackernoon
2 years ago

Meet Mojo: The Language That Could Replace Python, C++, and CUDA | HackerNoon

Python is amazing, but it’s painfully slow. Mojo, launched by Modular AI, provides the same syntax but enhances speed and optimizes for GPU usage.
Scala
fromInfoWorld
1 month ago

Pyrefly and Ty: Two new Rust-powered Python type-checking tools compared

Python's third-party tools increasingly use Rust for performance and speed improvements.
fromPycoders
1 month ago

PyCoder's Weekly | Issue #687

Regular Postgres maintenance is crucial for preventing performance issues in Python applications.
Kubernetes and Karpenter are vital tools for scaling web applications effectively.
fromRealpython
1 month ago

Starting With DuckDB and Python - Real Python

DuckDB provides a powerful, seamless way to manage large datasets in Python, utilizing OLAP optimization for enhanced data handling and query capabilities.
Data science
fromPythonbytes
1 month ago

Python Language Summit 2025 Highlights

The Python Language Summit at PyCon focused on future developments and security improvements in the Python community.
Music
fromTalkpython
1 month ago

New Theme Song: Served In A Flask

The Talk Python To Me podcast introduces a new theme song celebrating its transition from Pyramid to Quart with modern Python concepts.
Data science
fromTalkpython
1 month ago

10 Polars Tools and Techniques To Level Up Your Data Science

Polars offers numerous advantages over Pandas, especially when enhanced with tailored libraries.
fromInfoWorld
1 month ago

Get started with Python type hints

Python type hints enhance code clarity and static analysis of code without affecting runtime performance.
fromPycoders
1 month ago

PyCoder's Weekly | Issue #686

This blog introduces free-threaded Python updates, GPU programming advancements, and GitHub Actions for enhanced DevOps, paving the way for improved Python performance and collaboration.
Python
fromdaniel.feldroy.com
1 month ago

TIL: HTML 404 errors for FastHTML

FastAPI allows for custom HTTP responses, providing users with meaningful feedback when they access non-existent web pages. This can be particularly useful for 404 errors.
Web frameworks
Growth hacking
fromThe Hacker News
1 month ago

Malicious PyPI Package Masquerades as Chimera Module to Steal AWS, CI/CD, and macOS Data

A malicious package on PyPI can harvest sensitive developer data, targeting users of Chimera Sandbox.
fromRealpython
1 month ago

Episode #253: Starting With Marimo Notebooks & Python App Config Management - The Real Python Podcast

Marimo notebooks provide an innovative approach to interactivity in coding, featuring sandboxing for environment management and enabling reproducibility in sharing notebooks.
Python
fromPeterbe
1 month ago

A Python dict that can report which keys you did not use - Peterbe.com

For testing large Python objects, ensure you're unit testing everything retrieved, especially when data in reports doesn't match the database query.
Django
Python
fromTalkpython
1 month ago

GPU Programming in Pure Python

NVIDIA's CUDA Python SDKs enable high-performance GPU programming in Python without needing low-level languages like C++.
NumPy-style arrays facilitate GPU programming for those familiar with Python.
Podcast
fromTalkpython
1 month ago

Deep Dives Complete: 600K Words of Talk Python Insights

All episodes of the Talk Python To Me podcast now feature comprehensive deep dive analyses to enhance learning.
Deep dives total 600,000 words, providing 50 hours of reading resources for podcast listeners.
Django
fromPython GUIs
1 month ago

PyQt6, PySide6 Books - Create GUI Applications with Python & Qt, 6th Edition

The 6th edition updates 'Create GUI Applications with Python & Qt' for PyQt6 & PySide6, including new features and extensive examples.
Django
fromMartin Fitzpatrick
1 month ago

PyQt6, PySide6 Books - Create GUI Applications with Python & Qt, 6th Edition

The latest edition of the book includes significant updates reflecting the newest features of PyQt6 and PySide6.
Python
fromInfoWorld
1 month ago

Get started with the new Python Installation Manager

Python Installation Manager for Windows simplifies managing and selecting Python versions, addressing a long-standing weakness.
fromThe JetBrains Blog
1 month ago

Faster Python: Concurrency in async/await and threading | The PyCharm Blog

In programming, multithreading refers to the ability of a program to execute multiple sequential tasks concurrently. However, multithreading in Python is limited because of the Global Interpreter Lock (GIL).
Cooking
fromPythonbytes
1 month ago

Stop with .folders in my ~/

There are a lot of interesting lessons to be learned about application design and user data access through this guide on managing user-specific storage.
DevOps
Django
fromRealpython
1 month ago

Python Hits the Big Screen and Other Python News for June 2025 - Real Python

CultRepo releases trailer for 'Python: The Documentary', celebrating Python's legacy and contributors.
Artificial intelligence
fromMedium
2 months ago

Build Multi-Agentic AI Agents with AWS Bedrock from Scratch..

Create a multi-agent system using AWS Bedrock and Lambda functions, enabling agents to communicate and respond based on user inquiries.
Online learning
fromeLearning Industry
1 month ago

7 Ways To Supercharge Your eLearning Workflow With VBA And Python Automation

VBA and Python significantly enhance efficiency in eLearning through automation.
Combining VBA and Python can streamline workflows and reduce errors in educational content development.
Python
fromMouse Vs Python
1 month ago

Parsing XML Comments with Python - Mouse Vs Python

Python's xml module can be used to uncomment lines in XML, but requires a custom parser with insert_comments set to True.
fromRealpython
1 month ago

Python Project: Build a Word Count Command-Line App - Real Python

The word count command (wc) is a foundational utility for counting lines, words, and bytes in files. This exercise explores its design via Python.
Python
[ Load more ]