使用Python从Yahoo页面获取HTML

时间:2016-10-26 14:24:21

标签: python python-requests

我试图使用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

0 个答案:

没有答案