A Rust-inspired, ergonomic Result type for Python with first-class async support, pattern matching, and a clean API.
Project description
rustico
A Schrödinger's Cat for Python error handling: your result is both alive and dead—until you unwrap it.
What is rustico?
rustico brings the power and elegance of Rust's Result type to Python. Every operation is either a success (Ok) or a failure (Err), and you must explicitly handle both. No more try/except hell—just beautiful, predictable, and composable error handling.
Schrödinger's Cat: The Metaphor
Imagine every function call as a box containing Schrödinger's cat. Until you open (unwrap) the box, the cat is both alive (Ok) and dead (Err). With rustico, you don't have to guess or hope—when you unwrap the result, you'll know exactly what you got, and you'll handle both cases explicitly.
Key Features
- 🔒 Can't Forget Error Handling: The type system forces you to handle both cases
- 📍 Precise Error Information: Know exactly what and where things failed
- 🧩 Composable: Chain operations without nested try/except blocks
- 🎯 Early Exit: Stop processing on first error automatically
- 🔍 Type Safe: Your IDE knows about both success and error cases
- ⚡ Async Support: First-class support for async/await
- 🧪 Test Friendly: Easily mock and test error conditions
Installation
Python 3.8+ is required.
You can install rustico using pip:
pip install rustico
Quick Example
Here's a taste of how rustico simplifies error handling:
from rustico import Ok, Err, Result
def divide(numerator: float, denominator: float) -> Result[float, str]:
"""Divides two numbers, returning an Ok result or an Err if division by zero occurs."""
if denominator == 0:
return Err("Cannot divide by zero!")
return Ok(numerator / denominator)
# --- Usage Examples ---
# Successful division
result_success = divide(10, 2)
if result_success.is_ok():
print(f"Success: {result_success.unwrap()}") # Output: Success: 5.0
# Failed division
result_failure = divide(10, 0)
if result_failure.is_err():
print(f"Error: {result_failure.unwrap_err()}") # Output: Error: Cannot divide by zero!
# Chaining operations
def multiply_by_two(value: float) -> Result[float, str]:
return Ok(value * 2)
chained_result = divide(20, 4).and_then(multiply_by_two)
if chained_result.is_ok():
print(f"Chained Success: {chained_result.unwrap()}") # Output: Chained Success: 10.0
failed_chained_result = divide(20, 0).and_then(multiply_by_two)
if failed_chained_result.is_err():
print(f"Chained Error: {failed_chained_result.unwrap_err()}") # Output: Chained Error: Cannot divide by zero!
For detailed documentation, see the full documentation.
License
rustico is distributed under the MIT License. See the LICENSE file for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rustico-1.0.2.tar.gz.
File metadata
- Download URL: rustico-1.0.2.tar.gz
- Upload date:
- Size: 23.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
168e85a378387da1aba5ce943d9f3d077842196a7ced187b9c8a460da260128f
|
|
| MD5 |
13c36a7f98b03fcc8130ad4983c38290
|
|
| BLAKE2b-256 |
d9601fc8d0f01b09b024cf8b82a73761fe744a60660e6393e6327aa75ec8be80
|
File details
Details for the file rustico-1.0.2-py3-none-any.whl.
File metadata
- Download URL: rustico-1.0.2-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fe92218fde2637b8a15008fbc285094057a0581de82aa04b124aef01b89abae
|
|
| MD5 |
7a609c94a50f6f7c1dd8570ea2b3b1e9
|
|
| BLAKE2b-256 |
cb3bbd0927a35abda342f9afdcee9a538ef7a403d5cf1615cce5e82b867f5cdf
|