python urllib2 を使用してこのフォームからラジオボタンを選択し、ボタンからフォームを送信しようとしています:
<div id="show-form2" class="show-form2">
<input type="radio" name="2" value="21"/>
OPTION
<br/>
<input type="radio" name="2" value="22"/>
OPTION
<br/>
<input type="radio" name="2" value="23"/>
OPTION
<br/>
<input type="radio" name="2" value="24"/>
OPTION
<br/>
<input type="radio" name="2" value="25"/>
OPTION
<br/>
<input type="radio" name="2" value="26"/>
OPTION
<br/>
<input type="radio" name="2" value="27"/>
OPTION
<br/>
<input type="radio" name="2" value="28"/>
OPTION
<br/>
<input type="radio" name="2" value="29"/>
OPTION
<br/>
<input type="radio" name="2" value="30"/>
OPTION
<br/>
<input type="radio" name="2" value="31"/>
OPTION
<br/>
<input type="radio" name="2" value="32"/>
OPTION
<br/>
<input type="radio" name="2" value="33"/>
OPTION
<br/>
<input type="radio" name="2" value="34"/>
OPTION
<br/>
<input type="radio" name="2" value="35"/>
OPTION
<br/>
<input type="radio" name="2" value="36"/>
OPTION
<br/>
<input type="radio" name="2" value="37"/>
OPTION
<br/>
<input type="radio" name="2" value="38"/>
OPTION
<br/>
<input type="radio" name="2" value="39"/>
OPTION
<br/>
<input type="radio" name="2" value="40"/>
OPTION
<br/>
私はこの作業に少し戸惑いました。私が見つけた情報は、mechanize の使用に関連しています。Python標準ライブラリでこれを行う方法はありますか?
よろしく。