import requests
from bs4 import BeautifulSoup
url = 'https://garantex.io/trading/usdtrub'
req = requests.get(url)
soup = BeautifulSoup(req.text, 'lxml')
quotes = soup.find('td', class_="price")
print(quotes)
<tbody class="table table-hover usdtrub_ask asks">