Splendid, a collection of useful, small python tools.
Project description
splendid is a collection of useful small python tools to make your life easier.
Visit us on https://github.com/pythoncircus/splendid !
Some Examples
>>> from splendid import chunker >>> list(chunker([1, 2, 3, 4, 5], 3)) [[1, 2, 3], [4, 5]] >>> from splendid import get_path >>> get_path({'foo':[{'bar':3}]}, ['foo'], 'not found') [{'bar': 3}] >>> get_path({'foo':[{'bar':3}]}, ['foo', 'bar'], 'not found') 'not found' >>> get_path({'foo':[{'bar':3}]}, ['foo', 0, 'bar'], 'not found') 3 >>> get_path({'foo':[{'bar':3}]}, ['foo', 0], 'not found') {'bar': 3} >>> from splendid import run_once >>> @run_once ... def foo(): ... print('bar') >>> for i in range(10): ... foo() bar
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
splendid-1.1.0.tar.gz
(7.2 kB
view hashes)
Built Distribution
Close
Hashes for splendid-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cb1d923bed7cf5f427d96bcca8ec898906b105f6eadd62d9a1b00e8d6b1b6d5 |
|
MD5 | 604667c007e8351b3373c4a1f0748693 |
|
BLAKE2-256 | 2c05e150be46aafcaece349e455acf2d4f416d8abcbaae6ab5218cc7885c415d |