Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.67 KB

File metadata and controls

31 lines (24 loc) · 1.67 KB

Facade — where it lives outside this repo

Cited, real implementations to study (or point an agent at) when designing or reviewing facade-shaped code.

Python standard library

Major ecosystems

What to notice across all of them

Each facade owns a policy, not just a shortcut: subprocess.run decides how waiting and non-zero exits work; urlopen decides the default handler chain. And each leaves the machinery public — the measure of a good facade is that power users never have to fight it.