2007-08-14から1日間の記事一覧

百合星人

えらいひとには わからないけど わからないから 逆にだいじょうぶ えらいひとには わからないけど エロいひとには すぐにわかります

Makoでshift_jisの文字列をバインディング

shift_jisで書かれたcsvを読んでバインディングしていくときは、こんな感じ。 def create_by_mako(csv_file, tmpl_file): import mako.template tmpl = mako.template.Template(filename=tmpl_file, output_encoding='shift_jis', default_filters=['decode.…

Django勉強会

3分で埋まるとか。早すぎ。 サイボウズラボ行きたかったのに。

続・BeautifulSoupのスクレイピングの練習

import BeautifulSoup import urllib 真偽, 空欄, Noneしか返さない [i.get('href') and i.get('href').endswith('jpg') for i in soup.findAll('a')] Noneも返っちゃう [i.get('href') if i.get('href') and i.get('href').endswith('jpg') else None for i…