What I am trying to do is make a code that converts RUB into PLN using exchange rates of 2 banks, the first one of which is here: https://qiwi.com/payment/exchange I'm trying to get the selling rate of yuans. What so ever,
tags that I extracted seem not to contain it at all, unlike "buying", "selling" and "currency" labels. What did I do wrong and why is this web page so hard to read?
#libraries
import mechanicalsoup
from bs4 import BeautifulSoup
import re
#going to the website and extracting tags
browser=mechanicalsoup.Browser()
page=browser.get("https://qiwi.com/payment/exchange")
html=page.soup
print(type(html), '\n\n', page)
indexea=html.find_all('p')
for idx in indexea:
print(idx)
print(len(indexea))
#variable=indexea[{this is the lien with rubble-yuan exchange rate}]
print()