Created
June 6, 2020 13:00
-
-
Save rafaeldalsenter/a0301469e31ac7bdb7e425dde48b5ee3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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