Python

[ follow ]
#django
Python
fromTechzine Global
6 hours ago

Anthropic invests in Python ecosystem security

Anthropic is funding the Python Software Foundation $1.5 million over two years to strengthen CPython and PyPI security, tooling, and community support.
Python
fromTheregister
12 hours ago

Anthropic funds Python Foundation to help improve security

Anthropic donated $1.5 million to the Python Software Foundation to fund CPython and PyPI security improvements and broader open-source package ecosystem protections.
Python
fromPycoders
23 hours ago

PyCoder's Weekly | Issue #717

Test and monitor code performance scaling, optimize Docker builds with BuildKit cache mounts, use AI coding tools like Cursor, and apply recursive structural pattern matching.
fromPythonbytes
1 day ago

Stack Overflow is Cooked

port-killer A powerful cross-platform port management tool for developers. Monitor ports, manage Kubernetes port forwards, integrate Cloudflare Tunnels, and kill processes with one click. Features: 🔍 Auto-discovers all listening TCP ports ⚡ One-click process termination (graceful + force kill) 🔄 Auto-refresh with configurable interval 🔎 Search and filter by port number or process name ⭐ Favorites for quick access to important ports 👁️ Watched ports with notifications 📂 Smart categorization (Web Server, Database, Development, System)
Python
#python-package-management
Python
fromPython Software Foundation Blog
1 day ago

Anthropic invests $1.5 million in the Python Software Foundation and open source security

Anthropic funds PSF $1.5M over two years to strengthen Python ecosystem security, improve CPython and PyPI defenses, and develop proactive malware-detection tools.
Python
fromTalkpython
1 day ago

diskcache: Your secret Python perf weapon

DiskCache provides a SQLite-backed, dictionary-like persistent cache that speeds Python applications, supports cross-process use, and avoids running separate services like Redis.
Python
fromRealpython
1 day ago

Intro to Object-Oriented Programming (OOP) in Python - Real Python

Object-oriented programming fundamentals in Python: defining classes, instantiating objects, and basic inheritance to write maintainable, less redundant code.
Python
fromWingware
1 day ago

Wing Python IDE Version 11.0.7 - January 12, 2026 - Wing Python IDE

Wing Python IDE 11.0.7 improves AI features and multi-provider support, boosts performance, fixes stdout.writelines in unit tests, reduces package-rescan CPU usage, and corrects analysis errors.
#streamlit
Python
fromThepythoncodingstack
2 days ago

Need a Constant in Python? Enums Can Come in Useful

Python has no built-in constants; immutable objects and UPPERCASE naming do not prevent reassignment of identifiers.
Python
fromPython GUIs
2 days ago

What does @pyqtSlot() do?

Use @pyqtSlot to create native Qt slots for threaded contexts and to reduce memory usage and slightly improve performance; otherwise plain Python callables work.
fromEuroPython Blog
4 days ago

Humans of EuroPython: Jakub Cervinka

EuroPython wouldn't exist if it weren't for all the volunteers who put in countless hours to organize it. Whether it's contracting the venue, selecting and confirming talks & workshops or coordinating with speakers, hundreds of hours of loving work have been put into making each edition the best one yet. Read our latest interview with Jakub Červinka, a member of the EuroPython 2025 Operations Team and organizer of PyConCZ 2026. Thank you for your service to EuroPython, Jakub!
Python
Python
fromMouse Vs Python
5 days ago

How to Switch to ty from Mypy - Mouse Vs Python

Ty is a fast Rust-based Python type checker installable locally or in CI, configurable via pyproject.toml, and integrable in GitHub Actions.
fromRealpython
5 days ago

Episode #279: Coding Python With Confidence: Beginners Live Course Participants - The Real Python Podcast

We speak with course instructor Stephen Gruppetta about building a course where the participants start using their knowledge as soon as possible. He describes how he's evolved his teaching techniques over years of working with beginners. We explore the advantages of having a curated collection of written tutorials, video courses, and a forum for asking those nagging questions. We also speak with students Louis and Andrew about their experiences learning
Python
Python
fromInfoWorld
5 days ago

Python starts 2026 with a bang

2026 brings major Python advancements: Astral's ultrafast 'ty' type checker (beta), Django 6, and Python-driven C code generation for faster applications.
Python
fromThepythoncodingstack
5 days ago

Parkruns, Python's enumerate and zip, and Why Python Loops Are Different from Other Languages * [Club]

Python encourages iterating directly over items instead of manually indexing, producing clearer, safer, and more idiomatic code.
Python
fromLondon Business News | Londonlovesbusiness.com
6 days ago

Automating the mundane: Leveraging Rpa and Python developers to streamline your workflow - London Business News | Londonlovesbusiness.com

Hiring both RPA developers and Python programmers eliminates repetitive operational friction and enables scalable automation that combines surface-level UI tasks with complex backend integrations.
fromMathspp
6 days ago

Recursive structural pattern matching

Structural pattern matching excels at... matching the structure of your objects! For the two examples in this article, we'll be using a number of dataclasses that you can use to build abstract Boolean expressions: from dataclasses import dataclass class Expr: pass @dataclass class And(Expr): exprs: list[Expr] @dataclass class Or(Expr): exprs: list[Expr] @dataclass class Not(Expr): expr: Expr @dataclass class Var(Expr): name: str
Python
Python
fromRealpython
1 week ago

How to Properly Indent Python Code Quiz - Real Python

Consistent indentation using spaces, proper editor settings, and code formatters ensures correct Python code structure and behavior.
fromRealpython
1 week ago

How to Build a Personal Python Learning Roadmap - Real Python

If you want to learn Python or improve your skills, a detailed plan can help you gauge your current status and navigate toward a target goal. This tutorial will help you craft a personal Python learning roadmap so you can track your progress and stay accountable to your goals and timeline: The steps in this tutorial are useful for Python developers and learners of all experience levels. While you may
Python
Python
fromInfoQ
1 week ago

Facebook Survey Reveals Growing Adoption of Typed Python for Improved Code Quality and Flexibility

Python developers widely adopt type hints, citing readability, tooling, and bug detection, despite challenges with libraries, complexity, and tool fragmentation.
fromRealpython
1 week ago

How to Convert Bytes to Strings in Python Quiz - Real Python

In this quiz, you'll test your understanding of the Convert Python Bytes to Strings tutorial.
Python
Python
fromPycoders
1 week ago

PyCoder's Weekly | Issue #716

Python performance metrics, async web-app tradeoffs, uv's speed from engineering choices, and tools for building long-running, fault-tolerant AI agents.
Python
fromPatrick Muller
1 week ago

Static Protocols in Python: Behaviour Over Inheritance

Protocols enable structural typing in Python by validating object behavior (methods/attributes) rather than relying on inheritance.
Python
fromThe JetBrains Blog
3 weeks ago

Next Edit Suggestions: Now Generally Available | The JetBrains AI Blog

Next edit suggestions (NES) are enabled by default in JetBrains IDEs for AI Pro, AI Ultimate, and AI Enterprise and do not consume AI quota.
fromPythonmorsels
1 week ago

Debugging with f-strings

If you're using print calls to debug your Python code, consider using f-strings with self-documenting expressions instead. A broken Python program Here we have a program that makes a random math prompt and then validates whether the answer give by the user is correct: This program doesn't work right now: $ python3 check_mult.py What's 9 multiplied by 8? 72 That's incorrect Our program always tells us that our answer is incorrect.
Python
#conference-volunteering
Python
fromPythonmorsels
1 week ago

Implicit string concatenation

Python automatically concatenates adjacent string literals (implicit string concatenation), allowing literal fragments to join across lines without plus signs or commas.
fromThepythoncodingstack
1 week ago

Mulled Wine, Mince Pies, and More Python

And there's another thing I can never remember, especially at this time of year when large-ish gatherings are more common. How many people are needed in a group to have a probability greater than 50% that two people share a birthday? This could be an ice-breaker in some awkward gatherings, but only if you're with a geeky crowd. Although the analytical proof is cool, writing Python code to explore this problem is just as fun. Here's my article from February exploring the Birthday Paradox:
Python
Python
fromPycoders
2 weeks ago

PyCoder's Weekly | Issue #715

2025 highlights include Python dataclass internals, pylock.toml lockfiles for reproducible dependencies, Django vs FastAPI comparisons, Loguru logging, and Narwhals unified DataFrame functions.
Python
fromTalkpython
2 weeks ago

2025 Python Year in Review

Python in 2025 is rapidly evolving: the GIL is being phased out, packaging and tooling are improving, and type checking and AI-related tooling are rapidly proliferating.
#shed-skin
fromInfoWorld
3 weeks ago

Get started with Python's new native JIT

sys._jit.is_available(): Lets you know if the current build of Python has the JIT. Most binary builds of Python shipped will now have the JIT available, except the "free-threaded" or "no-GIL" builds of Python. sys._jit.is_enabled(): Lets you know if the JIT is currently enabled. It does not tell you if running code is currently being JITted, however.
Python
Python
fromInfoQ
3 weeks ago

Python Workers Redux: Wasm Snapshots and Native uv Tooling

Cloudflare's Python Workers use Wasm memory snapshots to enable near-instant cold starts, significantly reducing startup times and expanding package compatibility.
Python
fromRealpython
3 weeks ago

LlamaIndex in Python: A RAG Guide With Examples - Real Python

Retrieval-augmented generation feeds LLMs relevant external documents at query time, improving accuracy and enabling answers from private data without fine-tuning models.
fromRealpython
3 weeks ago

LlamaIndex in Python: A RAG Guide With Examples Quiz - Real Python

In this quiz, you'll test your understanding of the LlamaIndex in Python: A RAG Guide With Examples tutorial. By working through this quiz, you'll revisit how to create and persist an index to disk, review how to reload it, and see why persistence improves performance, lowers costs, saves time, and keeps results consistent.
Python
Python
fromPycoders
3 weeks ago

PyCoder's Weekly | Issue #714

Macroscope detected the most real-world AI code-review bugs with fewer false positives, particularly excelling on Python.
Python
fromRealpython
3 weeks ago

Reading User Input From the Keyboard With Python - Real Python

Use Python's input() to read keyboard input as strings, enabling interactive, personalized programs that react to user-provided data.
fromPyImageSearch
3 weeks ago

Mistral OCR 3 Technical Review: SOTA Document Parsing at Commodity Pricing - PyImageSearch

The commoditization of Optical Character Recognition (OCR) has historically been a race to the bottom on price, often at the expense of structural fidelity. However, the release of Mistral OCR 3 signals a distinct shift in the market. By claiming state-of-the-art accuracy on complex tables and handwriting-while undercutting AWS Textract and Google Document AI by significant margins-Mistral is positioning its proprietary model not just as a cheaper alternative, but as a technically superior parsing engine for RAG (Retrieval-Augmented Generation) pipelines.
Python
Python
fromReuven Lerner
3 weeks ago

Reuven's 2025 in review

LernerPython launched a customized site in 2025 with Discord and Bamboo Weekly integration, monthly live office hours, members-only lectures, and Python Institute exam discounts.
Python
fromEuroPython Society
3 weeks ago

EPS Board 2025-2026

EPS board 2025–2026: Artur Czepiel (Chair), Mia Bajić (Vice Chair), Anders Hammarquist, Angel Ramboi, Aris Nivorlis, Ege Akman, Yuliia Barabash; EuroPython 2026 preparations begin.
Python
fromInfoQ
3 weeks ago

Toad: A Unified CLI Tool for All Your LLMs That Promises Improved UX From Existing Ones

Toad provides a unified, beautiful terminal GUI that runs multiple ACP-enabled coding agents and improves terminal UX with rich Markdown and project-aware features.
fromNedbatchelder
3 weeks ago

Generating data shapes with Hypothesis

I couldn't get Hypothesis to generate usable data for my test. I wanted to assert that two equal data items would hash equally, but Hypothesis was finding pairs like[0] and [False]. These are equal but hash differently because the hash takes the types into account.
Python
fromMedium
1 month ago

uv: The Blazing-Fast Python Package Manager Changing the Game

uv delivers extremely fast, Rust-based Python dependency resolution and installation with aggressive caching, automatic virtual environments, and integrated Python version and tool management.
fromTalkpython
3 weeks ago

Talk Python in Production

Have you ever thought about getting your small product into production, but are worried about the cost of the big cloud providers? Or maybe you think your current cloud service is over-architected and costing you too much? Well, in this episode, we interview Michael Kennedy, author of "Talk Python in Production," a new book that guides you through deploying web apps at scale with right-sized engineering.
Python
fromCogito, Ergo Sumana
3 weeks ago

Python Software Foundation, National Science Foundation, And Integrity

I know, from personal experience, that it takes a significant amount of effort to research, write, revise, and submit a decently plausible funding proposal to the US government's National Science Foundation. A successful NSF proposal is as tightly structured as a sonnet, even beyond the explicit requirements given in the solicitation; every diagram or chart, every paragraph, every sentence of those 20-30 pages has to hit a particular mark.
Python
fromThe JetBrains Blog
1 month ago

Meet the Islands Theme - The New Default Look for JetBrains IDEs | The JetBrains Platform Blog

Islands theme is now the default across JetBrains IDEs, offering a softer, clearer, and more cohesive UI to support focus and comfort.
fromRealpython
4 weeks ago

How to Build the Python Skills That Get You Hired - Real Python

Web development roles often emphasize frameworks like Flask, Django, and, more recently, FastAPI, along with database knowledge and REST API design. Employers often seek full-stack engineers who feel comfortable working on the backend as well as frontend, including JavaScript, HTML, and CSS. Data science positions highlight libraries like NumPy, pandas, Polars, and Matplotlib, plus an understanding of statistical concepts. Machine learning jobs typically add PyTorch or TensorFlow to the mix. Test automation roles likely require familiarity with frameworks such as Selenium, Playwright, or Scrapy.
Python
fromPythonmorsels
4 weeks ago

Embrace whitespace

Your code is easiest to read just after you've written it. Your future self will find your code far less readable days, weeks, or months after you've written it. When it comes to code readability, whitespace is your friend. Whitespace around operators Compare this: To this: I find that second one more readable because the operations we're performing are more obvious (as is the order of operations). Too much whitespace can hurt readability though: This seems like a step backward because we've lost those three groups we had before. With both typography and visual design, more whitespace isn't always better.
Python
Python
fromMedium
1 month ago

uv: The Blazing-Fast Python Package Manager Changing the Game

uv provides extremely fast Python dependency resolution and environment management using a Rust-based installer, aggressive caching, parallel downloads, and integrated tooling replacing multiple tools.
fromSebastian Polsterl
3 weeks ago

scikit-survival 0.26.0 released | Sebastian Polsterl

I am pleased to announce that scikit-survival 0.26.0 has been released. This is a maintainance release that adds support for Python 3.14 and includes updates to make scikit-survival compatible with new versions of pandas and osqp. It adds support for the pandas string dtype, and copy-on-write, which is going to become the default with pandas 3. In addition,sksurv.preprocessing.OneHotEncoder now supports converting columns with the object dtype.
Python
Python
fromInfoWorld
4 weeks ago

Django tutorial: Get started with Django 6

Django 6.0 provides a full-featured, scalable Python web framework with routes, views, templates, migration tools, and a strong ecosystem for building and evolving web applications.
fromPycoders
4 weeks ago

PyCoder's Weekly | Issue #713

Online Python training created by a community of experts. Give your team the Deprecations via Warnings Don't Work for Libraries DeprecationWarning had been in place for 3 years and the documentation contained warnings, the recent removal of API end points in urllib3 v2.6 caused consternation. Seth examines why the information didn't properly make its way downstream and what we might do about it in the future. SETH LARSON
Python
Python
fromRealpython
4 weeks ago

Exploring Asynchronous Iterators and Iterables - Real Python

Asynchronous iterators and iterables enable non-blocking iteration over awaitable objects in Python, supporting async for loops, async generator expressions, and use within async loops and comprehensions.
fromPythonbytes
4 weeks ago

LinkedIn Cringe

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Brian #1: Deprecations via warnings Michael #2: docs
Python
fromRealpython
4 weeks ago

Writing DataFrame-Agnostic Python Code With Narwhals - Real Python

Narwhals is intended for Python library developers who need to analyze DataFrames in a range of standard formats, including Polars, pandas, DuckDB, and others. It does this by providing a compatibility layer of code that handles any differences between the various formats. In this tutorial, you'll learn how to use the same Narwhals code to analyze data produced by the latest versions of two very common data libraries. You'll also discover how Narwhals utilizes the efficiencies of your source data's underlying library when analyzing your data.
Python
#pricing
fromThepythoncodingstack
4 weeks ago

If You Love Queuing, Will You Also Love Priority Queuing? * [Club]

You provide three tiers to your customers: Gold, Silver, and Bronze. And one of the perks of the higher tiers is priority over the others when your customers need you. Gold customers get served first. When no Gold customers are waiting, you serve Silver customers. Bronze customers get served when there's no one in the upper tiers waiting. How do you set up this queue in your Python program?
Python
Python
fromTalkpython
1 month ago

anywidget: Jupyter Widgets made easy

anywidget provides Python notebooks minimal JavaScript to enable web-style interactivity across notebook platforms without the full web ecosystem overhead.
fromEuroPython Society
1 month ago

List of EPS Board Candidates for 2025/2026

My name is Angel, I'm a seasoned engineer with more than 20 years experience designing and building software and web apps. My current role doesn't involve much coding these days, still Python and its community is where my heart is. ☺️ My first EuroPython was in Florence 2012 where I was blown away by the amazing people gathered around the conference and the language. It was like nothing I've ever experienced before and the energy was palpable ... I was hooked!
Python
fromEfficient Coder
1 month ago
Python

A Pythonista's Guide to the 2026 Code Rush | EfficientCoder

Python remains dominant in AI and data, but needs companion languages for high-performance and scalable systems as efficiency demands rise.
Python
fromPycon
1 month ago

PyCon US 2026 - Registration, Hotels, Travel Grants & More!

PyCon US 2026 will be held May 13–19, 2026 in Long Beach with early-bird registration and discounted corporate, individual, and student ticket prices.
Python
fromPythonbytes
1 month ago

This episdoe has a typo

Pandas 3.0.0 introduces a dedicated string dtype, copy-on-write semantics, and pd.col expressions, while typos improves spellchecking in code with LSP support.
fromRealpython
1 month ago

Python Inner Functions: What Are They Good For? Quiz - Real Python

In this quiz, you'll test your understanding of the Python Inner Functions: What Are They Good For? tutorial. By working through this quiz, you'll revisit how inner functions work with enclosing scopes, when to use nonlocal to update captured state, how closures retain data across calls, and how decorators wrap a callable to extend behavior. You'll apply these ideas to organize helpers, reuse state, and write clear, maintainable functions in real projects.
Python
fromEfficient Coder
1 month ago

The Efficient Way to Learn Python in 2026 (5 Prompts + A Free Book) | EfficientCoder

I see two types of learners in 2026, and honestly, both of them are doing it wrong. The first group tries to learn solely through AI. They ask chatbots to "write a script," copy-paste the result, and feel productive. But the second they hit a bug the AI can't fix, they freeze. They have no foundation. They built a house on sand.
Python
fromPycoders
1 month ago

PyCoder's Weekly | Issue #712

Recent Python ecosystem updates: Qiskit quantum tutorials, DataFrame alternatives (Polars, DuckDB), Django 6.0 features, security PEPs, and Python 3.13.10 release.
Python
fromEuroPython Society
1 month ago

General Assembly 2025

General Assembly on 17 December 2025 elects the Board responsible for EuroPython conference organisation, legal and fiscal duties, and coordinating EP2026 operations.
Python
fromThe JetBrains Blog
1 month ago

PyCharm 2025.3 - Unified IDE, Jupyter notebooks in remote development, uv as default, and more | The PyCharm Blog

PyCharm 2025.3 unifies Community users into a single free IDE and adds remote Jupyter support, uv default, proactive DataFrame fixes with AI, and Claude Agent.
fromPyImageSearch
1 month ago

Grounding DINO: Open Vocabulary Object Detection on Videos - PyImageSearch

Imagine asking a friend to find any object in a picture simply by describing it. This is the promise of open-set object detection: the ability to spot and localize arbitrary objects (even ones never seen in training) by name or description. Unlike a closed-set detector trained on a fixed list of classes (say, "cat", "dog", "car"), an open-set detector can handle new categories on the fly, simply from language cues.
Python
Python
fromRealpython
1 month ago

Lazy Imports Land in Python and Other Python News for December 2025 - Real Python

Python 3.15 advances with alpha releases, UTF-8 default, new profiling and C APIs; PEP 810 accepted for explicit lazy imports; Windows installer manager updated.
#beginner-programming
Python
fromCaktusgroup
1 month ago

LLM Basics: Ollama Function Calling | Caktus Group

Use Ollama's local Llama 3.2 model to perform function calling by providing function schemas or Python functions and executing returned tool calls.
Python
fromRaymondcamden
1 month ago

Make Your Own Spotify Unwrapped

Spotify allows users to request and download a ZIP of their listening history as JSON files, enabling custom reports without using Spotify APIs.
Python
fromRealpython
1 month ago

How to Use Google's Gemini CLI for AI Code Assistance Quiz - Real Python

Test practical knowledge of using Google's Gemini CLI for AI code assistance, including installation, authentication, permissions, interactive sessions, and secure shell command approval.
Python
fromTalkpython
1 month ago

Computer Science from Scratch

Rebuild computer science education to serve self-taught and nontraditional programmers by teaching core CS concepts through practical, career-relevant curricula.
Python
fromPycoders
1 month ago

PyCoder's Weekly | Issue #711

Python offers utilities for pairwise iteration and mocking, supports multi-agent orchestration with Temporal, and integrates with Claude Code and a new SQL Server Python driver.
Python
fromPython Software Foundation Blog
1 month ago

Sovereign Tech Agency and PSF Security Partnership

Investment improves CPython and PyPI security and reliability via archive-module fuzz-testing and OAuth/OIDC-based verified account recovery, enhancing supply chain resilience and user experience.
Python
fromPythonmorsels
1 month ago

Wrapping text output in Python

Use Python's textwrap module to automatically wrap text to a specified width and render wrapped lines with wrap() or fill().
Python
fromPyImageSearch
1 month ago

KV Cache Optimization via Tensor Product Attention - PyImageSearch

Tensor Product Attention factorizes Q, K, V via tensor decompositions to create low-rank contextual components, dramatically reducing KV cache and preserving RoPE positional awareness.
Python
fromscikit-learn Blog
1 month ago

Interview with Virgil Chan, scikit-learn Team Member

Virgil Chan transitioned from mathematical research to data science, contributing to open source and working as a Forward Deployed Engineer - Pre-Sales at Union.ai.
fromMouse Vs Python
1 month ago

ANN: Vibe Coding Video Games with Python - Mouse Vs Python

Welcome to Vibe Coding Video Games with Python. In this book, you will learn how to use artificial intelligence to create mini-games. You will attempt to recreate the look and feel of various classic video games. The intention is not to violate copyright or anything of the sort, but instead to learn the limitations and the power of AI. Instead, you will simply be learning about whether or not you can use AI to help you know how to create video games.
Python
Python
fromTalkpython
1 month ago

Python apps with LLM building blocks

Treat LLMs as standard APIs in Python apps: create focused endpoints, use wrappers for caching/validation, monitor responses, and constrain outputs with types.
fromThepythoncodingstack
1 month ago

My Life * The Autobiography of a Python Object

And that's it. I exist. I have no recollection of anything before this instant. But I'm very aware of what I am now. I'm an object. This is the line of code that brought me into existence: My first recollection from a few moments ago was of being inside Team.__new__(). And I felt an affinity with my clan right away. I was a Team instance-an object of type Team.
Python
fromInfoWorld
1 month ago

Python vs. Kotlin: Which loops do you like better?

Prepare to be surprised when we compare Python and Kotlin for simple programs, loops, imports, exceptions, and more. You can also get a super early preview of Python's next-generation (Python 3.15) sampling profiler, get up close with AWS's new AI-powered Zed editor, and explore your options for AI/ML programming outside of the Python ecosystem.
Python
Python
fromdeath and gravity
1 month ago

reader 3.20 released - we're so back

reader 3.20 adds an htmx+Bootstrap web UI, modernized project infrastructure, and a substantially rewritten entry deduplication plugin with improved heuristics and tests.
Python
fromRealpython
1 month ago

How to Convert Bytes to Strings in Python - Real Python

Use Python's bytes.decode() with the correct character encoding to convert raw byte data from files, networks, or APIs into readable strings.
Python
fromPythonbytes
1 month ago

Inverted dependency trees

PEP 814 adds a built-in frozendict immutable mapping to Python to prevent unintended modifications and support reliable immutable dictionaries.
Python
fromPython Software Foundation Blog
1 month ago

PSF Code of Conduct Working Group Shares First Transparency Report

The PSF Code of Conduct Working Group will publish annual transparency reports starting with a 2024 report, backed by improved record keeping and public access.
[ Load more ]