Mythus commited on
Commit
b7eb3db
·
verified ·
1 Parent(s): 598c354

Update filmpertutti.py

Browse files
Files changed (1) hide show
  1. filmpertutti.py +2 -0
filmpertutti.py CHANGED
@@ -77,6 +77,8 @@ def search(query,date):
77
  response = requests.get(query)
78
  soup = BeautifulSoup(response.text, 'html.parser')
79
  test= soup.find('div', class_='elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid')
 
 
80
  # Find all articles
81
  articles = test.select('article', class_='elementor-post elementor-grid-item post-629565')
82
 
 
77
  response = requests.get(query)
78
  soup = BeautifulSoup(response.text, 'html.parser')
79
  test= soup.find('div', class_='elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid')
80
+ print(test)
81
+ print("THIS IS TEST")
82
  # Find all articles
83
  articles = test.select('article', class_='elementor-post elementor-grid-item post-629565')
84