| import feedparser | |
| rss_url = "https://news.google.com/rss/search?q=%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%EC%86%8C%ED%94%84%ED%8A%B8&hl=ko&gl=KR&ceid=KR:ko" | |
| feed = feedparser.parse(rss_url) | |
| if feed.entries: | |
| entry = feed.entries[0] | |
| print(entry.keys()) | |
| print("Title:", entry.title) | |
| print("Link:", entry.link) | |
| print("Description:", entry.description) | |