I am trying to web scrape this website: https://www.reuters.com/companies/tsla.oq/financials/income-statement-quarterly
I am using Python and everything can be scraped except the date part... i.e. I can't scrape '30-Jun-20'. I tried like
from requests import get
from bs4 import BeautifulSoup
url = 'https://www.reuters.com/companies/tsla.oq/financials/income-statement-quarterly'
response = get(url)
html_soup = BeautifulSoup(response.text, 'html.parser')
table = html_soup.find_all('div', class_ = 'tables-container')
table[0].thead.tr.find('time', class_ = 'TextLabel__text-label___3oCVw TextLabel__black___2FN-Z TextLabel__medium___t9PWg').text
But it shows blank... Can you please help me? That would be much appreciated.