Skip to main content

More tools

Project description

A set of utility functions for iterators, functions, and dictionaries.

[![Build Status](https://travis-ci.org/pytoolz/toolz.png)](https://travis-ci.org/pytoolz/toolz)

LICENSE

New BSD. See [License File](LICENSE.TXT).

Install

toolz is on the Python Package Index (PyPi):

pip install toolz

or

easy_install toolz

Structure and Heritage

toolz is implemented in three parts:

[itertoolz](https://github.com/pytoolz/toolz/blob/master/toolz/itertoolz/core.py), for opertions on iterables. Examples: groupby, unique, interpose,

[functoolz](https://github.com/pytoolz/toolz/blob/master/toolz/functoolz/core.py), for higher-order functions. Examples: memoize, curry, comp

[dicttoolz](https://github.com/pytoolz/toolz/blob/master/toolz/dicttoolz/core.py), for operations on dictionaries. Examples: assoc, update-in, merge.

These functions come from the legacy of functional languages for list processing. They interoperate well to accomplish common complex tasks.

Example

This builds a standard wordcount function from pieces within toolz:

>>> def stem(word):
...     """ Stem word to primitive form """
...     return word.lower().rstrip(",.!:;'-\"").lstrip("'\"")
>>> from toolz import comp, frequencies
>>> from functools import partial
>>> wordcount = comp(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}

Dependencies

toolz supports Python 2.6+ and Python 3.2+ with a common codebase. It is pure Python and requires no dependencies beyond the standard library.

See Also

Contributions Welcome

toolz aims to be a repository for utility functions, particularly those that come from the functional programming and list processing traditions. We welcome contributions that fall within this scope and encourage users to scrape their util.py files for functions that are broadly useful.

Please take a look at our [issue page](https://github.com/pytoolz/toolz/issues) for contribution ideas.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

toolz-0.2.1.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file toolz-0.2.1.tar.gz.

File metadata

  • Download URL: toolz-0.2.1.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for toolz-0.2.1.tar.gz
Algorithm Hash digest
SHA256 41347314a5d00d44c48b1089cfda2c4e9f92f2f1b641a9ec480b362c84d0fe1b
MD5 2088ed017cc69b134e67f2fd03fd4e6e
BLAKE2b-256 c045547b1cbc7bf3c3c413c36482b67e572f9f6c5c45fbddfc9a7b88ce3f7adb

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page