Polars plugin providing Map operations on List(Struct({key, value})) columns
Project description
polars-map
Polars plugin providing a Map extension type and functions.
Maps represent a mapping from unique keys of any type to values, and are stored as List(Struct({key, value})) columns.
All function in the .map namespace can be used on the extension type or on the
underlying list.
Installation
pip install polars-map
Supported operations (.map.*)
| Category | Methods |
|---|---|
| Accessors | entries, keys, values, len, get, contains_key |
| Filtering | filter, filter_keys, filter_values |
| Transform | eval, eval_keys, eval_values |
| Set ops | merge, intersection, difference |
| Conversion | from_entries |
| Iteration | __iter__, to_list (Series only) |
Usage
import polars as pl
from polars_map import Map
# Construction
ser = pl.Series(
"m",
[
[{"key": "a", "value": 1}, {"key": "b", "value": 2}],
[{"key": "x", "value": 10}],
],
dtype=Map(pl.String(), pl.Int64()),
)
df = pl.DataFrame([ser])
# Accessors
df.select(pl.col("m").map.keys()) # [["a", "b"], ["x"]]
df.select(pl.col("m").map.values()) # [[1, 2], [10]]
df.select(pl.col("m").map.len()) # [2, 1]
# Lookup
df.select(pl.col("m").map.get("a")) # [1, None]
df.select(pl.col("m").map.contains_key("a")) # [True, False]
# Filtering
df.select(pl.col("m").map.filter(pl.element().struct["value"] > 1))
df.select(pl.col("m").map.filter_keys(pl.element() > "a"))
df.select(pl.col("m").map.filter_values(pl.element() >= 2))
# Transform keys or values
df.select(pl.col("m").map.eval_keys(pl.element().str.to_uppercase()))
df.select(pl.col("m").map.eval_values(pl.element() * 2))
# Merge (right-side wins on key conflict)
left = pl.Series("l", [[{"key": "a", "value": 1}, {"key": "b", "value": 2}]], dtype=Map(pl.String(), pl.Int64()))
right = pl.Series("r", [[{"key": "a", "value": 99}, {"key": "c", "value": 3}]], dtype=Map(pl.String(), pl.Int64()))
pl.DataFrame([left, right]).select(pl.col("l").map.merge(pl.col("r")))
# [{"a": 99, "b": 2, "c": 3}]
# Set operations
pl.DataFrame([left, right]).select(pl.col("l").map.intersection(pl.col("r"))) # keys in both
pl.DataFrame([left, right]).select(pl.col("l").map.difference(pl.col("r"))) # keys only in left
# Convert to/from plain List(Struct)
df.select(pl.col("m").map.entries()) # strip Map type
df.select(pl.col("m").map.from_entries()) # wrap as Map (with deduplication)
# Series iteration yields Python dicts
for d in ser.map:
print(d) # {"a": 1, "b": 2}, {"x": 10}
Caveats
- Extension types — used to wrap the underlying
List(Struct)storage with a semanticMapdtype is not yet stabilized and may change across Polars releases. pl.dtype_of— used to efficiently cast to the extension type after some operations is also unstable.- GIL - is required to automatically wrap an expression as the extension type, and so operations which could change the underlying key or value types will briefly lock the GIL to do the cast. This may also prevent the polars engine from reasoning about the type.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file polars_map-0.2.0.tar.gz.
File metadata
- Download URL: polars_map-0.2.0.tar.gz
- Upload date:
- Size: 31.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdb4071d25c14e98257d9909771e51e8716a61074b1886ec75ea1d5074d782c1
|
|
| MD5 |
01e6dbb47c593f8c3bbfcefb0cda398f
|
|
| BLAKE2b-256 |
49f730e5fff227a9e1b02a037020f60c4cfeb491816e3718f1b642054baa2b21
|
Provenance
The following attestation bundles were made for polars_map-0.2.0.tar.gz:
Publisher:
release.yml on hafaio/polars-map
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_map-0.2.0.tar.gz -
Subject digest:
bdb4071d25c14e98257d9909771e51e8716a61074b1886ec75ea1d5074d782c1 - Sigstore transparency entry: 1193431037
- Sigstore integration time:
-
Permalink:
hafaio/polars-map@48d031df4f79a3edd82ac15f8e8f852d74f53b9f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/hafaio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@48d031df4f79a3edd82ac15f8e8f852d74f53b9f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file polars_map-0.2.0-py3-none-any.whl.
File metadata
- Download URL: polars_map-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92106633c653d0b5025a1777f55ea9ac7000519c16e6853d1eed2fb0714098bb
|
|
| MD5 |
aa5f7c108747109f2342d505133a358f
|
|
| BLAKE2b-256 |
955d9c9d10fa4a069efca8b32e38ebe8785f2714458a4db5f890909891fc820c
|
Provenance
The following attestation bundles were made for polars_map-0.2.0-py3-none-any.whl:
Publisher:
release.yml on hafaio/polars-map
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_map-0.2.0-py3-none-any.whl -
Subject digest:
92106633c653d0b5025a1777f55ea9ac7000519c16e6853d1eed2fb0714098bb - Sigstore transparency entry: 1193431057
- Sigstore integration time:
-
Permalink:
hafaio/polars-map@48d031df4f79a3edd82ac15f8e8f852d74f53b9f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/hafaio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@48d031df4f79a3edd82ac15f8e8f852d74f53b9f -
Trigger Event:
workflow_dispatch
-
Statement type: