← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Python educational data only
| |
Last 30 days
1 ping — 2026-05-26 T 14 pings — 2026-05-27 W 22 pings — 2026-05-28 T 2 pings — 2026-05-29 F 4 pings — 2026-05-30 S 4 pings — 2026-05-31 S 5 pings — 2026-06-01 M 2 pings — 2026-06-02 T 7 pings — 2026-06-03 W 25 pings — 2026-06-04 T 24 pings — 2026-06-05 F 40 pings — 2026-06-06 S 29 pings — 2026-06-07 S 28 pings — 2026-06-08 M 13 pings — 2026-06-09 T 30 pings — 2026-06-10 W 19 pings — 2026-06-11 T 6 pings — 2026-06-12 F 12 pings — 2026-06-13 S 6 pings — 2026-06-14 S 3 pings — 2026-06-15 M 12 pings — 2026-06-16 T 3 pings — 2026-06-17 W 10 pings — 2026-06-18 T 2 pings — 2026-06-19 F 18 pings — 2026-06-20 S 15 pings — 2026-06-21 S 16 pings — 2026-06-22 M 16 pings — Yesterday T 16 pings — Today W
Claude 16
PetalBot 6SEMrush 3Google 3Sogou 1Bing 1ChatGPT 1Perplexity 1
Amazonbot 264Perplexity 197Scrapy 155Google 133ChatGPT 110Ahrefs 98Unknown AI 57Claude 54SEMrush 48Bing 43PetalBot 33Meta AI 26Sogou 7Common Crawl 5DuckDuckGo 3Qwen 3Majestic 2
crawler 1.2k crawler_json 77 pre-tracking 10
Category total1.2k pings Terms pinged27 / 27 Distinct agents16
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Python Error Handling Python 2.0+ 🧠 1
Python uses try/except/else/finally blocks and a rich exception hierarchy — good error handling is specific, informative, and never silently swallows exceptions.
3mo ago Python intermediate
Python Generators & yield Python 2.2+ 🧠 1
Functions that yield values one at a time — enabling lazy evaluation of infinite sequences without storing all values in memory.
3mo ago Python intermediate
Python Logging Python 3.0+
Python's built-in logging module provides a structured, configurable way to emit log messages at different severity levels — replacing print() for production code.
3mo ago Python intermediate
Python Pattern Matching (match/case) Python 3.10+
Python 3.10+ structural pattern matching — more powerful than switch/case, matching values, types, sequences, mappings, and class attributes in a single readable construct.
3mo ago Python intermediate
Python Type Hints & mypy Python 3.5+ 🧠 1
Optional static type annotations — def greet(name: str) -> str — checked by mypy and IDEs at analysis time, ignored at runtime.
3mo ago Python intermediate
Python Virtual Environments Python 3.3+
Isolated Python environments that allow different projects to have different package versions — preventing the global site-packages conflicts that plagued early Python development.
3mo ago Python beginner
Testing with pytest Python 3.6+
pytest is Python's dominant testing framework — its fixture system, parametrize decorator, and plugin ecosystem make it more powerful and less verbose than unittest.
3mo ago Python intermediate
✓ schema.org compliant