ようやくたどり着き、ページを開いて、必要なリクエストを行いました。
#!/usr/bin/env python
from twill.commands import *
go("http://www.website.com/")
code(200) # assert page loaded fine
showforms()
# Make a search
searchStr = '%s' % n
formvalue(1, 'q', searchStr)
submit('Factorize!')
links = showlinks()
すべてのリンクが一覧表示されているので、番号をクリックして、11ページ12ごとに 1 つの値を取得します。
使用方法とfollow()、値を取得するために使用するコマンドは何ですか?