我试图使用Python及其请求模块从Yahoo页面(而不是API)获取HTML代码,但似乎无法通过login / auth页面。我是否需要对Yahoo使用更复杂的身份验证?
import requests
user = 'user'
password = 'password'
myURL = 'https://football.fantasysports.yahoo.com/'
response = requests.get(url=myURL, auth(user,password))
r = response.text
print r