fix(card): 修复psa的grade评分提取

This commit is contained in:
xingc
2025-04-17 17:57:15 +08:00
parent 124cac88d4
commit 862ae8fcca

View File

@@ -209,7 +209,7 @@ class CardScraper:
# 卡片品牌
item['card_brand'] = info.get('brand')
# 卡片评分
card_grade = info.get('card_grade') or ''
card_grade = info.get('card_grade') or info.get('grade') or ''
item['card_score'] = regx_match(r'(\d+)', card_grade, first=True)
# 签字评分
auto_score = info.get('autograph_grade') or ''