collections.defaultdict equivalent implementation of list.
Project description
Documentation
The Documentation is hosted on http://defaultlist.readthedocs.io/en/1.0.0/
Getting started
List extending automatically to the maximum requested length.
Added indicies are filled with None by default.
>>> from defaultlist import defaultlist >>> l = defaultlist() >>> l [] >>> l[2] = "C" >>> l [None, None, 'C'] >>> l[4] >>> l [None, None, 'C', None, None]
Slices and negative indicies are supported likewise
>>> l[1:4] [None, 'C', None] >>> l[-3] 'C'
Simple factory functions can be created via lambda.
>>> l = defaultlist(lambda: 'empty') >>> l[2] = "C" >>> l[4] 'empty' >>> l ['empty', 'empty', 'C', 'empty', 'empty']
Installation
To install the defaultlist module run:
pip install defaultlist
If you do not have write-permissions to the python installation, try:
pip install defaultlist --user
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
defaultlist-1.0.0.tar.gz
(3.2 kB
view details)
File details
Details for the file defaultlist-1.0.0.tar.gz
.
File metadata
- Download URL: defaultlist-1.0.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58cec08e2b1bd8a1a39e7a78dbbf6f66250258f461eb9b9ac0cc3eb78d3a0aca |
|
MD5 | 4728e6caf3c36586fe0560dfa8c28c52 |
|
BLAKE2b-256 | b2e6cf788a63ef0dcf7f352bfdd917dd51b1f59b51ff39b28b93a003e4d4ba4e |