Skip to main content

Forbidden Functional Programming in Python.

Project description

forbiddenfp

Summary

Functional-Programming (FP) in a forbidden way:

You can turn arbitrary function into postfix notation in favor of function chaining.

And the library provides many useful patches for builtin/itertools functions.

Install

Compatible with Python 3.7+

pip install forbiddenfp

Examples

# objects are already patched at import time
import forbiddenfp

"abc".print().len()  # print out "abc", then return 3
"abc".then(lambda s: s * 2).filter(lambda s: s == "b").join()  # "bb"

# A more complex one (examples/word_count.py)
("./lorem_ipsum.txt"
 .with_open(lambda path, f: f.read().also(print(f"Reading {path}")))
 .then(lambda s: s.split(" "))
 .counter()
 .print())

See more ./examples.

_unpack

For every higher-order-function chained, we provide an _unpack version as well. e.g. [(1, 2), (3, 4)].sum(lambda x: x[0] * x[1]) can also be called as [(1, 2), (3, 4)].sum_unpack(lambda x, y: x * y)

Why Functional Programming

Separate out control structs (which are functions provided by library) from business logic (which are lambda functions supplied to fill the control structs).

So we can have a clearer scope, and separate concerns, when we want to change on either side of things.

  • if ... and if ... else ... are modeled by Maybe/Either monads.
  • while ... and for ... in ... are generator/iterators. Additionally, stop-early behavior is takewhile of the sequence.

Philosophically, think more in def transform(old_state) -> new_state, rather than state = modify(state).

What About Auto-completion?

This library is almost an embedded Domain Specific Language (DSL) in Python.

It is understandable that users aren't familiar with what is available without auto-completion features in IDEs.

So we leverage the stub file to provide type hints for the builtin object type, which IntelliJ/PyCharm/VsCode all support.

img_1.png

In order to find where to stub, open your IDE and Python project/file, type object to get a class, CTRL/CMD + Click and use "Find Definition" feature to get to the stub file of your IDE plugin.

Then copy/paste src/forbiddenfp/__init__.py under class object stub.

Note that for IntelliJ/Pycharm, once you CTRL + Click on object, you would need to click on the little icon below to get to the actual stub file. Append content there.

img.png

Warning

This library patches builtin object (and hence ALL classes), with hacks around CPython API (provided by forbiddenfruit),

so consider this NSFW (Not Safe For Work).

Known Issues

None doesn't work well with chained keyword arguments.

import forbiddenfp

None.apply(print)  # works
None.apply(func=print)  # doesn't work

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

forbiddenfp-0.9.9.3.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

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

forbiddenfp-0.9.9.3-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file forbiddenfp-0.9.9.3.tar.gz.

File metadata

  • Download URL: forbiddenfp-0.9.9.3.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.16

File hashes

Hashes for forbiddenfp-0.9.9.3.tar.gz
Algorithm Hash digest
SHA256 40e179f232cc32177aa0a3178e70a3cdb2a38f7ec8428b98cd4620b2c6542e5c
MD5 fb314ddb174160c8d77a0fec12f72042
BLAKE2b-256 ab4d3f8de2487e37101a7275fa434b75777f4619026cea59363320429a536ed1

See more details on using hashes here.

File details

Details for the file forbiddenfp-0.9.9.3-py3-none-any.whl.

File metadata

  • Download URL: forbiddenfp-0.9.9.3-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.16

File hashes

Hashes for forbiddenfp-0.9.9.3-py3-none-any.whl
Algorithm Hash digest
SHA256 db1a981a94066d107720834c71e6f28646083e36bd26a963a48a43152edf4334
MD5 32712a20f8c7fffa9e4f8452182663b7
BLAKE2b-256 430c0ff73c0aa49de7ef38d01ef05f35c9439d4a0a756e0ccf2a440fc898277d

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