Coming soon to Python 3.15: frozendict
The Steering Council has just accepted @vstinner and @dongheena's PEP 814 "Add frozendict built-in type".
https://discuss.python.org/t/pep-814-add-frozendict-built-in-type/104854/121
https://peps.python.org/pep-0814/
#Python #PEP814 #frozendict #Python315
After almost a year of planning - we can finally announce that we can bring #free #Python #conference to everyone in the world:
📺 Live on YouTube
🗓 March 4, 2026
⏰ 11:00 am – 6:30 pm CET
Save the date: jb.gg/pytv
#online #ai #tech #oss
http://jb.gg/pytv
Underrated tech stack: A simple #python script that generates a static HTML page (you can even use jinja2 if you want)
Securing registration email https://anarc.at/blog/2019-03-20-locking-down-registration-mail #debian-planet #security #python-planet #linux #passwords #hack #sieve #syncmaildir #email
Need something to watch over lunch? Consider @kojoidrissa's talk, "Privilege Arbitrage".
https://www.better-simple.com/lunch-talks/2026/02/11/privilege-arbitrage/
This talk covers using the systemic differences in technical communities that create privilege to improve your communities.
🐍🅰️ Out now, Python 3.15 alpha 6!
PEP 799: A high-frequency, low-overhead, statistical sampling profiler
PEP 798: Unpacking in comprehensions with * and **
PEP 686: Python now uses UTF-8 as the default encoding
PEP 782: A new PyBytesWriter C API to create a Python bytes object
PEP 728: TypedDict with typed extra items
The JIT compiler has been significantly upgraded with up to 7-8% speedup
🧊 Just two more alphas until the feature freeze! 🧊
https://discuss.python.org/t/python-3-15-0-alpha-6/106122
#Python #Python315 #release
Python Unplugged on PyTV – A Free Online Python Conference for Everyone
#Pycharm #Ai #Conference #Ml #Python
https://blog.jetbrains.com/pycharm/2026/02/python-unplugged-on-pytv/
Stop reading theory without results.
This bundle combines the Master #Hacker ebook with hands-on video walkthroughs that turn recon, #Metasploit exploitation, AV evasion, and #Python #scripting into practical skills you can deploy immediately:
https://hackersarise.thinkific.com/bundles/master-hacker-bundle
#cybersecurity #infosec

Modern #Python dicts remember insertion order:
d = {'a':10, 'b':20, 'c':30}
list(d) # ['a', 'b', 'c']
d.pop('b') # remove 'b'
d['b'] = 99 # re-add 'b'
list(d) # ['a', 'c', 'b']
This applies in for loops, too!

How corrupt is your country? The latest index from Transparency International was just released — and in the latest Bamboo Weekly, I pose 6 #Python #Pandas challenges for you to solve with that data.
New questions every Wednesday: https://BambooWeekly.com

Errors are inevitable in any software, and FastAPI applications are no exception. Errors disrupt the normal flow of execution, expose sensitive information, and lead to a poor user experience.
Learn how to squash those bugs in FastAPI:
https://www.honeybadger.io/blog/fastapi-error-handling/?utm_source=mastodon&utm_medium=social