我已经将XML文件导入到脚本中,并将信息存储在文件中,但是我不确定如何访问索引,因为它们被存储为“ 0x000002937FCB4638的元素”值”。
这是让我明白这一点的代码。
doc = xml.parse(path)
root = doc.getroot()
for student in root:
students[student] = {}
for value in student:
students[student][value] = value.text
XML文件本身很简单:
<students>
<studentname>
<data>value</data>
</studentname>
</students>
答案 0 :(得分:1)
找到解决方案:
{
method : "GET",
url: 'https://api.amazon.com/user/profile',
headers: {
'Authorization': 'Bearer '+ bearerTok,
'Content-Type': 'application/json'
},
rejectUnauthorized: false
}