Skip to main content

philiprehberger-dotpath

Tests PyPI version Last updated

Access and mutate deeply nested dicts using dot-notation paths.

Installation

pip install philiprehberger-dotpath

Usage

from philiprehberger_dotpath import (
    get, set, has, delete, flatten, unflatten, pop, merge, paths, search,
)

data = {"users": [{"name": "Alice", "email": "alice@example.com"}]}

# Get a value
get(data, "users[0].name")        # "Alice"

# Get with default
get(data, "users[0].phone", default=None)  # None

# Set a value (creates intermediate dicts)
set(data, "users[0].address.city", "Berlin")

# Check existence
has(data, "users[0].address.city")  # True

# Delete a key
delete(data, "users[0].address.city")

Wildcards

data = {"users": [{"email": "a@b.com"}, {"email": "c@d.com"}]}

get(data, "users[*].email")  # ["a@b.com", "c@d.com"]

# Set a field on all items
set(data, "users[*].active", True)
# data["users"] == [{"email": "a@b.com", "active": True}, {"email": "c@d.com", "active": True}]

# Delete a field from all items
delete(data, "users[*].active")

Negative Indexing

data = {"items": [{"name": "a"}, {"name": "b"}, {"name": "c"}]}

get(data, "items[-1].name")      # "c"
set(data, "items[-2].name", "B") # updates second-to-last

Pop

data = {"a": {"b": 1, "c": 2}}

pop(data, "a.b")               # 1  (key removed)
pop(data, "a.missing", default=0)  # 0  (no error)

Merge

data = {"config": {"db": {"host": "localhost", "port": 3306}}}

merge(data, "config.db", {"port": 5432, "name": "mydb"})
# data["config"]["db"] == {"host": "localhost", "port": 5432, "name": "mydb"}

Search

data = {"a": 1, "b": {"c": 2, "d": [10, 20]}}

search(data, lambda v: isinstance(v, int) and v > 5)
# ["b.d[0]", "b.d[1]"]

List All Paths

paths() is a lazy iterator over every leaf path — the keys of flatten() without materialising the dict.

data = {"a": {"b": 1}, "c": [10, 20]}

list(paths(data))
# ["a.b", "c[0]", "c[1]"]

# Useful for streaming over very large structures
for p in paths(huge_config):
    print(p)

Flatten and Unflatten

nested = {"a": {"b": {"c": 1}}, "d": [10, 20]}

flatten(nested)
# {"a.b.c": 1, "d[0]": 10, "d[1]": 20}

unflatten({"a.b.c": 1, "d[0]": 10, "d[1]": 20})
# {"a": {"b": {"c": 1}}, "d": [10, 20]}

Listing keys and counting leaves

data = {"a": {"b": 1}, "c": 2}

keys(data)            # ["a.b", "c"]
keys(data, depth=1)   # ["a", "c"]

count({"a": 1, "b": {"c": 2, "d": 3}})  # 3
count({"a": []})                         # 0  (empty containers don't count)

API

Function Description
get(data, path, *, default=_MISSING) Get value at dot path; raises KeyError if missing and no default
set(data, path, value) Set value at dot path, creating intermediate dicts; supports wildcards
delete(data, path) Delete the key at dot path; supports wildcards
has(data, path) -> bool Check whether a path exists
pop(data, path, *, default=_MISSING) Remove and return value at path; like dict.pop()
merge(data, path, value) Deep-merge a dict into the dict at path
search(data, predicate) -> list[str] Find all dot-paths where predicate(value) is True
paths(data, *, separator=".") -> Iterator[str] Lazy iterator over every leaf path
flatten(data, *, separator=".") -> dict Flatten nested dict to single level
unflatten(data, *, separator=".") -> dict Restore flattened dict to nested structure
keys(data, depth=None) -> list[str] List all dot-paths, optionally capped at depth
count(data) -> int Total leaf count (non-dict, non-list values)

Development

pip install -e .
python -m pytest tests/ -v

Support

If you find this project useful:

⭐ Star the repo

🐛 Report issues

💡 Suggest features

❤️ Sponsor development

🌐 All Open Source Projects

💻 GitHub Profile

🔗 LinkedIn Profile

License

MIT

Release files for philiprehberger-dotpath 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for philiprehberger-dotpath 0.4.0
File Size Uploaded
philiprehberger_dotpath-0.4.0.tar.gz 190.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for philiprehberger-dotpath 0.4.0
File Interpreter ABI Platform
philiprehberger_dotpath-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 198.1 kB

Release files / philiprehberger_dotpath-0.4.0.tar.gz

Download URL philiprehberger_dotpath-0.4.0.tar.gz
Size 190.2 kB
Tags Source
SHA-256 checksum
How to use checksums
0e1cc37a3906257aaad09c0aa6019c367e6a03285325d3f14a64d95df86050b9
BLAKE2b-256 checksum
How to use checksums
3c0ea3563776363bc6a7822afceba19bb6eeb8eb769dcb8cb608454fece2cc3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / philiprehberger_dotpath-0.4.0-py3-none-any.whl

Download URL philiprehberger_dotpath-0.4.0-py3-none-any.whl
Size 7.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4fc16273ba1564d45c9aebdb431984a8f354043668189401ebb3e98272d9c3d5
BLAKE2b-256 checksum
How to use checksums
03835d8627acb16ba5c0cea0d83ca9895894b3acc3548ee383aa9bf97a4e833e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release history Release notifications | RSS feed

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page