gpt4 book ai didi

python - PyYAML与组合,属性错误

转载 作者:太空宇宙 更新时间:2023-11-04 05:13:57 26 4
gpt4 key购买 nike

我一直在努力掌握 PyYAML,因为我喜欢它的可读性,并且想在我工作的几个开源项目中使用它作为 JSON 的替代品。

但是,我一直在努力理解如何使用组合来构造对象。我打开了这个问题:PyYAML - how to deal with compositon它似乎在读出信息方面起作用,但在整个程序的上下文中不起作用。

这是我尝试进行 YAMLify 的精简示例:

import yaml
import data

class DungeonObject(yaml.YAMLObject):
yaml_tag = u'!DungeonObject'
def __init__(self, x, y, char, name, blocks=False, fighter=None):
self.x = x
self.y = y
self.char = char
self.name = name
self.blocks = blocks

self.fighter = fighter
if self.fighter:
self.fighter.owner = self


def __repr__(self):
return "%s(x=%r, y=%r, char=%r, name=%r, blocks=%r fighter=%r)" % (self.__class__.__name__, self.x, self.y, self.char, self.name, self.blocks, self.fighter)

class Fighter(yaml.YAMLObject):
yaml_tag = u'!Fighter'
#combat-related properties and methods (monster, player, NPC).
def __init__(self, hp, defense, strength):
self.hp = hp
self.base_defense = defense
self.base_strength = strength
def __repr__(self):
return "%s(hp=%r, defense=%r, strength=%r)" % (self.__class__.__name__, self.hp, self.defense, self.strength)


monsters = {DungeonObject.name : DungeonObject for DungeonObject in yaml.load_all(data.monsterdata)}
print (monsters)

还有我的 YAML 文件:

monsterdata = """
---
!Fighter &fighter_component
hp: 20
defense: 0
strength: 4
!DungeonObject
x: x
y: y
char: 'o'
name: 'orc'
blocks: True
fighter: fighter_component
---
!Fighter &fighter_component
hp: 9
defense: 0
strength: 10
!DungeonObject
x: x
y: y
char: 't'
name: 'troll'
blocks: True
fighter: fighter_component
"""

有了这个,我得到了错误:第 32 行,在 monsters = {DungeonObject.name : DungeonObject for DungeonObject in yaml.load_all(data.monsterdata)}AttributeError: 'Fighter' 对象没有属性 'name'

最佳答案

每个文档都应该包含一个由FighterDungeonObject 组成的序列/列表。前者没有名称,因此您应该过滤实际上是 DungeonObject 类型而不是 Fighter 类型的 DungeonObjects。

有点令人困惑的是您还使用了一个变量 DungeonObject,因此请尝试对变量使用 dungeon_object:

from ruamel import yaml

monsterdata = """
---
- !Fighter &fighter_component
hp: 20
defense: 0
strength: 4
- !DungeonObject
x: x
y: y
char: 'o'
name: 'orc'
blocks: True
fighter: fighter_component
---
- !Fighter &fighter_component
hp: 9
defense: 0
strength: 10
- !DungeonObject
x: x
y: y
char: 't'
name: 'troll'
blocks: True
fighter: fighter_component
"""


class DungeonObject(yaml.YAMLObject):
yaml_tag = u'!DungeonObject'

def __init__(self, x, y, char, name, blocks=False, fighter=None):
self.x = x
self.y = y
self.char = char
self.name = name
self.blocks = blocks

self.fighter = fighter
if self.fighter:
self.fighter.owner = self

def __repr__(self):
return "{}(x={!r}, y={!r}, char={!r}, name={!r}, blocks={!r} fighter={!r})".format(
self.__class__.__name__, self.x, self.y, self.char, self.name,
self.blocks, self.fighter)


class Fighter(yaml.YAMLObject):
yaml_tag = u'!Fighter'
# combat-related properties and methods (monster, player, NPC).

def __init__(self, hp, defense, strength):
self.hp = hp
self.base_defense = defense
self.base_strength = strength

def __repr__(self):
return "{}(hp={!r}, defense={!r}, strength={!r})".format(
self.__class__.__name__, self.hp, self.defense, self.strength)

monsters = {}
for doc in yaml.load_all(monsterdata, Loader=yaml.Loader):
for dungeon_object in doc:
if isinstance(dungeon_object, DungeonObject):
monsters[dungeon_object.name] = dungeon_object

print (monsters)

给出:

{'orc': DungeonObject(x='x', y='y', char='o', name='orc', blocks=True fighter='fighter_component'), 'troll': DungeonObject(x='x', y='y', char='t', name='troll', blocks=True fighter='fighter_component')}

我更新了 __repr__ 以使用更现代的 .format() 方法。由于我使用的是 ruamel.yaml(它是 PyYAML 功能的超集并且向后兼容),因此我需要明确指定加载程序以在使用默认加载程序时抑制 load_all 不安全的警告。 (免责声明:我是那个包的开发者)

关于python - PyYAML与组合,属性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42251684/

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