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.7.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.7-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: functional_maybe-1.1.7.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.7.tar.gz
Algorithm Hash digest
SHA256 53a5b7e3eed35c3f9ceb5b63f3bb38afce8e2b6ddf7889381339adff3a5e3fe8
MD5 5ae08a0cfea74f643bbfd40259011fde
BLAKE2b-256 c33502fa29b5bf180cfd34db4e564ad454ea81b6ef2b064096d25c4c768746f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for functional_maybe-1.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 33db2915c95b9db90f4bede6a60074239b4f9d38cf1040c4fb858db628eeae2e
MD5 d15a7533662b628c40862968e3ad3eb2
BLAKE2b-256 704175ed24a9b671120e41ee217a97916ecff70a4f3f42ccbab89ec13506b94e

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