Python RSS 크롤링

sookyeong·2022년 3월 30일
0

RSS 크롤링

import feedparser

url = "http://bepolar.tistory.com/rss"

d = feedparser.parse(url)
print(d.feed['title'])
for e in d.entries:
    print("Title : " + e.title)
    print("Link : " + e.link)
    print("Description : " + e.description)
    print("Published : " + str(e.published))
profile
actions speak louder than words

0개의 댓글