Planet Python RSS
217 subscribers
16.6K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Reuven Lerner: How to conference

Link: https://lerner.co.il/2025/07/27/how-to-conference/

I love conferences. I enjoy everything about them — the nonstop stream of learning, the chance to see old friends and meet new ones, and just generally to be around a lot of interesting, smart, and fu
John Cook: Monero’s elliptic curve

Link: https://www.johndcook.com/blog/2025/07/27/moneros-elliptic-curve/


Digital signatures often use elliptic curves. For example, Bitcoin and Ethereum use the elliptic curve secp256k1 [1]. This post will discuss the elliptic curve Ed25519 [2] using in Monero and in many
Daniel Roy Greenfeld: Unpack for keyword arguments

Link: https://daniel.feldroy.com/posts/2025-07-unpack-for-keyword-arguments

Previously I wrote a TIL on how to better type annotate callables with *args and **kwargs - in essence you ignore the container and worry just about the content of the container. This makes sense, as
Anwesha Das: Joy of automation

Link: http://anweshadas.in/joy-of-automation/

After 145+ commits spread over multiple PRs, 450+ conversations and feedback, and accountable communication via several different communication mediums spanning over 2 years, the Ansible Release Manag
Real Python: Quiz: Bitwise Operators in Python

Link: https://realpython.com/quizzes/bitwise-operators/

In this quiz, you’ll test your understanding of the Bitwise Operators in Python.
By working through this quiz, you’ll revisit how to use Python’s bitwise AND (&), OR (|), XOR (^), NOT (~), left and ri