Python Twill:requests.exceptions.MissingSchema

Python Twill:requests.exceptions.MissingSchema,python,twill,Python,Twill,我正在为一个需要用户登录才能查看其内容的页面开发一个简单的web刮板 from twill.commands import * go("https://website.com/user") fv("1","edit-name","NICKNAME") fv("1","edit-pass","NICKNAME") submit('0') 这是我目前的代码。运

我正在为一个需要用户登录才能查看其内容的页面开发一个简单的web刮板

from twill.commands import *
go("https://website.com/user")
fv("1","edit-name","NICKNAME")
fv("1","edit-pass","NICKNAME")
submit('0')
这是我目前的代码。运行它时,我得到以下错误

raise MissingSchema(error)
requests.exceptions.MissingSchema: Invalid URL '/user': No schema supplied. Perhaps you meant http:///user?
我做错了什么