NEWS情報をDiscordで出したいのですがErrorが出ます

AttributeError: object has no attribute 'category'

if message.content.startswith('/news'):
    RSS_URL = "https://headlines.yahoo.co.jp/rss/all-c_ent.xml"
    yahoo_news_dic = feedparser.parse(RSS_URL)
    await client.send_message(message.channel, yahoo_news_dic.feed.title)
    await client.send_message(message.channel, yahoo_news_dic.feed.link)
    await client.send_message(message.channel, yahoo_news_dic.feed.category)