I'm trying to get movie names from imdb list my problem is instead of returning the English name that appear in google chrome inspect element it return the Japanese name.
Note: I tried all BeautifulSoup parsers
Code:
import requests
from bs4 import BeautifulSoup
page=requests.get('https://www.imdb.com/list/ls040141830/')
soup = BeautifulSoup(page.text,'lxml')
name = soup.find('h3','lister-item-header')
print(name)
result:
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">1.</span>
<a href="/title/tt0245429/?ref_=ttls_li_tt">Sen to Chihiro no kamikakushi</a>
<span class="lister-item-year text-muted unbold">(2001)</span>
</h3>
expected result as show in page source:

as you can see the name in english but im getting it in japanese any help would be appreciated thanks.