Metadata-Version: 2.1
Name: grscheller.fp
Version: 0.3.3
Summary: ### Pythonic Functional Programming Tools
Keywords: functional,functional programming,fp,monad,iterators,maybe,either
Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Requires-Dist: pytest >=7.4 ; extra == "test"
Project-URL: Changelog, https://github.com/grscheller/fp/blob/main/CHANGELOG.md
Project-URL: Documentation, https://grscheller.github.io/fp/
Project-URL: Source, https://github.com/grscheller/fp
Provides-Extra: test

# Python Functional Programming (FP)

Functional programming tools which endeavor to be Pythonic.

* **Repositories**
  * [grscheller.fp][1] project on *PyPI*
  * [Source code][2] on *GitHub*
* Detailed documentation for grscheller.datastructures
  * [Detailed API documentation][3] on *GH-Pages*

### Modules

* grscheller.fp.nada
  * singleton representing the absence of a value
* grscheller.fp.iterables
  * iteration tools implemented in Python
* grscheller.fp.woException
  * tools for handling "exceptional" events without exceptions

### Benefits of FP

* improved composability
* avoid exception driven code paths
* data sharing becomes trivial due to immutability

---

[1]: https://pypi.org/project/grscheller.fp/
[2]: https://github.com/grscheller/fp/
[3]: https://grscheller.github.io/fp/

