79208749

Date: 2024-11-20 19:56:11
Score: 1
Natty:
Report link

Can you print the html content by following code?

import requests  
from bs4 import BeautifulSoup  

headers = {  
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'  
}  
url = 'https://www.ambebi.ge/article/318245-chazirvamde-ramdenime-saatit-adre-titanikidan-bri/'  
content = requests.get(url, headers=headers)  
soup = BeautifulSoup(content.text, 'html.parser')  

# Print the entire HTML  
print(soup.prettify())  # This will print out the entire HTML of the page  

Maybe the div section can be mounted by javascript code after loading the entire HTML code.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: 0x7d202060618