Python

[ follow ]
#data-science
#release-candidate
fromDeveloper Tech News
1 day ago
Python

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.
fromPythoninsider
1 day ago
Python

Python Insider: Python 3.14 release candidate 1 is go!

Python 3.14.0rc1 is the first release candidate with no ABI changes, final release on October 7, 2025.
#dependency-management
fromPythonmorsels
1 day 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
fromdaniel.feldroy.com
1 day ago

TIL: Single source version package builds with uv

Remove `version` in `pyproject.toml` and replace with `dynamic = ["version"]`. Add `[tool.setuptools.dynamic]` and specify the location of the version using `version = { attr = "mypackage.__version__" }`.
Python
#inheritance
fromPycoders
1 day ago
Python

PyCoder's Weekly | Issue #691

Stay proactive with Postgres maintenance to avoid performance issues in Python applications.
fromRealpython
3 days ago
Python

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

isinstance() determines if an object is an instance of a specified class or its superclass.
fromRealpython
2 days ago

Exploring Python Closures: Examples and Use Cases - Real Python

In Python, a closure is typically a function defined inside another function that grabs the objects defined in its enclosing scope and associates them with the inner function.
Python
#debugging
#sqlite
#tensorflow
fromHackernoon
1 month ago
Python

Optimizing Machine Learning Models with Precise Gradient Management in TensorFlow | HackerNoon

fromHackernoon
1 month ago
Python

Optimizing Machine Learning Models with Precise Gradient Management in TensorFlow | HackerNoon

#programming
#optimization
fromThepythoncodingstack
6 days 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
#cpython
#ai-development
#memory-management
#gunicorn
fromMedium
1 week ago

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

To prepare your environment for Scala pipeline development, start by installing JDK 11. Ensure JAVA_HOME environment variable is set to your JDK installation path.
Python
fromPython Software Foundation Blog
1 week ago

Affirm Your PSF Membership Voting Status

Every PSF voting-eligible Member must affirm their membership to vote in this year's election. Affirmation is required by August 26th, 2:00 pm UTC.
Python
fromMouse Vs Python
1 week ago

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

Textual is a rapid application development framework for your terminal or web browser, enabling the creation of complex applications with practical user interfaces.
Python
#community-engagement
fromRealpython
1 week ago

How to Debug Common Python Errors - Real Python

Debugging is the process of identifying, analyzing, and resolving issues, errors, or bugs in your code. It involves systematically examining code to determine the root cause of a problem.
Python
#automation
fromRealpython
1 week ago

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

The task coded in Go optimized from O(n²) to O(n) contrasts with Python, questioning whether an interpreted language can match the performance of a compiled one.
Python
#visual-studio-code
#large-language-models
fromEuroPython Blog
1 week ago

July Newsletter: Can't make it to Prague? Join Us Online!

Remote tickets for EuroPython 2025 are now available, allowing attendees worldwide to participate in sessions, keynotes, and panels while interacting through chat and Q&As.
Python
fromRaymondcamden
1 week ago

Using GenAI to Create a SDK from Sample Code

The developer will make an instance of this class and pass in their credentials for ease of use.
Python
fromPybites
1 week 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
fromMedium
2 weeks ago

Competition of data processing languages on JVM: Kotlin, Scala and SPL

Kotlin is designed to enhance Java efficiency, suitable for various applications including WebServer, Android projects, and game development, demonstrating strong universality.
Python
fromRealpython
2 weeks ago

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

The special file __init__.py serves as a marker to indicate that its containing directory is a regular package. When people talk about a package in Python, they generally mean a regular package.
Python
#software-development
fromPycoders
2 weeks ago
Python

PyCoder's Weekly | Issue #689

Design patterns can be less relevant in Python due to the language's unique features.
fromPythoninsider
2 weeks ago

Python Insider: Python 3.14.0 beta 4 is here!

Python 3.14.0b4 is the last of four planned beta releases, aimed at giving the community the chance to test new features and bug fixes.
#type-hinting
fromRealpython
2 weeks ago

Free-Threaded Python Unleashed and Other Python News for July 2025 - Real Python

The third beta of Python 3.14 now officially supports the no-GIL build for CPython, signaling a new era of multi-core Python.
Python
fromPython Software Foundation Blog
2 weeks ago

Thinking about running for the PSF Board? Let's talk!

PSF Board elections are an opportunity for the community to select representatives who will help create a vision for the future of the Python community.
Python
fromPyPy
2 weeks ago

PyPy v7.3.20 release

PyPy version 7.3.20 introduces two interpreters: PyPy2.7, supporting Python 2.7, and PyPy3.11, supporting Python 3.11, with fixed bugs and enhanced compatibility.
fromRealpython
3 weeks ago

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

String templates are strings containing placeholders that can be populated with specific values dynamically at runtime, used for generating textual content.
Python
fromPythonbytes
3 weeks ago

Motivation time

Trey Hunter has compiled a comprehensive list of cheat sheet articles on his Python Morsels blog, offering valuable resources for Python developers looking to enhance their skills.
Python
fromMouse Vs Python
3 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
fromMedium
2 months ago

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

Your job is to assess the user's question and pass it to the appropriate agent for further handling. If the user's question is not about accommodation or restaurants, reply back with 'I can't help you, I can only help with restaurants and accommodation.'
Python
fromRealpython
3 weeks ago

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

The structure of your Python script should include inline metadata as defined in PEP 723 to facilitate automatic environment creation and dependency management.
Python
fromInfoWorld
3 weeks ago

Google touts new Python client library for Data Commons

Google's newly launched Python client library for Data Commons helps developers easily query and integrate statistical data from over 200 datasets, supporting custom instances.
Python
fromLuke Plant's home page
3 weeks ago

Statically checking Python dicts for completeness

In Python, creating a dictionary to correspond with enum states can lead to inconsistencies; ensuring each entry matches the enum is crucial for reliability.
fromInfoWorld
4 weeks ago

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

Modern language tooling demands a real-time feedback loop that Python can't always deliver at the speed required. Rust fills that gap.
Python
#development-tools
fromPycoders
4 weeks ago
Python

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.
fromPythonbytes
1 month ago

Python Language Summit 2025 Highlights

The Python Language Summit led at PyCon highlighted key discussions among Python developers, shaping the future trajectory and addressing security concerns in the community.
Python
fromHackernoon
1 month ago

MCP Demystified: What Actually Goes Over the Wire?? | HackerNoon

Trying to learn a protocol without wire dumps is like trying to learn fencing from a PowerPoint. Give me the electrons or give me death.
Python
fromPythonbytes
1 month ago

Slow tests go last

In episode 436 of Python Bytes, the hosts discuss the importance of social media engagement, live streaming, and the benefits of using PropelAuth for app authentication.
Python
fromNedbatchelder
1 month ago

Math factoid of the day: 63

The number of cubes in a Haüy octahedron with N layers aligns with the number of Delannoy steps on a 3×N grid, revealing geometric connections.
Python
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
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.
Python
[ Load more ]