Skip to content

Instantly share code, notes, and snippets.

@chapmanjacobd
Created December 12, 2024 16:53
Show Gist options
  • Save chapmanjacobd/5845eca57fb0207b0c723c63ad53122f to your computer and use it in GitHub Desktop.
Save chapmanjacobd/5845eca57fb0207b0c723c63ad53122f to your computer and use it in GitHub Desktop.
unjson nested columns
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