Skip to content

Instantly share code, notes, and snippets.

+++ title = "Load Tests as Code" outputs = ["Reveal"] [reveal_hugo] custom_theme = "reveal-hugo/themes/robot-lung.css" margin = 0.2 highlight_theme = "color-brewer" transition = "slide" transition_speed = "fast" +++

@javatrending
javatrending / basic.py
Created July 19, 2020 19:39 — forked from lorey/basic.py
Keeping Pandas DataFrames clean when importing JSON
from pandas.io.json import json_normalize
df = json_normalize(data)
@lorey
lorey / basic.py
Created March 16, 2019 16:40
Keeping Pandas DataFrames clean when importing JSON
from pandas.io.json import json_normalize
df = json_normalize(data)