Skip to main content

Monads used for handling Errors. Contains Attempt and Option.

Project description

Monadic Error

by Ian Kollipara

This is a small library containing 2 monads for handling errors in Python: Attempt (Either) and Option (Maybe). These two are chosen for their usefulness in handling errors gracefully, and for the ability to slot in nicely with python. Both monads work with Python 3.10 pattern matching, and as well as MyPy exhaustive pattern matching.

All monads implement map, fmap, and unwrap_or. These all aid in their use in python. In addition there are a few utility functions for working with the objects during the execution of the program.

Installation

To install, run the following command from your terminal:

$ pip install monadic-error

Or modify your requirements.txt with the following line:

monadic-error==3.0.0

And run

$ pip install -r requirements.txt

Attempt

Attempt is the Either monad. The name was chosen to signify how it should be used. There are two constructors for this: Success and Failure. Use them as their name denotes.

from monadic_error import Attempt, Success, Failure

def div(x: int, y: int) -> Attempt[ZeroDivisionError, float]:
    if y == 0:
        return Failure(ZeroDivisionError("division by zero"))
    return Success(x / y)

# Or even shorter
from monadic_error import attempt

@attempt
def div(x: int, y: int):
    return x / y

Option

Option is the Maybe Monad. The name was chosen to signify how it should be used. There are two constructors for this: Some and Nothing. Use them as their name denotes.

from monadic_error import Option, Some, Nothing

def div(x: int, y: int) -> Option[float]:
    if y == 0:
        return Nothing()
    return Some(x / y)

# Or even shorter

from monadic_error import option

@option
def div(x: int, y: int):
    return x / y

Conversion Between Option and Attempt

There are two utility functions to convert between the two types: hush and note.

hush

Hush takes an attempt and "hushes" the error, returning an option instead

from monadic_error import hush, Success, Failure

x = Failure(1)
hush(x) # => Nothing()

y = Success(1)
hush(y) # => Some(1)

note

Note is the inverse, allowing one to state a reason for the failure, thus turning an option into an attempt.

from monadic_error import note, Some, Nothing

x = Nothing()
note(x, "This is an error") # => Failure("This is an error")

y = Some(1)
note(y, "This is an error") # => Success(1)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

monadic_error-3.0.2.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

monadic_error-3.0.2-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file monadic_error-3.0.2.tar.gz.

File metadata

  • Download URL: monadic_error-3.0.2.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure

File hashes

Hashes for monadic_error-3.0.2.tar.gz
Algorithm Hash digest
SHA256 8192bc6c75ccb768462a585e4d1e7583254eb1ad0281f83c1c0c098afe359525
MD5 cebc37d65130cab5b4b4a2bb1118f281
BLAKE2b-256 3858b7701c30c731dd360d0bee74930f55309feac14b35d3189265404acfb6eb

See more details on using hashes here.

File details

Details for the file monadic_error-3.0.2-py3-none-any.whl.

File metadata

  • Download URL: monadic_error-3.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure

File hashes

Hashes for monadic_error-3.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7d685902fca9b279dc56decae5ed0970768d1447cce0b9bb543a8ee35412fb51
MD5 bf9f5ecceb6cd0e0d233ceaf8b18a112
BLAKE2b-256 a180b192ae192ea2bf234657c4d3e0bcd7a14aa4f2ba8d0929da0acc26f36437

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page