Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created June 6, 2020 13:00
Show Gist options
  • Save rafaeldalsenter/a0301469e31ac7bdb7e425dde48b5ee3 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/a0301469e31ac7bdb7e425dde48b5ee3 to your computer and use it in GitHub Desktop.
from urllib.request import Request, urlopen
from bs4 import BeautifulSoup
URL_STOCKS_LIST = 'https://www.infomoney.com.br/cotacoes/empresas-b3/'
HEADER_BASE = {'user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'}
class Scraping:
...
def get_stock_value(self, stock):
req = Request(stock.url, headers = HEADER_BASE)
response = urlopen(req)
html = response.read()
soup = BeautifulSoup(self.__tratamento_html(html), 'html.parser')
find = soup.find('div', {'class' : 'value'}).find('p').get_text()
return find
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment