#docstrings

[ follow ]
#python
Python
fromGrahamdumpleton
2 days ago

Free Python decorator workshops - Graham Dumpleton

Interactive workshops on Python decorators are available for free, covering fundamentals to advanced topics, emphasizing hands-on learning.
Python
fromGrahamdumpleton
2 days ago

Free Python decorator workshops - Graham Dumpleton

Interactive workshops on Python decorators are available for free, covering fundamentals to advanced topics, emphasizing hands-on learning.
Web frameworks
fromInfoWorld
2 days ago

PEP 816: How Python is getting serious about Wasm

Python will now formally support WebAssembly standards through PEP 816, enhancing its usability in browser applications.
Python
fromMouse Vs Python
2 months ago

How to Switch to ty from Mypy - Mouse Vs Python

Python supports type hinting, but type checking requires external tools like mypy, Pyright, and the new ty.
fromJames Bennett
1 week ago

Rewriting a 20-year-old Python library

Akismet launched in 2005 as a web service to classify user-generated content as spam or not, quickly gaining popularity among bloggers facing spam issues.
Privacy technologies
Python
fromMouse Vs Python
5 months ago

An Intro to Python 3.14's New Features - Mouse Vs Python

Python 3.14 introduces free-threaded builds, an experimental JIT compiler, and replaces GPG signatures with Sigstore verification.
fromThepythoncodingstack
1 month ago

The Journey From LBYL to EAFP * [Club]

LBYL came more naturally to me in my early years of programming. It seemed to have fewer obstacles in those early stages, fewer tricky concepts. And in my 10+ years of teaching Python, I also preferred teaching LBYL to beginners and delaying EAFP until later. But over the years, as I came to understand Python's psyche better, I gradually shifted my programming style-and then, my teaching style, too.
Software development
Python
fromPythonmorsels
2 months ago

All iteration is the same in Python

All Python iteration forms use the same iterator protocol; iterating over an object yields its defined iteration items (e.g., dictionary yields keys, string yields characters).
Python
fromRealpython
1 month ago

What Exactly Is the Zen of Python? Quiz - Real Python

An interactive quiz assesses knowledge of The Zen of Python to reinforce aphorisms and promote writing clear, maintainable, Pythonic code.
fromMouse Vs Python
2 months ago

How to Switch to ty from Mypy - Mouse Vs Python

The newest type checker on the block is Astral's ty, the maker of Ruff. Ty is another super-fast Python utility written in Rust. To install ty with uv, run the following: uv tool install ty@latest If you do not want to use uv, you can use the standalone installer. Instructions vary depending on your platform, so it is best to refer to the documentation for the latest information. Note: Technically, you can use pip or pipx to install ty as well.
Python
Python
fromRealpython
1 month ago

Python's pathlib Module: Taming the File System Quiz - Real Python

Use Python's pathlib module to perform common filesystem operations like path joining, iteration, file creation, writing, renaming, and extracting filename components.
[ Load more ]