Created
December 12, 2024 16:53
-
-
Save chapmanjacobd/5845eca57fb0207b0c723c63ad53122f to your computer and use it in GitHub Desktop.
unjson nested columns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def un_json(input_dict: dict[str, str | float]): | |
processed_dict = {} | |
for key, value in input_dict.items(): | |
if isinstance(value, str) and value.startswith(('{', '[')): | |
try: | |
processed_dict[key] = json.loads(value) | |
except json.JSONDecodeError: | |
processed_dict[key] = value | |
else: | |
processed_dict[key] = value | |
return processed_dict |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment