classes
Pyrsistent
classes | Pyrsistent | |
---|---|---|
4 | 6 | |
646 | 2,012 | |
0.0% | - | |
2.0 | 6.1 | |
about 1 year ago | 5 months ago | |
Python | Python | |
BSD 2-clause "Simplified" License | MIT License |
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.
classes
-
Typeclasses in Python
Today I am going to introduce a new concept for Python developers: typeclasses. It is a concept behind our new dry-python library called classes.
- dry-python/classes: Smart, pythonic, ad-hoc, typed polymorphism for Python. Also known as singledispatch on steroids
- Smart, pythonic, ad-hoc, typed polymorphism for Python
Pyrsistent
-
Text Parsing: Now You Have Three Problems (David Beazley)
There are python libraries that implement Clojure style functional data types. Have you tried pyrsistent - https://github.com/tobgu/pyrsistent
-
What are some amazing, great python external modules, libraries to explore?
Hissp is really interesting. Read through the docs and you'll understand Python more deeply. It works well with Toolz and Pyrsistent.
- When you discover deepcopy in python
-
What is the proper way to create a new copy for list, dictionary, tuples, and array
This is normal for some functional languages, since by definition they should prohibit assignment and hence mutation. But you can also achieve a similar (not the same) effect in python, using libraries like pyrsistent (https://github.com/tobgu/pyrsistent/)
-
Hello, HPy
It still is, and Cython is great for accelerating critical Python code.
A C extension is far preferable when you want to code in C, either to write a new data type[1], or write a Python frontend to a C library[2] that is too complex to be well supported by simple FFI.
I think people use Cython more internally when they value the maintainability of "mostly Python" over the fact that it's slower than what native C would get them.
[1]: https://github.com/tobgu/pyrsistent
[2]: https://github.com/libgit2/pygit2
-
Toolz: A functional standard library for Python
There's Pyrsistent[1], which provides persistent data structures.
[1] https://github.com/tobgu/pyrsistent
What are some alternatives?
returns - Make your functions return something meaningful, typed, and safe!
Toolz - A functional standard library for Python.
Deal - 🤝 Design by contract for Python. Write bug-free code. Add a few decorators, get static analysis and tests for free.
fn.py - Functional programming in Python: implementation of missing features to enjoy FP
funcy - A fancy and practical functional tools
Coconut - Simple, elegant, Pythonic functional programming.
CyToolz - Cython implementation of Toolz: High performance functional utilities
effect - effect isolation in Python, to facilitate more purely functional code