Skip to main content

Library for metaprogramming

Project description

Act

Library for dynamic functional programming and more.

Enter this command and go to the documentation:

pip install act4

Overview

from act import try_, v, w, to, catch, optionally, by, then, on, fmt


lookup = try_(v[w], to(catch(KeyError, to(None))))

# def lookup(table: Mapping[K, V], key: K) -> Optional[V]:
#    try:
#        return table[key]
#    except KeyError:
#        return None


main = optionally(
    (lookup |by| True)  # lambda table: lookup(table, True)
    |then>> on(v > 0, None)  # lambda v: None if v > 0 else v
    |then>> fmt("found {}", v + 1)  # lambda v: f"found {v + 1}" 
)


main(dict())  # None
main({True: 4})  # None
main({True: -4})  # found -3

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

act4-3.0.0.tar.gz (60.5 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