Skip to main content

collections.defaultdict equivalent implementation of list.

Project description

https://badge.fury.io/py/defaultlist.svg https://travis-ci.org/c0fec0de/defaultlist.svg?branch=master https://coveralls.io/repos/github/c0fec0de/defaultlist/badge.svg https://readthedocs.org/projects/defaultlist/badge/?version=0.1.0 https://codeclimate.com/github/c0fec0de/defaultlist.png

Documentation

The Documentation is hosted on http://defaultlist.readthedocs.io/en/0.1.0/

Getting started

List extending automatically to the maximum requested length.

Added indicies are filled with None by default.

>>> l = defaultlist()
>>> l
[]
>>> l[2] = "C"
>>> l
[None, None, 'C']
>>> l[4]
>>> l
[None, None, 'C', None, None]

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


Download files

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

Source Distribution

defaultlist-0.1.0.tar.gz (2.9 kB view hashes)

Uploaded Source

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