我刚刚在我的计算机上成功安装了TWILL,得到了一个非常支持的“StackOverflow”成员的帮助(你可以查看HERE)并试图运行一个简单的例子在斜纹文档页面上(您可以看到该页面HERE)。这是一个例子:
alt text http://roundcan.narod.ru/some_pics/19.jpg
假设www.slash.org上的用户名是 lynxye ,我的密码是哺乳动物。 当我尝试将该示例代码输入到我的Python提示符中时,我只能输入并输入代码的第一行,因为当我单击“Enter”开始一个新行时,我立即收到一些错误消息:
alt text http://roundcan.narod.ru/some_pics/20.jpg
当我尝试将此代码输入终端时,会发生同样的情况:
alt text http://roundcan.narod.ru/some_pics/21.jpg
我想我错过了一些基础知识。也许,我需要创建一个包含该代码的文件,然后以某种方式运行该文件,但我真的不知道我需要在哪里创建该文件以及使用什么扩展。
请有人帮助我吗?
答案 0 :(得分:4)
您需要在twill shell中运行这些命令,而不是python shell
D:\tmp\twill-0.9>python twill-sh
-= Welcome to twill! =-
current page: *empty page*
>>
当您看到>>
或twill-sh文件中只有2行
import twill.shell
twill.shell.main()
你可以将2行的粘贴复制到python提示符。
>>> import twill.shell
>>> twill.shell.main()
-= Welcome to twill! =-
current page: *empty page*
>> ?
Undocumented commands:
======================
add_auth fa info save_html title
add_extra_header find load_cookies setglobal url
agent follow notfind setlocal
back formaction redirect_error show
clear_cookies formclear redirect_output show_cookies
clear_extra_headers formfile reload show_extra_headers
code formvalue reset_browser showforms
config fv reset_error showhistory
debug get_browser reset_output showlinks
echo getinput run sleep
exit getpassword runfile submit
extend_with go save_cookies tidy_ok
current page: *empty page*
>>
答案 1 :(得分:3)
这样做:
>>> import twill.commands
>>> import re
>>>
>>> class browser:
... def __init__(self, url="http://www.slashdot.org"):
... self.a=twill.commands
... self.a.config("readonly_controls_writeable", 1)
... self.b = self.a.get_browser()
... self.b.set_agent_string("Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14")
... self.b.clear_cookies()
... self.url=url
... def slashdot(self, loginName, passwd):
... self.b.go(self.url)
... f = self.b.get_form("1")
... regexp = re.compile("Log In")
... link = self.b.find_link(regexp)
... if link:
... self.b.follow_link(link)
... f=self.b.get_form("2")
... f["unickname"] = loginName
... f["upasswd"] = passwd
... self.a.fv("2", "userlogin", "")
...
>>>
>>> t=browser()
>>> t.slashdot("username", "password")
==> at http://slashdot.org/
==> at http://slashdot.org/my/login
forcing read-only form field to writeable
>>>
如果使用BeautifulSoup解析html
,它也会更容易答案 2 :(得分:0)
尖括号不是字面意思;他们只是在那里表示你应该输入一个值。尝试
setlocal username lynxye
代替。
答案 3 :(得分:0)
这不是在提示中使用的方式。
您需要将键值对括在括号中。像,
SETLOCAL( 'UNAME', 'XYZ')
SETLOCAL( '密码', '123')
去( 'http://abc.org')
FV( '1', '富', '酒吧')