Given a list, set, tuple or dictionary as data input, loop through the data and replace all values that are not a list, set, tuple or dictionary using a replace function.
Project description
Deep Replacer
Given a list, set, tuple or dictionary as data input, loop through the data and replace all values that are not a list, set, tuple or dictionary using a replace function.
How to use
Basic example
from deep_replacer import DeepReplacer
replacer = DeepReplacer()
def my_replace_func(value: str):
"""Return value to upper case"""
return value.upper()
data = [
{
"name": "John Doe",
"hobbies": {
"sport": ["football", "tennis"],
"music": ["singing", "guitar", "piano"],
},
}
]
data_replaced = replacer.replace(data=data, replace_func=my_replace_func)
print(data_replaced)
Output:
[
{
"name": "JOHN DOE",
"hobbies": {
"sport": [
"FOOTBALL",
"TENNIS"
],
"music": [
"SINGING",
"GUITAR",
"PIANO"
]
}
}
]
Example using key_depth_rules
argument
from deep_replacer import DeepReplacer
from deep_replacer import key_depth_rules
replacer = DeepReplacer()
def my_replace_func(value: str):
"""Return value to upper case"""
return value.upper()
data = [
{
"name": "John Doe",
"hobbies": {
"sport": ["football", "tennis"],
"music": ["singing", "guitar", "piano"],
},
}
]
data_replaced = replacer.replace(
data=data,
replace_func=my_replace_func,
key_depth_rules={"hobbies:sport": [key_depth_rules.IGNORE]}, # Ignore key at depth 'hobbies:sport'
)
print(data_replaced)
Output:
[
{
"name": "JOHN DOE",
"hobbies": {
"sport": [
"football",
"tennis"
],
"music": [
"SINGING",
"GUITAR",
"PIANO"
]
}
}
]
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
deep-replacer-0.0.3.tar.gz
(4.7 kB
view details)
File details
Details for the file deep-replacer-0.0.3.tar.gz
.
File metadata
- Download URL: deep-replacer-0.0.3.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5879ea96a40b13dc47b1712d476719dcc65e6a3cf237badf5c7d114f6cb9114 |
|
MD5 | ae424ff1bb1e91a9771d6781029c1dde |
|
BLAKE2b-256 | 6b0396dfea22e67e290d0bb4fedfb7ddcb5d002d952e553c4ca3ef631e0004f5 |