This file contains hidden or 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
| import json | |
| from pandas.io.json import json_normalize | |
| import pandas as pd | |
| import collections | |
| import csv | |
| import boto3 | |
| from io import StringIO | |
| s3 = boto3.client('s3') |
This file contains hidden or 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
| { | |
| "Employee": { | |
| "name": "Rakesh", | |
| "job": "software engg.", | |
| "address": "kolkata", | |
| "contact": [{ | |
| "office": "22222", | |
| "personal": "9999999999" | |
| }] | |
| } |