I need to get some numbers from this website
But the data I need, takes a little time to load and shows a message of 'wait' until it completely loads.
I used find all and some regular expressions to get the data I need, but when I execute, python
gives me the 'wait' message that appears before the data loads.
Is there a way to make python 'wait' until all data is loaded? my code looks like this,
import urllib.request
from re import findall
def divisas():
pag = urllib.request.urlopen('http://www.preciodolar.com/')
html = str(pag.read())
brasil = findall('<td class="usdbrl_buy">(.*?)</td>',html)
return brasil