From 0ac7b49c611d8d2358544b4615148952f47f3a46 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 4 Jun 2024 15:56:27 +0100 Subject: [PATCH] Link to Python Morsels --- python/stdlib-cli-tools.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/stdlib-cli-tools.md b/python/stdlib-cli-tools.md index 2a20184048..b282486235 100644 --- a/python/stdlib-cli-tools.md +++ b/python/stdlib-cli-tools.md @@ -286,6 +286,7 @@ avg 1.64228, stddev 2.13138, min 0.0386213, max 34.0379 avg 3.18754, stddev 2.27556, min 0.00336177, max 6.28306 ... ``` +**Update:** This is fixed [in Python 3.13](https://docs.python.org/3/library/random.html) ### nntplib @@ -365,3 +366,5 @@ This one has a bunch more options (visible with `-h`). `python -m calendar -t ht There are plenty more in there - these are just the ones I've explored so far. +Trey Hunner collected a more recent set of these in June 2024 in [Python's many command-line utilities](https://www.pythonmorsels.com/cli-tools/). +