惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Letting Python Functions Lie to You: Introducing exp...
chukwunwike · 2026-04-30 · via DEV Community

Python is beautiful, readable, and highly expressive. But its built-in error handling mechanism, exceptions, has a fundamental flaw: Exceptions are invisible.

Take a look at this standard Python function signature:

def get_user(user_id: int) -> User:
    ...

Enter fullscreen mode Exit fullscreen mode

What does this signature tell you? It promises to return a User. But does it? What happens if the database connection drops? What if user_id doesn't exist? What if there's a permission issue?

You can’t know without digging into the implementation, hoping the docstrings are accurate, or waiting for a surprise stack trace in production. The type system provides zero guarantees about what can fail.

That’s where explicit-result comes in.

The Philosophy of explicit-result

explicit-result is a zero-dependency, fully-typed Python library that brings Result and Option primitives to your Python code. It is designed around three core ideas:

  1. Errors should be part of the contract. A function that can fail should declare its possible errors right in its return type.
  2. The API should feel native to Python. This isn’t a clunky port of Rust or Haskell. It’s built to feel perfectly natural in idiomatic Python.
  3. Adopt incrementally. You don’t need to rewrite your entire codebase to benefit. Wrap existing code with simple decorators and refactor at your own pace.

Result: Bringing Errors to Light

With explicit-result, your function signatures stop hiding the truth. Instead of hoping a caller catches an implicit ValueError, you declare it:

from explicit_result import Ok, Err, Result

def divide(a: float, b: float) -> Result[float, str]:
    if b == 0:
        return Err("division by zero")
    return Ok(a / b)

Enter fullscreen mode Exit fullscreen mode

The signature Result[float, str] is an ironclad contract: "I will give you either a float or a string error. I will not surprise you."

Safely Handling Results

Once you get a Result, you have powerful, explicit ways to handle it. You can explicitly unpack values safely:

result = divide(10, 2)

# Unpack with a fallback
value = result.unwrap_or(0.0)

# Unpack explicitly, providing context if it panics
validated = result.expect("Division must never fail in this critical path")

Enter fullscreen mode Exit fullscreen mode

On Python 3.10+, explicit-result works flawlessly with Structural Pattern Matching, allowing you to write beautiful, exhaustive handlers:

match divide(10, 2):
    case Ok(value):
        print(f"Success: {value}")
    case Err(error):
        print(f"Failed: {error}")

Enter fullscreen mode Exit fullscreen mode

Bridging the Gap: The @safe Decorator

What if you're using third-party code that heavily relies on implicit exceptions? explicit-result makes it trivial to convert exception-throwing code into predictable Result boundaries.

from explicit_result import safe

@safe(catch=ValueError)
def parse_float(s: str) -> float:
    return float(s)

parse_float("3.14")   # Ok(3.14)
parse_float("abc")    # Err(ValueError("could not convert string to float..."))

Enter fullscreen mode Exit fullscreen mode

Your low-level exceptions instantly become trackable, manageable objects that map directly into your type checker.

Chaining and Do-Notation: Kiss Try/Except Hell Goodbye

The true power of Result shines when operations are chained. You can cleanly sequence logic without ever writing nested try/except blocks.

If you don't want to use method chaining, explicit-result provides pure Python Do-notation using generators, which fully embraces python controls like if/else and loops!

from explicit_result import do, Result

@do()
def get_user_profile() -> Result[dict, str]:
    user = yield fetch_user()            # Returns dict if Ok, short-circuits if Err
    profile = yield fetch_profile(user["id"])
    return {**user, **profile}           # Automatically wrapped in Ok

Enter fullscreen mode Exit fullscreen mode

Option: The End of the None Mystery

Returning None when something fails is tempting, but None is completely silent about why something didn't work. Furthermore, sometimes None is an entirely valid value!

Option[T] solves this by giving you explicit Some(value) and Nothing.

from explicit_result import Option, Some, Nothing

def find_user(user_id: int) -> Option[str]:
    users = {1: "Archy", 2: "Chuks"}
    return Some(users[user_id]) if user_id in users else Nothing

Enter fullscreen mode Exit fullscreen mode

Never get lost in ambiguous NullType errors again. When a function returns Option[T], you know the absence of a value is a completely valid business case, not a crash.

Why You Should Try It Today

If you’re building production systems in Python, confidence and predictability matter. explicit-result removes the guesswork from error handling and forces developers to deal with edge cases explicitly, before the bug ships.

It is completely lightweight, installs instantly with pip install explicit-result, has zero external dependencies, and integrates beautifully with linters like Pyright and Mypy.

Stop letting your functions lie. Make your error paths as robust as your happy paths.

👉

explicit-result

Result and Option types for Python — zero dependencies, fully typed.

Python License: MIT Typed Zero Dependencies Docs

Read the Full Documentation here


Python functions lie. A function typed as -> int might return an integer, raise a ValueError, raise a ConnectionError, or return None depending on conditions the caller cannot see. The type system gives you no warning. You discover the truth at runtime, usually in production.

explicit-result fixes this by making errors visible in the function signature itself.

from explicit_result import Ok, Err, Result

def divide(a: float, b: float) -> Result[float, str]:
    if b == 0:
        return Err("division by zero")
    return Ok(a / b)

result = divide(10, 2)   # Ok(5.0)
result = divide(10, 0)   # Err("division by zero")

Enter fullscreen mode Exit fullscreen mode

The signature Result[float, str] is a…