V
V
veleus2020-06-03 21:14:38
Python
veleus, 2020-06-03 21:14:38

bs4 not working?

when running the code nothing is output

import requests
from bs4 import BeautifulSoup as bs
r=requests.get("https://stopgame.ru/review/new/stopchoice")
html = bs(r.content,"html.parser")
for el in html.select(".lent-block"):
    title=el.select(".lent-title < a")
    print(title)

5ed7e86ee5d78532146898.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Karbivnichy, 2020-06-03
@veleus

You need to ask where you copied the code. This question has been asked more than once, including on ru and eng stackoverflow.
To the point - there is no 'lent-block' on the page

import requests
from bs4 import BeautifulSoup


response = requests.get("https://stopgame.ru/review/new/stopchoice")
soup = BeautifulSoup(response.text,'lxml')

items = soup.find('div',class_='tiles tiles-details tiles-duo').find_all('div',class_='item article-summary article-summary-card')

for item in items:
  title = item.find('div',class_='caption caption-bold').a.text
  url = item.find('div',class_='caption caption-bold').a.get('href')
  print(f'{title} - https://stopgame.ru{url}')

spoiler
Persona 5 Royal: Обзор - https://stopgame.ru/show/108238/persona_5_the_roya...
Animal Crossing: New Horizons: Обзор - https://stopgame.ru/show/108149/animal_crossing_ne...
Disco Elysium: Обзор - https://stopgame.ru/show/106499/disco_elysium_review
Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition: Обзор - https://stopgame.ru/show/106091/dragon_quest_xi_s_...
Outer Wilds: Обзор - https://stopgame.ru/show/104721/outer_wilds_review
Baba Is You: Обзор - https://stopgame.ru/show/103599/baba_is_you_review
Apex Legends: Обзор - https://stopgame.ru/show/103284/apex_legends_review
Mario & Luigi: Bowser's Inside Story + Bowser Jr.'s Journey: Обзор - https://stopgame.ru/show/103254/mario_luigi_bowser...
Protocol: Обзор - https://stopgame.ru/show/102336/protocol_review
Dead Cells: Обзор - https://stopgame.ru/show/100750/dead_cells_review
Pillars of Eternity 2: Deadfire: Обзор - https://stopgame.ru/show/99169/pillars_of_eternity...
God of War (2018): Обзор - https://stopgame.ru/show/98980/god_of_war_2016_review
Celeste: Обзор - https://stopgame.ru/show/97572/celeste_review
Wolfenstein 2: The New Colossus: Обзор - https://stopgame.ru/show/95777/wolfenstein_2_the_n...
Divinity: Original Sin 2: Обзор - https://stopgame.ru/show/94227/divinity_original_s...
Sonic Mania: Обзор - https://stopgame.ru/show/93281/sonic_mania_review
Prey (2017): Обзор - https://stopgame.ru/show/90494/prey_2_review
Persona 5: Обзор - https://stopgame.ru/show/89682/persona_5_review
Dragon Quest 8: Journey of the Cursed King: Обзор - https://stopgame.ru/show/88168/dragon_quest_8_the_...
Titanfall 2: Обзор - https://stopgame.ru/show/86249/titanfall_2_review
Overwatch: Обзор - https://stopgame.ru/show/83078/overwatch_review
DOOM: Обзор - https://stopgame.ru/show/82861/doom_4_review
The Witcher 3: Wild Hunt - Hearts of Stone: Обзор - https://stopgame.ru/show/57585/witcher_3_wild_hunt...
The Witcher 3: Wild Hunt: Обзор - https://stopgame.ru/show/56607/witcher_3_wild_hunt...
Broken Age: Act 2: Обзор - https://stopgame.ru/show/56463/broken_age_act_2_review
Pillars of Eternity: Обзор - https://stopgame.ru/show/56238/pillars_of_eternity...
Divinity: Original Sin: Обзор - https://stopgame.ru/show/53704/divinity_original_s...
Wolfenstein: The New Order: Обзор - https://stopgame.ru/show/53296/wolfenstein_the_new...
Tearaway: Обзор - https://stopgame.ru/show/51094/tearaway_review
Grand Theft Auto V: Обзор - https://stopgame.ru/show/50435/grand_theft_auto_5_...

Russian documentation on BS4

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question