Entries from 2008-10-31 to 1 day

最中限オンライン自動対戦ボット

ついにできた!!なんか嬉しい。 # -*- encoding: utf-8 -*- import mechanize import re from saichugenlib import * # 履歴の読み取り用 def str2num(str): a = ['c', 'd', 'h', 's'] return (int(str[1:]) - 1) * 4 + a.index(str[0]) # ブラウザ設定 br …