The problem :
I have a series of files in a folder json_data = open("C:/Users/Desktop/soccer_data2/*.json")
like that:
a-01.json
a-02.json
a-03.json
a-01.json :
{'blabla': '127',
 'blabla': 'Sun,,26,Oct,2014',
 'events': [{'outcome': 'save',
             'playerId': 124,
             'position': ['0,50'],
             'teamId': 16,
             'timestamp': 294,
             'type': 'goal_keeping'},
            {'outcome': 'save',
             'playerId': 434,
             'position': ['0,50'],
             'teamId': 19,
             'timestamp': 744,
             'type': 'goal_keeping'},
a-02.json :
{'away_team': '112',
 'date': 'Sun,,27,Oct,2014',
 'events': [{'outcome': 'save',
             .
And i want to merge all files in one json. It is possible? thanks to all
 
     
     
    