gpt4 book ai didi

ubuntu linux 上的 python : json.解码器.JSONDecodeError:期望值:第2行第6列

转载 作者:行者123 更新时间:2023-12-03 05:43:38 25 4
gpt4 key购买 nike

当我在 Ubuntu 16.04 上运行 python 脚本时,出现以下错误。

当我运行相同的代码但不确定哪个包未正确安装时,它在 Windows 上运行良好。

import subprocess
import json

#one vnet and one subnet in the resourcegroup.
def get_vnet_name(resourcegroup):
get_vnet_command=["az","network","vnet","list","--resource-group",resourcegroup]
get_vnet=subprocess.run(get_vnet_command, shell = True, stdout=subprocess.PIPE, stderr = subprocess.PIPE)
a=get_vnet.stdout.decode('utf-8')
d=json.loads(a)
for item in d:
vname=item["name"]
subnets=item["subnets"]
for i in subnets:
subnetname=i["name"]
return vname,subnetname

def create_vm(vm_resourcegroup,vm_name, vm_image,vm_username, vm_passowrd,vm_vnet,vm_subnet, vm_size):
create_vm_command=["az","vm","create","--resource-group",vm_resourcegroup,"--name",vm_name,"--image",vm_image, "--admin-username", vm_username,"--admin-password",vm_passowrd,"--vnet-name",vm_vnet,"--subnet",vm_subnet,"--size", vm_size]
create_vm=subprocess.run(create_vm_command, shell = True, stdout=subprocess.PIPE, stderr = subprocess.PIPE)
return


if __name__=="__main__":
rscgroup_name="vm-test-group"
avm_name="testvm1"
avm_image="Win2019Datacenter"
avm_username="myuser"
avm_password="mypassword"
avm_size="Standard_D2_V3"
vault_name = "aqrahkeyvault"
certificate_name = "staticwebsite"

avm_vnet,avm_subnet=get_vnet_name(rscgroup_name)
create_vm(rscgroup_name,avm_name,avm_image,avm_username,avm_password,avm_vnet,avm_subnet,avm_size)

下面是我遇到的与 json.decoder 相关的错误:

  root@linuxvm:/home/azureuser# python3.6  test2.py
Traceback (most recent call last):
File "test2.py", line 32, in <module>
avm_vnet,avm_subnet=get_vnet_name(rscgroup_name)
File "test2.py", line 9, in get_vnet_name
d=json.loads(a)
File "/usr/lib/python3.6/json/__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.6/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.6/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 2 column 6 (char 6)

我尝试安装 python,但没有解决问题。

最佳答案

我尝试重现您的问题并成功找出原因。实际上,您的脚本基本上是正确的,但您可能没有考虑 az 命令不向 stdout 返回任何结果的情况。

例如,我的订阅中有一个不存在的资源组,例如 non-exist-rg。如果我将其作为参数 --resource-group 的值传递,下面的脚本将向 stderr 返回错误信息,stdout 值为b''

import subprocess
resourcegroup = 'non-exist-rg'
get_vnet_command=["az","network","vnet","list","--resource-group",resourcegroup]
get_vnet=subprocess.run(get_vnet_command, shell = True, stdout=subprocess.PIPE, stderr = subprocess.PIPE)

stdoutstderr 的结果如下。

>>> get_vnet.stdout
b''
>>> get_vnet.stderr
b"ERROR: Resource group 'non-exist-rg' could not be found.\r\n"

因此,如果您将 stdout 值传递给 json.loads 函数,它将引发与您相同的问题,json.decoder.JSONDecodeError: Expecting value :第1行第1列(char 0),因为json.loads无法处理空内容。在这里,对于 json.loads 来说,stdoutstderrbytes 值的 decode 函数不是必需的。可以接收如下图的bytes值。

enter image description here

因此要解决此问题,解决方案是检查 stdout 值是否为空或 stderr 值是否不为空。

def get_vnet_name(resourcegroup):
get_vnet_command=["az","network","vnet","list","--resource-group",resourcegroup]
get_vnet=subprocess.run(get_vnet_command, shell = True, stdout=subprocess.PIPE, stderr = subprocess.PIPE)
# decode for stdout is not necessary
# a=get_vnet.stdout.decode('utf-8')
vname,subnetname = '', ''
if get_vnet.stdout == b'':
d=json.loads(get_vnet.stdout)
for item in d:
vname=item["name"]
subnets=item["subnets"]
for i in subnets:
subnetname=i["name"]
return vname,subnetname

然后,您需要在调用 create_vm 方法之前检查 vnamesubnetname 值。

希望有帮助。

关于ubuntu linux 上的 python : json.解码器.JSONDecodeError:期望值:第2行第6列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56608396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com