Beautiful soup scrape - login credentials not working
问题 Trying to scrape a page with login credentials. payload = { 'email': '*******@gmail.com', 'password': '***' } urls = [] login_url = 'https://www.spotrac.com/signin/' url = 'https://www.spotrac.com/nba/contracts/breakdown/2010/' webpage = requests.get(login_url, payload) content = webpage.content soup = BeautifulSoup(content) a = soup.find('table',{'class':'datatable'}) urls.append(a) This is my first time scraping a page with credentials, and can't seem to figure out how to properly enter