Functional but Lazy Python
Project description
Functional, but Lazy Python
With FLPy, improve the readibility of your programs by leveraging functional programming.
Installation
FLPy has no external dependencies, and can be installed using pip
:
pip install flpy
Examples
Given an input sequence x
, print all, but the first, squared values that are divisible by 3 and collect the result into a list.
>>> x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # Input sequence
# Usual way
>>> squares = map(lambda v: v * v, x)
>>> squares_div_by_3 = filter(lambda v: v % 3 == 0, squares)
>>> y = list(squares_div_by_3)[1:] # We skip one value
>>> for v in y:
... print(v)
36
81
>>> y
[36, 81]
# FLPy way
>>> from flpy import It
>>> y = (
... It(x)
... .map('|v| v * v') # You can also use lambda or any other callable
... .filter('|v| v % 3 == 0')
... .skip(1)
... .collect() # Collects the iterator into a list
... .for_each('|v| print(v)') # Yet it still returns the list to `y`
... )
36
81
>>> y
ItA<[36, 81]>
TODOs
Non-exhaustive list of ideas.
- Implement parallel iterators
- Add kwargs support for built-in functions
- Increase # of examples
- Improve docs
- Write contribution guidelines
- Setup mypy
- Add unitary tests
- Add benchmarks vs. pure Python to measure overhead
- Add support for async iterators
- ...
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
flpy-1.0.3.tar.gz
(2.7 kB
view details)
Built Distribution
flpy-1.0.3-py3-none-any.whl
(2.8 kB
view details)
File details
Details for the file flpy-1.0.3.tar.gz
.
File metadata
- Download URL: flpy-1.0.3.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8d62e7227fe3a9e66b532b6f00e9585b8b545d005f9d2cf25203e427d500ccf |
|
MD5 | ce71d9d3567decf6e2c669eb73da20f1 |
|
BLAKE2b-256 | 63eaae03090bab6c4693233f279804355b24a2b61a1625779359cafefa4db1c1 |
File details
Details for the file flpy-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: flpy-1.0.3-py3-none-any.whl
- Upload date:
- Size: 2.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e258b5f96b03daa7bdc7374a797f72d62c01ef89740a8fd441a6c37f42d43755 |
|
MD5 | f7231b9cac1cee1f6e182446e086a10a |
|
BLAKE2b-256 | b52bfa8ce100b495de1fa240af76a5969536d0890761793e72a4bf5b773a3d2f |