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.