gpt4 book ai didi

python - 解析服务器有效负载,缺少几个键

转载 作者:行者123 更新时间:2023-12-04 10:06:20 24 4
gpt4 key购买 nike

我有一个相当基本的代码。基本上它所做的是向本地托管的服务器发送一个 API 请求并返回一个 JSON 字符串。我要把那根绳子拆开。然后我从中取出我需要的东西,制作一个字典,并将其导出为带有 nfo 扩展名的 XML 文件。

问题是有时源数据缺少位。例如,季节经常丢失。它打破了数据映射。我需要一种方法来处理它。对于某些我可能想要排除数据的事情,而对于其他人,我需要一个合理的默认值。

#!/bin/env python

import os
import requests
import re
import json
import dicttoxml
import xml.dom.minidom
from xml.dom.minidom import parseString
# Grab Shoko Auth Key

apiheaders = {
'Content-Type': 'application/json',
'Accept': 'application/json',
}

apidata = '{"user": "Default", "pass": "", "device": "CLI"}'

r = requests.post('http://192.168.254.100:8111/api/auth',
headers=apiheaders, data=apidata)
key = json.loads(r.text)['apikey']

# Grabbing Episode Data
EpisodeHeaders = {
'accept': 'text/plain',
'apikey': key
}

EpisodeParams = (
('filename',
"FILE HERE"),
('pic', '1'),

)

fileinfo = requests.get(
'http://192.168.254.100:8111/api/ep/getbyfilename', headers=EpisodeHeaders, params=EpisodeParams)

# Mapping Data from Shoko to Jellyfin NFO
string = json.loads(fileinfo.text)
print(string)
eplot = json.loads(fileinfo.text)['summary']
etitle = json.loads(fileinfo.text)['name']
eyear = json.loads(fileinfo.text)['year']
episode = json.loads(fileinfo.text)['epnumber']
season = json.loads(fileinfo.text)['season']
aid = json.loads(fileinfo.text)['aid']
seasonnum = season.split('x')

# Create Dictionary From Mapped Data

show = {
"plot": eplot,
"title": etitle,
"year": eyear,
"episode": episode,
"season": seasonnum[0],
}

这是代码崩溃时的一些示例输出
{'type': 'ep', 'eptype': 'Credits', 'epnumber': 1, 'aid': 10713, 'eid': 167848, 
'id': 95272, 'name': 'Opening', 'summary': 'Episode Overview not Available',
'year': '2014', 'air': '2014-11-23', 'rating': '10.00', 'votes': '1',
'art': {'fanart': [{'url': '/api/v2/image/support/plex_404.png'}],
'thumb': [{'url': '/api/v2/image/support/plex_404.png'}]}}
Traceback (most recent call last):
File "/home/fletcher/Documents/Shoko-Jellyfin-NFO/Xml3.py", line 48, in <module>
season = json.loads(fileinfo.text)['season']
KeyError: 'season'

基于 Mahori 建议的解决方案。完美地工作。
eplot = json.loads(fileinfo.text).get('summary', None)
etitle = json.loads(fileinfo.text).get('name', None)
eyear = json.loads(fileinfo.text).get('year', None)
episode = json.loads(fileinfo.text).get('epnumber', None)
season = json.loads(fileinfo.text).get('season', '1x1')
aid = json.loads(fileinfo.text).get('aid', None)

最佳答案

这是 Web 开发中相当常见的场景,您不能总是假设其他方会发送所有 key 。

解决这个问题的标准方法是使用 get而不是命名获取。

season = json.loads(fileinfo.text).get('season', None)
#you can change None to any default value here

关于python - 解析服务器有效负载,缺少几个键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61570962/

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