from bs4 import BeautifulSoup
import requests
url = 'https://currency.com/ru/ethereum'
page = requests.get(url)
soup = BeautifulSoup(page.text, "html.parser")
current_price = soup.find('span', class_='table-instruments__price')
print(current_price.text)