I have done JSON transformation using this demo website
http://jolt-demo.appspot.com/#inception
I even got the Json spec ready
[
{
"operation": "shift",
"spec": {
"r_id": "r_id",
"data": {
"list": {
"*": {
"uid": "uid",
"item_list": {
"*": {
"p_id": "p_id",
"sku": "sku",
"q": "q",
"pr": "pr"
}
}
}
}
}
}
}
]
I can seem to find a python package to do this,
all available packages are in Java,
Is there any pythonic way to do this transformation ?