Python函数式编程工具箱Toolz.zip

时间:2022-08-07 07:01:20
【文件属性】:

文件名称:Python函数式编程工具箱Toolz.zip

文件大小:93KB

文件格式:ZIP

更新时间:2022-08-07 07:01:20

开源项目

Toolz 是 Python 的函数式编程工具箱。Toolz 支持 Python 2.6 和 Python 3.3 。Toolz 的实现包括三部分:itertoolz,for operations on iterables. 例如:groupby,unique, interpose,functoolz, for higher-order functions. 例如:memoize,curry, composedicttoolz, for operations on dictionaries. 例如:assoc,update-in, merge.示例:>>> def stem(word): ...     """ Stem word to primitive form """ ...     return word.lower().rstrip(",.!:;'-\"").lstrip("'\"") >>> from toolz import compose, frequencies, partial >>> wordcount = compose(frequencies, partial(map, stem), str.split) >>> sentence = "This cat jumped over this other cat!" >>> wordcount(sentence) {'this': 2, 'cat': 2, 'jumped': 1, 'over': 1, 'other': 1} 标签:Toolz


【文件预览】:
toolz-master
----MANIFEST.in(46B)
----README.rst(4KB)
----LICENSE.txt(1KB)
----bench()
--------test_curry.py(154B)
--------test_memoize.py(144B)
--------test_memoize_kwargs.py(146B)
--------test_get.py(128B)
--------test_get_list.py(133B)
--------test_first.py(190B)
--------test_sliding_window.py(117B)
--------test_join.py(654B)
--------test_wordcount.py(479B)
--------test_pluck.py(243B)
--------test_groupby.py(120B)
--------test_curry_baseline.py(177B)
--------test_first_iter.py(287B)
--------test_frequencies.py(250B)
----doc()
--------source()
--------make.bat(5KB)
--------Makefile(5KB)
----examples()
--------wordcount.py(358B)
--------fib.py(857B)
--------graph.py(771B)
----.travis.yml(1KB)
----AUTHORS.md(2KB)
----setup.py(1KB)
----toolz()
--------itertoolz.py(27KB)
--------utils.py(139B)
--------__init__.py(324B)
--------dicttoolz.py(9KB)
--------curried()
--------recipes.py(1KB)
--------sandbox()
--------tests()
--------_signatures.py(22KB)
--------compatibility.py(1KB)
--------functoolz.py(34KB)
----tlz()
--------__init__.py(338B)
--------_build_tlz.py(3KB)
----release-notes(1KB)
----.gitignore(71B)
----conda.recipe()
--------build.sh(43B)
--------bld.bat(45B)
--------meta.yaml(382B)
----.coveragerc(178B)

网友评论