JSON中的单引号与双引号


107

我的代码:

import simplejson as json

s = "{'username':'dfdsfdsf'}" #1
#s = '{"username":"dfdsfdsf"}' #2
j = json.loads(s)

#1 定义是错误的

#2 定义是正确的

我听说在Python中引号和引号可以互换。谁能向我解释一下?

Answers:


169

JSON语法不是Python语法。JSON的字符串需要双引号。


2
但是第一个是JSON中的单引号,我很困惑。那一个可以通过编译,但是第二个不能通过。
陈彬2010年

6
感谢您的确认。显然,我是唯一一个导入的人str(dict),并且不想eval这么做。一个简单的方法.replace("'", '"')就可以解决问题。
isaaclw 2012年

8
我说得太早了。显然,这要复杂得多。
isaaclw 2012年

6
如果您需要各地使用双引号,你可以调用json.dumps(..)在两次:import json; d = dict(tags=["dog", "cat", "mouse"]); print json.dumps(json.dumps(d))这给:"{\"tags\": [\"dog\", \"cat\", \"mouse\"]}"
rprasad

124

您可以使用 ast.literal_eval()

>>> import ast
>>> s = "{'username':'dfdsfdsf'}"
>>> ast.literal_eval(s)
{'username': 'dfdsfdsf'}

9
我最喜欢这个答案:您通常没有选择:如果有人给您单引号,您就会得到单引号。json.loads需要一个额外的参数,或者您应该使用此参数。全局替换“'”是一场灾难,就像传入的数据是一样:{ 'a' : 'this "string" really isn\'t!!!!' }
Mark Gerolimatos 2015年

@Mark,此方法可以适应带有嵌套引号的棘手情况"{'link':'<a href="mylink">http://my.com</a>'}"吗?在这种情况下,ast.literal_eval将引发语法错误
alancalvitti

1
对我来说,这似乎是一种安全隐患。
JacksonHaenchen '19

2
这如何回答这个问题?这与JSON中的单引号和双引号有什么关系?这种ast方法可能允许您从字符串中加载Python字典,但是OP的主要问题是字符串#1不是有效的JSON,而字符串#2是。
jschultz410

43

您可以通过以下方式转储带有双引号的JSON:

import json

# mixing single and double quotes
data = {'jsonKey': 'jsonValue',"title": "hello world"}

# get string with all double quotes
json_string = json.dumps(data) 

12
这是错误的方法。您正在将python数据结构序列化为JSON;最初的问题是关于将JSON反序列化为python数据结构。
tedder42

5
这个想法是使用json.dumps将python序列化为json,然后以str形式对其调用json.loads。
jheld 2016年

3
你想念在这里。如果要加载json字符串,则必须使用双引号。您正在执行的操作仍是转储json,而不是json字符串。
LegitMe '16

12

demjson也是解决json语法错误的好软件包:

pip install demjson

用法:

from demjson import decode
bad_json = "{'username':'dfdsfdsf'}"
python_dict = decode(bad_json)

编辑:

demjson.decode是处理损坏的json的好工具,但是当您处理json数据时,这ast.literal_eval是一个更好的匹配,而且速度更快。


4
demjson.decode是损坏json的好工具-但对于涉及成千上万个json数据包的任务,ast.literal_eval速度要快得多。并不是说demjson没有它的位置:万一更快的方法失败,我将其用作备用。
mjwunderlich '16

1
实际上demjson是一种更好的方法,而不是针对ast.literal_eval和json.loads进行测试
Marware

4

到目前为止,给出了两个问题的答案,例如,如果一个流这样的非标准JSON。因为这样一来,可能不得不解释传入的字符串(而不是python字典)。

问题1- demjson:使用Python 3.7。+并使用conda时,我无法安装demjson,因为它显然不支持Python> 3.5。因此,我需要一个具有更简单方法的解决方案,例如astand / or json.dumps

问题2- astjson.dumps:如果JSON既是单引号又包含至少一个值的字符串,而该字符串又包含单引号,那么我发现的唯一简单而实用的解决方案就是同时应用这两种方法:

在以下示例中,我们假设line是传入的JSON字符串对象:

>>> line = str({'abc':'008565','name':'xyz','description':'can control TV\'s and more'})

步骤1:使用ast.literal_eval()
步骤2 将输入的字符串转换为字典:将json.dumps其应用于键和值的可靠转换,但不影响值的内容

>>> import ast
>>> import json
>>> print(json.dumps(ast.literal_eval(line)))
{"abc": "008565", "name": "xyz", "description": "can control TV's and more"}

json.dumps一个人不能完成这项工作,因为它不能解释JSON,而只能看到字符串。与相似ast.literal_eval():尽管它可以正确解释JSON(字典),但它不会转换我们所需的内容。


3

您可以通过以下方式解决它:

s = "{'username':'dfdsfdsf'}"
j = eval(s)

使用ast.literal_eval而不是eval来避免注入攻击
Simon Kingaby

2

如前所述,JSON不是Python语法。您需要在JSON中使用双引号。它的创建者以使用允许语法的严格子集来减轻程序员的认知负担而闻名。


如果一个JSON字符串本身包含一个单引号(如@Jiaaro所指出的),则以下内容可能会失败。不使用。此处以不起作用的示例为例。

这是非常有用的知道有一个JSON字符串没有单引号。说,您从浏览器控制台/任何地方复制并粘贴了它。然后,您可以输入

a = json.loads('very_long_json_string_pasted_here')

如果它也使用单引号,则可能会中断。


2
json字符串中没有单引号并不是真的。在特定情况下可能是正确的,但您不能依靠它。例如,这是有效的json:{"key": "value 'with' single quotes"}
Jiaaro

2

使用eval函数确实解决了我的问题。

single_quoted_dict_in_string = "{'key':'value', 'key2': 'value2'}"
desired_double_quoted_dict = eval(single_quoted_dict_in_string)
# Go ahead, now you can convert it into json easily
print(desired_double_quoted_dict)

这是一个非常糟糕的例子。如果有人发现您在json上使用eval并发送包含格式错误的json并随后由eval评估的怎么办?
转喻

1

我最近遇到了一个非常类似的问题,并且相信我的解决方案也将对您有用。我有一个文本文件,其中包含以下形式的项目列表:

["first item", 'the "Second" item', "thi'rd", 'some \\"hellish\\" \'quoted" item']

我想将上面的内容解析为python列表,但由于我不信任输入内容,因此对eval()并不热衷。我首先尝试使用JSON,但它仅接受双引号项目,因此我针对此特定情况编写了自己的非常简单的词法分析器(只需插入您自己的“ stringtoparse”,您将获得输出列表:“ items”)

#This lexer takes a JSON-like 'array' string and converts single-quoted array items into escaped double-quoted items,
#then puts the 'array' into a python list
#Issues such as  ["item 1", '","item 2 including those double quotes":"', "item 3"] are resolved with this lexer
items = []      #List of lexed items
item = ""       #Current item container
dq = True       #Double-quotes active (False->single quotes active)
bs = 0          #backslash counter
in_item = False #True if currently lexing an item within the quotes (False if outside the quotes; ie comma and whitespace)
for c in stringtoparse[1:-1]:   #Assuming encasement by brackets
    if c=="\\": #if there are backslashes, count them! Odd numbers escape the quotes...
        bs = bs + 1
        continue                    
    if (dq and c=='"') or (not dq and c=="'"):  #quote matched at start/end of an item
        if bs & 1==1:   #if escaped quote, ignore as it must be part of the item
            continue
        else:   #not escaped quote - toggle in_item
            in_item = not in_item
            if item!="":            #if item not empty, we must be at the end
                items += [item]     #so add it to the list of items
                item = ""           #and reset for the next item
            continue                
    if not in_item: #toggle of single/double quotes to enclose items
        if dq and c=="'":
            dq = False
            in_item = True
        elif not dq and c=='"':
            dq = True
            in_item = True
        continue
    if in_item: #character is part of an item, append it to the item
        if not dq and c=='"':           #if we are using single quotes
            item += bs * "\\" + "\""    #escape double quotes for JSON
        else:
            item += bs * "\\" + c
        bs = 0
        continue

希望它对某人有用。请享用!



0
import ast 
answer = subprocess.check_output(PYTHON_ + command, shell=True).strip()
    print(ast.literal_eval(answer.decode(UTF_)))

为我工作


-4
import json
data = json.dumps(list)
print(data)

上面的代码段应该可以正常工作。


2
它可能会做一些有用的事情,但不能回答所提出的问题。问题始于字符串,而不是列表。
雷切尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.