Skip to content

Commit 896938e

Browse files
committed
Siva | minor fix
1 parent 84168b8 commit 896938e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Initial release of nestedutils
13-
- `get_path()` function for accessing nested values in dictionaries, lists, and tuples
13+
- `get_path()` function for accessing nested values in dictionaries, lists
1414
- `set_path()` function for setting nested values with automatic container creation
1515
- `del_path()` function for deleting nested values
1616
- Support for dot-notation string paths (`"a.b.c"`) and list paths (`["a", "b", "c"]`)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![Python](https://img.shields.io/badge/python-3.7%2B-blue.svg)
66
[![PyPI](https://img.shields.io/pypi/v/nestedutils)](https://pypi.org/project/nestedutils/)
77

8-
A utility library for accessing, setting, and deleting nested paths in Python data structures (dicts, lists, tuples).
8+
A utility library for accessing, setting, and deleting nested paths in Python data structures (dicts, lists).
99

1010
## Why nestedutils?
1111

@@ -28,7 +28,7 @@ user_name = get_path(data, "users.0.profile.name")
2828
## Features
2929

3030
- **Simple Path Syntax**: Use dot-notation strings (`"a.b.c"`) or lists (`["a", "b", "c"]`) to navigate nested structures
31-
- **Mixed Data Types**: Seamlessly work with dictionaries, lists, and tuples
31+
- **Mixed Data Types**: Seamlessly work with dictionaries, lists
3232
- **List Index Support**: Access list elements using numeric indices, including negative indices
3333
- **Auto-creation**: Automatically create missing intermediate containers when setting values
3434
- **Flexible Fill Strategies**: Control how missing containers are created with different fill strategies

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "nestedutils"
33
version = "1.0.0"
4-
description = "A utility library for accessing, setting, and deleting nested paths in Python data structures (dicts, lists, tuples)."
4+
description = "A utility library for accessing, setting, and deleting nested paths in Python data structures (dicts, lists)."
55
readme = "README.md"
66
requires-python = ">=3.7"
77
authors = [

0 commit comments

Comments
 (0)