Hacker News
new
top
best
ask
show
job
montasaurus/result: A simple Rust-like Result type for Python 3
(
github.com
)
21 points
by
networked
11 days ago
2 comments
niux
10 days ago
Funnily, I released something similar two weeks ago with more targeted decorators (sync vs async), a more strict `Err` type and a less verbose type guard (`ok`):
https://github.com/overflowy/safe-result
atoav
11 days ago
I used this in a project or two and I really like what it does to the code and error handling. Can recommend checking it out.