4545# ------------------------------------------
4646
4747 "RELEASES" : {
48- "0.9." : [
49- " JsonPreprocessor change 0.9 Implicit creation of data structures" ,
50- " JsonPreprocessor change 0.9 Dotdict feature bug fixing" ,
51- " JsonPreprocessor change 0.9 Update nested parameters handling in key name and value" ,
52- " JsonPreprocessor change 0.9 Nested parameter feature bug fixing" ,
53- " JsonPreprocessor change 0.9 Nested parameters substitution and overwriting improvement" ,
54- " JsonPreprocessor change 0.9 Jsonp file path computation improvement"
55- ],
5648 "0.10." : [
57- " JsonPreprocessor change 0.10 Add jsonDump method to write a file in JSON format" ,
58- " JsonPreprocessor change 0.10 Improve nested parameter format" ,
59- " JsonPreprocessor change 0.10 Improve error message log" ,
60- " JsonPreprocessor change 0.10 Fix bugs of data structures implicitly" ,
61- " JsonPreprocessor change 0.10 Improve index handling together with nested parameters"
49+ "
50+ * Added a ``jsonDump`` method to write the content of a Python dictionary to a file in JSON format
51+
52+ **Example:**
53+
54+ .. code::
55+
56+ dictTest = {\"A\" 1, \"B\" 2}
57+ json_preprocessor = CJsonPreprocessor()
58+ json_preprocessor.jsonDump(dictTest, \"./OutputFile.json\")
59+
60+ * Improved format of nested parameters; improved error messages
61+ * Some bugs fixed in implicitly created data structures
62+ * Improved index handling together with nested parameters
63+ "
6264 ]
6365 }
64- }
66+ }
0 commit comments