2012-09-26から1日間の記事一覧

2012年09月26日のツイート

window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.paren…

Pythonでバイナリ入出力のクラス作った

Pythonでバイナリデータ入力とバイナリデータ出力するクラスを作ってみました。ちなみにPythonで作った初めてのクラスです。 from struct import * class ByteIO: def __init__(self, name, mode): enable_mode = ("rb","wb","ab") if mode not in enable_mo…