Skip to main content

Wrapper class. Basically functional Maybe or Railway pattern.

Project description

FunctionalMaybe

A simple Maybe wrapper class that works. Creates a wrapper around variable and allows transformation of said variable to different values and supplying it to functions.

Usage:

import sys
from FunctionalMaybe import FunctionalMaybe as Maybe

joined = Maybe(["one", "two", "three"])\
        .transform(lambda list_: ", ".join(list_))\  # Transform the values to something with lambda
        .run(lambda result: print(result))\          # Run functions with the contained value
        .unwrap()                                    # Return the wrapped value

# We can easily e.g. print, if the wrapped value was an empty
if isinstance(joined, Maybe.Empty):
    print(str(joined), file=sys.stderr)

Also supports calling the constructure inside the Maybe-class, which enables error handling via Maybe.Empty:

from FunctionalMaybe import FunctionalMaybe as Maybe

class Foo:
    def __init__(self, x, y, z=None, w=1):
        self.x = x
        self.y = y
        self.z = z
        self.w = w

    def __str__(self):
        return f"{self.x}, {self.y}, {self.z}, {self.w}"

def log(val):
    print(val)

Maybe().construct(Foo, 1, "one", w=4).transform(lambda foo: str(foo)).run(log)
# or could utilize the Maybe.Unwrapper in the following way:
Maybe("one").construct(Foo, 1, Maybe.Unwrapper, w=4).transform(lambda foo: str(foo)).run(log)
# When ever Maybe.Unwrapper is supplied as an argument, the Maybe.Unwrapper object
# is mapped to the wrapped value contained by the Maybe

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

functional_maybe-1.1.6.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

functional_maybe-1.1.6-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file functional_maybe-1.1.6.tar.gz.

File metadata

  • Download URL: functional_maybe-1.1.6.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for functional_maybe-1.1.6.tar.gz
Algorithm Hash digest
SHA256 0f226512aa51b235f2c5581bbe3b532836ec033c788398c8e0acc1be336690c8
MD5 86e14bdd81b49fcb08acfb15b37c438e
BLAKE2b-256 618ed776a478ee56a78b25525b412a25bcf9f1c2e22fd597f8089cbe4d47f823

See more details on using hashes here.

File details

Details for the file functional_maybe-1.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for functional_maybe-1.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 fe13ec23c50ac64e9dd4f26f8f9b12c805693d3e45a5dde3f424883556ef093d
MD5 30a987022cdc101339790509f615bebc
BLAKE2b-256 b35a99620e8d4a0a61870ed8be46fdeb05702e5295af99c8ab190ce75c16daaf

See more details on using hashes here.

Supported by

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