An Association List construct
Project description
alistpy
An Association List construct for Python
Install
pip install alistpy
Usage
This simple library provides an AList object that should be a drop-in replacement for most dictionaries, but based on immutable data structures instead.
Cheap to construct, expensive to mutate, as it isn't mutable. Every mutative method actually generates a new AList in it's place.
Example:
import alist
# This is cheap:
a = alist.AList(x=0,y=1)
# This is also cheap:
print(a['x'])
# This is expensive:
a['x'] = 12
Differences to Dictionaries
There's primarily two differences:
-
Mutating the AList is expensive, rather than cheap.
-
Setting the same key multiple times at init time is a ValueError.
That is, Python is happy with:
{'x': 0, 'x': 4}
> {'x': 4}
That sort of behaviour might be unexpected, or cause unexpected problems for the programmer.
So, instead alist:
alist.AList(x=0, x=4)
> Exception raised, ValueError
Issues
Anonymous users (those without accounts) are welcome to submit issues.
Explicit API
There isn't one yet.
Check back in future versions. For now, be guided by the tests.
Testing
Install pytest
, and then run it.
Currently 31 tests for 21 methods.
License
BSD-3 Clause. See LICENSE.md for more.
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
Built Distribution
File details
Details for the file alistpy-1.2.0.tar.gz
.
File metadata
- Download URL: alistpy-1.2.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfad691198fa61e883894496a5d68c9e13025085d72f3018866a479cb75912dc |
|
MD5 | 4a82100c910e81e397d64cef8c027443 |
|
BLAKE2b-256 | 74a9849bc2e053f1549fed46948cf1930a6e1a15f14c96c00e2fc72edaa110b0 |
File details
Details for the file alistpy-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: alistpy-1.2.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4da01874b1514803099f81f79b8555277c1c4a125af769784a0dfca3059200a |
|
MD5 | 65db57d3dc926af8a76d6ded86de97b1 |
|
BLAKE2b-256 | cf794aea99ffa3c7603ad36859d015cceeef21eeab07b0813adb82f58541c468 |