ka-news-yaa-crawler/article.py
2022-07-02 20:15:13 +02:00

7 lines
160 B
Python

class Article:
def __init__(self, url, image_url, title, summary):
self.url = url
self.image_url = image_url
self.title = title
self.summary = summary