Python - Odwołanie do atrybutu listy

Witam,
W swoim programie posiadam listę netProtocols, która po wywołaniu wygląda następująco
[{
‘Name’: ‘HTTP’,
‘Enabled’: True,
‘Port’: [
8080
],
‘Extension’: None,
‘_attr_1’: None
}, {
‘Name’: ‘RTSP’,
‘Enabled’: True,
‘Port’: [
554
],
‘Extension’: None,
‘_attr_1’: None
}]

Chciałbym odwołać się np. do elementu Name, niestety netProtocols.Name zwraca błąd:
AttributeError: ‘list’ object has no attribute ‘Name’

Więc pytanie z mojej strony - jak dobrać się do atrybutów tej listy?

W tej liście masz strukturę słownika:
https://www.w3schools.com/python/python_dictionaries.asp

test = [

{
‘Name’: ‘HTTP’,
‘Enabled’: True,
‘Port’: [
8080
],
‘Extension’: None,
‘_attr_1’: None
},

{
‘Name’: ‘RTSP’,
‘Enabled’: True,
‘Port’: [
554
],
‘Extension’: None,
‘_attr_1’: None
}

];

print(test[0][‘Name’]);

for el in test:
for k in el.keys():
print(str(k) + “->” + str(el[k]));