lazylist 0.9.0
pip install lazylist
Latest version
Released:
Proxy list to a list-returning function
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: GNU Lesser General Public License v3 or later (LGPLv3+) (LGPLv3+)
- Author: Hong Minhee
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
This small package provides a proxy list to a list-returning function:
>>> from lazylist import LazyList >>> l = LazyList(lambda: x) >>> x = [1, 2, 3] >>> list(l) [1, 2, 3]
More precisely, view function doesn’t have to return an exact list, but an any squence object e.g. str, tuple:
>>> x = "hello" >>> list(l) ['h', 'e', 'l', 'l', 'o']
It satisfies collections.abc.Sequence protocol:
>>> from collections import Sequence >>> isinstance(l, Sequence) True >>> l[-1] 'o' >>> len(l) 5
However, it doesn’t satisfy collections.abc.MutableSequence protocol. In other words, it’s immutable:
>>> from collections import MutableSequence >>> isinstance(l, MutableSequence) False >>> l[0] = 'H' Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'LazyList' object does not support item assignment
Distributed under LGPLv3 or higher.
Todos
LazySet
LazyMap
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: GNU Lesser General Public License v3 or later (LGPLv3+) (LGPLv3+)
- Author: Hong Minhee
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Built Distribution
File details
Details for the file lazylist-0.9.0.tar.gz
.
File metadata
- Download URL: lazylist-0.9.0.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bb960f2d39d0e6b274d65738bad3147721906298b1dbe7561158261666c2caa |
|
MD5 | 411aa103ffb87805b379fde62a6a8bf3 |
|
BLAKE2b-256 | 3c6584cb36de68ab72059fca33016125cb6a2c1963817e42d0b04643bab21814 |
File details
Details for the file lazylist-0.9.0-py2.py3-none-any.whl
.
File metadata
- Download URL: lazylist-0.9.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a04be55176997956387e0705823d822e0031a5d787fb1e792787ed1fd07f5ba6 |
|
MD5 | bc2de977e2ae67f4e5a4ea21f18d9991 |
|
BLAKE2b-256 | 75ebdc3c807c2d0638898b3f57d2f57d3c044876ba6548cb66be488d1b0bbee3 |