atlas news
Feedle : Python
17 august
00h00
O is for ORM - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
16 august
03h36
What’s missing to have reproducible builds on PyPI
@snarky.ca
While writing the section of my 2026 Python Packaging Council (PPC) nomination on secure supply chain, I realized that one thing related to having a...
00h00
N is for namedtuple - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
15 august
23h00
Python: use re.prefixmatch() instead of re.match() from Python 3.15
@adamj.eu
Take this validation function:import reTRAIN NUMBER RE re.compile(r d 6 ) # six digitsdef is valid train number(value: str) - bool: return bool(TRAIN...
00h00
Saoirse Ronan Appreciation Week, round 2
@hamatti.org
Blaugust is an annual blogging festival in August where the goal is to write a blog post every day of the month. A short Saturday break from my...
14 august
20h56
Video shows hunters wrestling 16-foot ’monster’ snake as Florida Python Challenge crowns winners
@thecooldown.com
There are plenty more big ones crawling around out there, too.
00h00
M is for meetups - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
13 august
23h00
Python: fix SyntaxWarning: invalid octal escape sequence
@adamj.eu
Take this code:path C: 477 data If we run this with Python 3.11 in development mode (to enable deprecation warnings), we will see: python3.11 -X dev...
00h00
L is for learning - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
12 august
23h00
Python: fix TypeError: NamedTuple() got an unexpected keyword argument
@adamj.eu
Take this code, defining a small NamedTuple with a keyword argument per field:from typing import NamedTuplePoint NamedTuple( Point , x int, y int)Run...
09h59
Nearly 10-foot python near homes in India sparks calls to leave rescues to experts
@thecooldown.com
Untrained efforts to capture it can end badly for both people and wildlife.
04h19
Giant python stealing ducks in China spits up 3, escapes, and is recaptured in bamboo grove
@thecooldown.com
A python as big as this one could easily swallow a lamb weighing dozens of kilos.
01h00
491 Feeling Judged
@pythonbytes.fm
Topics covered in this episode: Claude Code insightsPost-quantum crypto lands in PythonMCP goes stateless and FastMCP gets renamedinshellisense - IDE...
00h00
K is for keyword arguments - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
11 august
23h00
Python: introducing emojet, a fast emoji lookup library
@adamj.eu
New package just landed emojet is an emoji library for Python: it converts between emoji and their names, in both directions, plus the searching and...
00h00
J is for JSON validation - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
10 august
22h22
My nomination statement for the 2026 Python packaging council
@snarky.ca
I have decided to run for the inaugural 2026 Python packaging council (PPC). I will say I have the support of my employer (Microsoft) to do this, but...
11h02
Python Now Has a Post-Quantum Encryption Library
@schneier.com
This is good:Post-quantum cryptography is now one pip-install away for the entire Python ecosystem. With funding from the Sovereign Tech Agency, we...
00h00
I is for immutable - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
00h00
I is for immutable - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
09 august
19h35
New Jersey officers pull 8-foot python from under shed, find it had swallowed an opossum
@thecooldown.com
If you can no longer care for a reptile, please reach out to a local rescue or shelter instead.
13h32
Burmese python filmed in Hong Kong shopping district after downpours swamp its habitat
@thecooldown.com
When natural areas flood, wildlife has fewer safe places to retreat.
08h38
Pet dog’s warning leads family to 12-foot king cobra, python clash near home
@thecooldown.com
As they struggled, they even tried to enter the house.
00h00
H is for htmx - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
08 august
00h00
G is for get or create - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
07 august
23h00
Python: tprof 1.3.0: now with less overhead
@adamj.eu
Back in January, I introduced tprof, a targeting profiler for Python 3.12 that measures the time spent in specific functions, rather than your whole...
00h58
Georgia beachgoers found a ball python under a bench, and now Buttercup needs a home
@thecooldown.com
But because they are commonly kept as pets, the encounter likely resulted from human activity.
00h48
15-foot python in a family’s garden was too big for one rescue team to move
@thecooldown.com
The local rescue unit didn’t have the equipment to catch such a large snake.
00h00
F is for f-strings - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
06 august
18h19
Jogger spots what they thought was a 10-foot python in the grass, and wildlife officers step in
@thecooldown.com
Even a nonaggressive animal can become dangerous if it feels cornered or threatened.
15h56
Monty Python and the Holy Grail’ Re-Edited in Alphabetical Order
@laughingsquid.com
Keith David Brown deconstructed Monty Python and the Holy Grail and reassembled it in alphabetical order through editing.subscribe to the Laughing...
15h18
Tom Rahill catches 96 snakes to unseat reigning Florida python champ Taylor Stanberry
@thecooldown.com
Their spread has become a major problem for local wildlife.
12h09
Video shows giant albino python slithering alongside river
@thecooldown.com
Indian rock pythons are among the largest snakes in India and can grow to around 20 feet long.
00h00
E is for environment variables - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
05 august
19h48
Monty Python and the Holy Grail, in alphabetical order
@vimeo.com
the latest submission to Supercut.org, inspired by Of Oz The Wizard via supercut.org #
00h00
D is for dictionaries - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
00h00
From Claude Code to Production: A Monitoring Checklist for Python Developers
@blog.appsignal.com
If you’re using AI to build a Python app, you need to make sure it’s production-ready. Here’s a checklist to get you started.
04 august
23h13
LISP 67
@dev.to
if-else code terminal REPL ssà lambda Python, arrow function ...
19h10
PipeNetwork minimax-h3-mlx
@simonwillison.net
PipeNetwork minimax-h3-mlxMiniMax released MiniMax-H3 two days ago - they describe it as a a general-purpose, omni-modal generative system , which in...
16h07
Snake catchers in Australia freed a kookaburra from a python
@thecooldown.com
It was obviously only semi-constricted and was also in shock until all of its senses kicked back in.
00h00
C is for command line interfaces - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
03 august
05h05
Rescuers free 11-year-old wedged in rock crevice next to python after 6 hours
@thecooldown.com
It was a technically challenging task but the rescue team remained composed and pulled it off.
04h20
Florida officers answer ’unexpected bathroom guest’ call before safely rescuing ball python
@thecooldown.com
The species is widely kept as a pet in the United States and usually grows to about 3 to 4 feet long.
00h00
B is for batteries included - Python A to Z
@hamatti.org
Python A-Z is a blog series about Python. Each day, I share insights, ideas and examples for different parts of Python development that match with...
02 august
23h00
Python: how time-machine is O(1) where freezegun is O(n)
@adamj.eu
time-machine is my library for mocking the current date and time in Python tests.Its headline advantage over freezegun, the library that inspired it,...
19h05
18 python hatchlings found around a house in 2 days, and residents fear more nearby
@thecooldown.com
Each of the hatchlings was about 20 inches long, and those that were recovered were handed over to forest officials.
18h54
At a wedding in Malaysia, a DJ paged a car owner, and a giant python was under the hood
@thecooldown.com
Security noticed the danger, the owner was alerted, and trained responders stepped in.
18h43
In Thailand, a 75-year-old found the python she says ate her cats back in her home
@thecooldown.com
During the earlier encounter, Pailin reportedly tried to pull the reptile by its tail, but it escaped.
1786977747