Я делаю программу RSS Feed
Это мой код
# iterate child elements of item
for child in item:
# special checking for namespace object content:media
if child.tag == '{http://search.yahoo.com/mrss/}content':
news['media'] = child.attrib['url']
else:
news[child.tag] = child.text.encode('utf8')
# append news dictionary to news items list
newsitems.append(news)
# return news items list
return newsitems
Ошибка, которую я получаю
Файл "C: / Users / Prakriti / .spyder-py3 / RSSFeed.py", строка 43, в новостях parseXML [child.tag] = child.text.encode ('utf8')
AttributeError: объект 'NoneType' не имеет атрибута 'кодировать
Пожалуйста, помогите!