Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Merge JSON Files
#1
I want to incrementally merge multiple json files of similar structure into a single file that already exists.

My code is:

import glob

read_files = glob.glob("/dbfs/mnt/sourton-house/File*.json")
with open("/dbfs/mnt/sourton-house/mergedJsonFile.json", "w") as outfile:
    outfile.write('{}'.format('\n'.join([open(f, "r").read() for f in read_files])))
The problem is that it over-writes mergedJsonFile.json. I want the files to merge into mergedJsonFile.json
Reply


Messages In This Thread
Merge JSON Files - by Ugo - Aug-19-2020, 10:55 AM
RE: Merge JSON Files - by buran - Aug-19-2020, 11:50 AM
RE: Merge JSON Files - by ndc85430 - Aug-19-2020, 12:20 PM
RE: Merge JSON Files - by Ugo - Aug-19-2020, 09:52 PM
RE: Merge JSON Files - by ndc85430 - Aug-20-2020, 06:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Merge htm files with shutil library (TypeError: 'module' object is not callable) Melcu54 7 3,474 Mar-09-2025, 04:25 PM
Last Post: Pedroski55
  I'm trying to merge 2 .csv files with no joy! Sick_Stigma 3 1,000 Aug-03-2024, 03:20 PM
Last Post: mariadsouza362
  Trying to generating multiple json files using python script dzgn989 4 2,423 May-10-2024, 03:09 PM
Last Post: deanhystad
  merge all xlsb files into csv mg24 0 836 Nov-13-2023, 08:25 AM
Last Post: mg24
  merge two csv files into output.csv using Subprocess mg24 9 3,628 Dec-11-2022, 09:58 PM
Last Post: Larz60+
  Merge all json files in folder after filtering deneme2 10 4,638 Sep-18-2022, 10:32 AM
Last Post: deneme2
  How to merge all the files in a directory in to one file sutra 3 3,499 Dec-10-2020, 12:09 AM
Last Post: sutra
  How to read multiple csv files and merge data rajeshE 0 2,574 Mar-28-2020, 04:01 PM
Last Post: rajeshE
  extract specific data from a group of json-files ledgreve 3 5,050 Dec-05-2019, 07:57 PM
Last Post: ndc85430
  error merge text files ledgreve 3 3,491 Nov-18-2019, 12:41 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020