8 lines
160 B
Python
8 lines
160 B
Python
|
from crawler import Crawler
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
crawl = Crawler('https://www.ka-news.de')
|
||
|
|
||
|
articles = crawl.check_for_new_articles()
|
||
|
print(articles)
|