Toolz
A functional standard library for Python. (by pytoolz)
funcy
A fancy and practical functional tools (by Suor)
Toolz | funcy | |
---|---|---|
23 | 5 | |
4,639 | 3,346 | |
0.7% | - | |
3.6 | 5.2 | |
3 months ago | 24 days ago | |
Python | Python | |
GNU General Public License v3.0 or later | BSD 3-clause "New" or "Revised" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Toolz
Posts with mentions or reviews of Toolz.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-18.
- Ask HN: How can I get better at writing production-level Python?
-
[DISCUSSION] What's your favorite Python library, and how has it helped you in your projects?
My favourite lib would probably be toolz, it's just so elegant and fun to use. But it's more functional approach is not always the best fit for the time, so in practice I mostly use it in research, prototyping, console and notebooks.
- REBL
-
What are the best ways to learn Python and Pyspark for ML engineering?
I am not new to Python but only used it to write scripts. Should I start a Python book and then a PySpark book or go directly to PySpark? When reading the legacy code, I found there are usages like GitHub - pytoolz/toolz: A functional standard library for Python. I never heard of.
- Toolz: A Functional Standard Library For Python
- Functional python for data process
-
Top python libraries/ frameworks that you suggest every one
toolz is wildly useful https://github.com/pytoolz/toolz
-
Show HN: Koda, a Typesafe Functional Toolkit for Python
Maybe the toolz[0] family would cover your use cases? There is also a Cython implementation if you need better performance.
[0] https://github.com/pytoolz/toolz/
- What're the cleanest, most beautifully written projects in Github that are worth studying the code?
-
Functional programming beyond itertools
You'll probably enjoy toolz.
funcy
Posts with mentions or reviews of funcy.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-18.
- Funcy: Fancy and practical functional tools [Python]
- Ask HN: How can I get better at writing production-level Python?
-
Ban 1+N in Django
On an unrelated note, Python folks should check out OP's library funcy [1]: "A collection of fancy functional tools focused on practicality. Inspired by clojure, underscore and my own abstractions."
Thanks for the library Suor!
[1] https://github.com/Suor/funcy
-
What can you do in Haskell that you can't do in Python(for example)?
Functional semantics are available in Python, but IMO not that great. List, dict, and generator comprehensions allow you to perform most operations that you would use in a functional first programming language and there are third party libraries like toolz and funcy that implement some of the more advanced operations. The main issue I've found with using Python as a functional language is it doesn't support fluent syntax. With Scala you can do a relatively complex map/filter/reduce operation with syntactic ease list_of_ints.map(x => x*x).filter(x => x%2 ==0).reduce(x,y => x+y) With Python it's just clunky and less readable b/c of support of list comprehension syntax over fluent syntax. sum([x**2 for x in list_of_ints if x % 2 == 0]) A codebase with 5000 lines of the Scala style code will be much readable and maintainable than with the Python style code.
-
Toolz - A functional standard library for Python
Also worse looking at: https://github.com/suor/funcy
What are some alternatives?
When comparing Toolz and funcy you can also consider the following projects:
fn.py - Functional programming in Python: implementation of missing features to enjoy FP
CyToolz - Cython implementation of Toolz: High performance functional utilities
Pyrsistent - Persistent/Immutable/Functional data structures for Python
Coconut - Simple, elegant, Pythonic functional programming.
returns - Make your functions return something meaningful, typed, and safe!
Deal - 🤝 Design by contract for Python. Write bug-free code. Add a few decorators, get static analysis and tests for free.
effect - effect isolation in Python, to facilitate more purely functional code