Skip to main content

Functional utilities for Python, inspired by Scala

Project description

fython

Functional utilities for Python, inspired by Scala

FOptional

from fython import option

def my_function():
    return (option(something_that_might_return_none())
            .map(do_something)
            .map(do_another_thing)
            .get_or_else(default_value))

@dataclass
class Inner:
    v: Optional[str]

@dataclass
class Outer:
    inner: Optional[Inner]

c = Outer(Inner("hello"))    

inner_value = (option(c)
               .flatmap(lambda c: c.inner)
               .flatmap(lambda inner: inner.v)
               .get_or_throw())

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

fython-0.0.4.tar.gz (2.2 kB view hashes)

Uploaded Source

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