我使用feed解析器獲取rss對象。當我運行我得到一個列表索引超出範圍錯誤存在的索引
live_leak.links
我得到
[{'type': 'text/html', 'rel': 'alternate', 'href':
'http://www.liveleak.com/view?i=abf_1476121939'},
{'type': 'application/x-shockwave-flash', 'rel': 'enclosure', 'href':
'http://www.liveleak.com/e/abf_1476121939'}]
但是當我嘗試這個
live_leak.links[1]
我得到列表索引超出範圍,你要知道這是較早的工作,然後突然這沒有奏效。我在我的代碼中有這個,它花了我幾個小時才找到,因爲我沒有意識到這是不可行的。如果沒有人知道我會做一個字符串替換爲黑客,但我寧願做已經工作的東西。
這也適用
live_leak[0]
返回
[{'type': 'text/html', 'rel': 'alternate', 'href':
'http://www.liveleak.com/view?i=abf_1476121939'}]
這是奇怪,因爲其他人會無法正常工作
編輯
def pan_task():
url = 'http://www.liveleak.com/rss?featured=1'
name = 'live leak'
live_leaks = [i for i in feedparser.parse(url).entries]
the_count = len(live_leaks)
ky = feedparser.parse(url).keys()
oky = [i.keys() for i in feedparser.parse(url).entries][:12] # shows what I can pull
try:
live_entries = [{
'html': live_leak.links,
'href': live_leak.links[0]['href'],
'src': live_leak.media_thumbnail[0]['url'],
'text': live_leak.title,
'comments': live_leak.description,
'url': live_leak.links[0]['href'],
'embed': live_leak.links[1]['href'],
'text': live_leak.title,
'comments': live_leak.description,
'name': name,
'url': live_leak.link, # this is the link to the source
'author': None,
'video': False
} for live_leak in live_leaks]
except IndexError:
print('error check logs')
live_entries = []
# for count, elem in enumerate(live_entries):
# the_html = requests.get(live_entries[count]['url']) # a specific text
return print(live_entries[0])
如果它表示索引超出範圍,則該元素不存在。 – TigerhawkT3
重新編輯:'print()'返回'None' – brianpck