Skip to main content

philiprehberger-safeget

Tests PyPI version Last updated

Safely access nested dictionary keys without exceptions.

Installation

pip install philiprehberger-safeget

Usage

from philiprehberger_safeget import safeget, safeset, has_path, pluck

data = {"user": {"address": {"city": "NYC"}}}

safeget(data, "user.address.city")              # "NYC"
safeget(data, "user.address.zip")               # None
safeget(data, "user.address.zip", default="?")  # "?"

# List index support
data = {"users": [{"name": "Alice"}, {"name": "Bob"}]}
safeget(data, "users.0.name")  # "Alice"

# Check existence
has_path(data, "users.0.name")   # True
has_path(data, "users.5.name")   # False

# Set nested values (creates intermediates)
safeset(data, "config.debug", True)

# Extract multiple paths
pluck(data, "users.0.name", "config.debug")
# {"users.0.name": "Alice", "config.debug": True}

Deleting and walking

from philiprehberger_safeget import delete_path, walk

# Remove a nested key (mutates in place); returns True if something was removed
data = {"a": {"b": 1, "c": 2}}
delete_path(data, "a.b")   # True  -> data == {"a": {"c": 2}}
delete_path(data, "x.y")   # False -> data unchanged

# Works on list indices too
data = {"users": [{"id": 1}, {"id": 2}]}
delete_path(data, "users.0")   # True -> data == {"users": [{"id": 2}]}

# Iterate every (path, value) pair in a nested structure
for path, value in walk({"a": {"b": 1, "c": [10, 20]}}):
    print(path, value)
# a {'b': 1, 'c': [10, 20]}
# a.b 1
# a.c [10, 20]
# a.c.0 10
# a.c.1 20

# Only the leaves
list(walk({"a": {"b": 1, "c": [10, 20]}}, leaves_only=True))
# [("a.b", 1), ("a.c.0", 10), ("a.c.1", 20)]

API

  • safeget(data, path, default=None, separator=".") — Get nested value
  • safeset(data, path, value, separator=".") — Set nested value
  • has_path(data, path, separator=".") — Check if path exists
  • pluck(data, *paths, default=None) — Extract multiple paths
  • delete_path(data, path, separator=".") — Remove value at path; returns whether anything was removed
  • walk(data, leaves_only=False, separator=".") — Iterate (path, value) pairs for every node (or only leaves)

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-safeget 0.3.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-safeget 0.3.0
File Size Uploaded
philiprehberger_safeget-0.3.0.tar.gz 185.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for philiprehberger-safeget 0.3.0
File Interpreter ABI Platform
philiprehberger_safeget-0.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 191.0 kB

Release files / philiprehberger_safeget-0.3.0.tar.gz

Download URL philiprehberger_safeget-0.3.0.tar.gz
Size 185.6 kB
Tags Source
SHA-256 checksum
How to use checksums
7f6265c418b440f134c318d46aab9aec283cdc3f4e052dd51d01e4a39c521527
BLAKE2b-256 checksum
How to use checksums
e10eb72a271c2597af838455eaa2f8e92c66c165fe44f088262d1a40a096a23e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / philiprehberger_safeget-0.3.0-py3-none-any.whl

Download URL philiprehberger_safeget-0.3.0-py3-none-any.whl
Size 5.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
9b8c2fe033c0a3a0589e0f6f8e730d8679d020b0b25ccc6510d75607b3f6ee0f
BLAKE2b-256 checksum
How to use checksums
a5f1ea3ce63db69de9f39bacc4554615ddf1ba1baafe7a717e2edd5688bfb07b
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.3.0 This release

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

0.1.0

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