We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ad320f + 2685886 commit fd9d03cCopy full SHA for fd9d03c
README.rst
@@ -75,6 +75,12 @@ Usage example
75
jp.jsonset('baz', Path.rootPath(), 'qaz')
76
jp.execute()
77
78
+ # If you use non-ascii character in your JSON data, you can add the no_escape flag to JSON.GET command
79
+ obj_non_ascii = {
80
+ 'non_ascii_string': 'hyvää'
81
+ }
82
+ rj.jsonset('non-ascii', Path.rootPath(), obj_non_ascii)
83
+ print '{} is a non-ascii string'.format(rj.jsonget('non-ascii', Path('.non_ascii_string'), no_escape=True))
84
85
Encoding/Decoding
86
-----------------
0 commit comments