- 2
- 이니스프리
- 조회 수 322
import feedparser d = feedparser.parse('https://news.google.com/rss?hl=ko&gl=KR&ceid=KR:ko') result = [] for e in d.entries: result.append([e.title, e.link, e.description, e.published])
위와 같이 feedparser 모듈을 활용하여 제목, 링크, 내용, 게시시간을 파싱할 수 있습니다 ^^
님 포함 2명이 추천
추천인 2
작성자
댓글 2
+1
오.. 파이썬은 신기한 모듈들이 정말 많군요..
2021.07.07. 08:19
댓글과 추천 항상 감사드립니다 ^-^
feedparser는 꽤 편리하고 강력한 모듈이죠!
장단점에 대해 일목요연하게 정리된 글이 있네요~
https://stackoverflow.com/questions/2244836/rss-feed-parser-library-in-python
빠른 개발을 할 때 유용한데, 제 경험상 가끔 누락되는 요소가 있는 것 같습니다.
그럼 편안한 저녁 되세요 :)
2021.07.07. 22:41
권한이 없습니다.