I have the below data in a a.json file.
{
"1000000000": {
"TEST": 2
}
}
import pandas as pd
df = pd.read_json(r"a.json", dtype= str, orient='index', convert_dates=False)
print(df)
Getting output as :
TEST
2001-09-09 01:46:40 2
Expected :
TEST
1000000000 2