MagicStack / immutables

A high-performance immutable mapping type for Python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

immutables

image

image

An immutable mapping type for Python.

The underlying datastructure is a Hash Array Mapped Trie (HAMT) used in Clojure, Scala, Haskell, and other functional languages. This implementation is used in CPython 3.7 in the contextvars module (see PEP 550 and PEP 567 for more details).

Immutable mappings based on HAMT have O(log N) performance for both set() and get() operations, which is essentially O(1) for relatively small mappings.

Below is a visualization of a simple get/set benchmark comparing HAMT to an immutable mapping implemented with a Python dict copy-on-write approach (the benchmark code is available here):

image

Installation

immutables requires Python 3.6+ and is available on PyPI:

$ pip install immutables

API

immutables.Map is an unordered immutable mapping. Map objects are hashable, comparable, and pickleable.

The Map object implements the collections.abc.Mapping ABC so working with it is very similar to working with Python dicts:

Since Maps are immutable, there is a special API for mutations that allow apply changes to the Map object and create new (derived) Maps:

Maps also implement APIs for bulk updates: MapMutation objects:

MapMutation objects are context managers. Here's the above example rewritten in a more idiomatic way:

Further development

  • An immutable version of Python set type with efficient add() and discard() operations.

License

Apache 2.0

About

A high-performance immutable mapping type for Python.

License:Other


Languages

Language:C 57.2%Language:Python 42.5%Language:Makefile 0.3%