Python Forum
add dictionarie in json file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
add dictionarie in json file
#4
Please show all the code as well.

The post you are replying to has the initial open specified as:
with open('testjson_dict.json') as ifh:
which uses the default open mode of "read". Your error message suggests that you are using a mode "w" (or "a"). You've opened the file for writing only and have asked the json method to read from it.
Reply


Messages In This Thread
add dictionarie in json file - by 3lnyn0 - Dec-22-2021, 04:25 PM
RE: add dictionarie in json file - by Gribouillis - Dec-22-2021, 04:35 PM
RE: add dictionarie in json file - by 3lnyn0 - Dec-22-2021, 05:00 PM
RE: add dictionarie in json file - by bowlofred - Dec-22-2021, 05:08 PM
RE: add dictionarie in json file - by 3lnyn0 - Dec-22-2021, 05:13 PM
RE: add dictionarie in json file - by Gribouillis - Dec-22-2021, 05:41 PM
RE: add dictionarie in json file - by Pedroski55 - Dec-23-2021, 04:04 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  encrypt data in json file help jacksfrustration 1 374 Mar-28-2024, 05:16 PM
Last Post: deanhystad
  parse json field from csv file lebossejames 4 867 Nov-14-2023, 11:34 PM
Last Post: snippsat
  Python Script to convert Json to CSV file chvsnarayana 8 2,684 Apr-26-2023, 10:31 PM
Last Post: DeaD_EyE
  Loop through json file and reset values [SOLVED] AlphaInc 2 2,327 Apr-06-2023, 11:15 AM
Last Post: AlphaInc
  Converting a json file to a dataframe with rows and columns eyavuz21 13 5,038 Jan-29-2023, 03:59 PM
Last Post: eyavuz21
  validate large json file with millions of records in batches herobpv 3 1,361 Dec-10-2022, 10:36 PM
Last Post: bowlofred
  Writing to json file ebolisa 1 1,077 Jul-17-2022, 04:51 PM
Last Post: deanhystad
  Trying to parse only 3 key values from json file cubangt 8 3,660 Jul-16-2022, 02:05 PM
Last Post: deanhystad
  Initializing, reading and updating a large JSON file medatib531 0 1,850 Mar-10-2022, 07:58 PM
Last Post: medatib531
Question How do I skipkeys on json file read to python dictionary? BrandonKastning 3 1,999 Mar-08-2022, 09:34 PM
Last Post: BrandonKastning

Forum Jump:

User Panel Messages

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