не относится к типу NodeMixin.-Python Anytree - PullRequest
0 голосов
/ 29 ноября 2018

Я получаю следующую ошибку при попытке использовать json-значение родительского узла с помощью модуля anytree. Как получить значение json в качестве родительского?

Вот мой код

def Get_Full_Name():
    name = names.get_full_name()
    return name


def Type_Name():
    ListType = ['Room', 'Building', 'Bed']
    number = random.sample([int(x) for x in range(1, 3)], 1)
    RandomList = ListType[number[0]]
    return RandomList



headers = {
    'accept': 'text/plain',
    'Content-Type': 'application/json-patch+json',
}

name = Get_Full_Name()
ListValue = Type_Name()
params = (
    ('name', name),
    ('type', 'BuildingGroup'),
)

data = '["{}"]'.format(name)

response = requests.post('http://SampleApiURL/', headers=headers,
                         params=params, data=data)


response_body = response.json()
print("Parent: " + response_body)
headers = {
    'accept': 'text/plain',
}

response2 = requests.get('http://SAmpleApiUrl/' + response_body, headers=headers)

response_body1 = response2.json()
RootNode = AnyNode(response_body1)
#ChildL2 = AnyNode(response_content="someValue", parent=RootNode)

exporter = JsonExporter(indent=4, sort_keys=True)
print  (exporter.export(RootNode))

Я получаю ошибку:

Parent node {'locationId': 'LocationId', 'name': 'Andrew Rice', 'type': 'BuildingGroup', 'patientId': None, 'children': None} is not of type 'NodeMixin'.

Как я могу использовать Json в качестве родительского узла?

...