funcy VS Deal

Compare funcy vs Deal and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
funcy Deal
5 9
3,247 669
- 2.2%
5.5 4.7
5 days ago 4 days ago
Python Python
BSD 3-clause "New" or "Revised" License MIT 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.

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.
  • Ask HN: How can I get better at writing production-level Python?
    9 projects | news.ycombinator.com | 18 Jul 2023
  • Ban 1+N in Django
    10 projects | news.ycombinator.com | 26 Mar 2023
    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)?
    3 projects | /r/haskell | 15 May 2021
    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
    4 projects | /r/programming | 22 Jan 2021
    Also worse looking at: https://github.com/suor/funcy

Deal

Posts with mentions or reviews of Deal. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-03.

What are some alternatives?

When comparing funcy and Deal you can also consider the following projects:

Toolz - A functional standard library for Python.

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!

effect - effect isolation in Python, to facilitate more purely functional code

classes - Smart, pythonic, ad-hoc, typed polymorphism for Python