ka-news-yaa-crawler/article.py

7 lines
160 B
Python
Raw Normal View History

2022-07-02 18:15:13 +00:00
class Article:
def __init__(self, url, image_url, title, summary):
self.url = url
self.image_url = image_url
self.title = title
self.summary = summary