使用mechanize提交表单(TypeError:ListControl,必须设置序列)

时间:2012-02-06 14:37:34

标签: python mechanize-python

我正在尝试提交一个带有机械化的表单但是遇到了错误(TypeError:ListControl,必须设置一个序列)在谷歌搜索一段时间后尝试了几个不同的解决方案我无法解决问题。我正在尝试提交所有字段。

通过mechanize获取的表单数据(对于br.forms()中的f打印:f)

<POST http://www.example.com/takeupload.php multipart/form-data
<HiddenControl(MAX_FILE_SIZE=1000000) (readonly)>
<TextControl(<None>=http://www.example.com:81/test.php?pass=550) (readonly)>
<FileControl(file=<No files added>)>
<TextControl(name=)>
<SelectControl(type=[*0, 23, 22, 1, 10, 7, 18, 4, 21, 56, 20, 60, 5, 19, 6, 55, 63, 9])>
<CheckboxControl(strip=[strip])>
<FileControl(nfo=<No files added>)>
<TextareaControl(descr=)>
<SubmitControl(<None>=Do it!) (readonly)>>

我当前的代码

br.open('http://www.bitfarm.co.za/upload.php')

br.select_form(nr=4)

filename = 'test.torrent'
br.form.add_file(open(filename), 'application/x-bittorrent', filename, name='file') 
br.form['name'] = 'test'
br.form['type'] = '22'
br.form['strip'] = '0'
br.form['nfo'] = ''
br.form['descr'] = 'This is the desc'

br.submit()

请你协助并检查我是否使用了正确的表单选项语法。感谢

1 个答案:

答案 0 :(得分:13)

type字段需要您的整数列表,但您只提供一个整数 改变这个:

br.form['type'] = '22'

到此:

br.form['type'] = ['22',]