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 details)
Built Distribution
File details
Details for the file splendid-1.1.0.tar.gz
.
File metadata
- Download URL: splendid-1.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf00d1511b06c9eddc3a49b7fb3f0101245fd09921473eece409250f92dded41 |
|
MD5 | 8f23b18ac29c49897d2fd32e58e652cf |
|
BLAKE2b-256 | 5691217f00f91cafb5e74e3c18ce3a92b2ae65de386d757e63a55ceee6847fc7 |
File details
Details for the file splendid-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: splendid-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cb1d923bed7cf5f427d96bcca8ec898906b105f6eadd62d9a1b00e8d6b1b6d5 |
|
MD5 | 604667c007e8351b3373c4a1f0748693 |
|
BLAKE2b-256 | 2c05e150be46aafcaece349e455acf2d4f416d8abcbaae6ab5218cc7885c415d |