I want to get this number (dollar price) .
def get_auto_buy_price(self):
id = 35650 # specital number for items
url = f"https://buff.163.com/goods/{id}?from=market#tab=buying"
html = requests.get(url)
soup = BeautifulSoup(html.text, "lxml")
print(soup.find_all("div", "detail-tab-cont"))
With this code I can get where buff163 contains tables with prices but it's empty.