python

テンプレートエンジンgenshi

http://genshi.edgewall.org/

Python best practices

pythonが嫌われる理由であり、好かれる理由だ。 みんなのPythonposted with amazlet at 08.07.12柴田 淳 ソフトバンククリエイティブ 売り上げランキング: 10824おすすめ度の平均: 入門としてはいいかも 大変良くできている 手を出してみようかな本 Pythonは…

FrontPython

http://www.moongift.jp/2008/03/frontpython/たしかにFrontPythonRowはあんあり使わない。でもPythonで遊べるならなんか面白いことできそう。

テーブルに列を追加するには

http://www.postgresql.jp/document/pg825doc/html/ddl-alter.htmlを参考に。 dbtest=# alter table teiblu add column tuikasururetsu int;

pydelicious

pydeliciousには、 feedparseが必要だそうだ。 http://www.feedparser.org/ でpydeliciousは Google Code Archive - Long-term storage for Google Code Project Hosting.からゲット。みんなのpythonに載っていたサンプルを見ながら端折りながらテスト。 >>>…

webから単語をとってくる。

単語と判定するにはどうするのか。。英語だったら、とりあえずスペースで区切ったものを拾ってくればいいか。 >>> from urllib import urlopen >>> src=urlopen("http://python.org/") >>> words=src.read().split() >>> words ['

漢字、正規表現

すべての漢字を取り出す正規表現 - 神様なんて信じない僕らのために

wikiをつくる

The 20 Minutes Wiki — TurboGears 1.0 documentationをやってみる。 20分ではできんわな。

オンラインショッピング・アプリ

Python Web フレームワーク、第 2 回: TurboGears と Python を使って Web 開発を行う このサイトを参考にあそぶ。 下のリンクはgoogleのキャッシュだが、こっちのが本当のことが書いてある。 http://72.14.235.104/search?q=cache:AP-pm0b1dBEJ:www-06.ibm.…

easy_installのバージョン

easy_installはモジュールのインストールを簡単にできて便利だが、 複数のバージョンのpythonを持っているときは気をつけないといけない。 いま、python2.4とpython2.5を持っているが、普通に % easy_install docutils としてもpython2.5のモジュールしか入…

文字列分解

";"で区切られた数値羅列の文字列から 数値だけリストとして取り出す。 % python Python 2.4.4 (#1, Oct 18 2006, 10:34:39) [GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin Type "help", "copyright", "credits" or "license" for more informat…

sqlite練習

http://initd.org/pub/software/pysqlite/doc/usage-guide.html を参考に練習。練習用データベースを作る。(エラーもそのままコピーしているので注意) % sqlite3 mydb SQLite version 3.4.0 Enter ".help" for instructions sqlite> create table people .…

turbogearセットアップ

tgsetup.pyをダウンロード % python tdsetup.py 以上。 次、 pysqliteをいれる http://initd.org/tracker/pysqlite/wiki/pysqliteから ソースをゲット。 tarを展開したディレクトリで % python setup.py install

md5メッセージダイジェストアルゴリズム

% python Python 2.4.4 (#1, Oct 18 2006, 10:34:39) [GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import md5 >>> md5.new("strings").digest() '\x8b\xcff)u\x9…

cgiのテスト

テスト用にhttpdとかをローカルマシンにインストールする必要はないと。 Pythonで超簡単にCGIの動作を確認する方法 | TRIVIAL TECHNOLOGIES 4 @ats のイクメン日記。 % python -m CGIHTTPServer Serving HTTP on 0.0.0.0 port 8000 ... ブラウザのアドレスバ…

gmailアカウントを使ってmailを送る

OP25b回避にGMailを利用 (on python) — 清水川Webを参考に、 対話式で試してみる。 以下、実行履歴だが、ipアドレスとかアカウント名とかは編集して***とかexampleでごまかしている。 % python Python 2.4.4 (#1, Oct 18 2006, 10:34:39) [GCC 4.0.1 (Apple …

pyskypeっていうのが使えそう。

Google Code Archive - Long-term storage for Google Code Project Hosting. pyskypeを使うには、 http://pyobjc.sourceforge.net/software/ と skype.framework が必要のようだ。

skype4py

linuxかwindowsならskype公式のskype4pyというのが使える。 https://developer.skype.com/wiki/Skype4Py Skype4Py download | SourceForge.net Skype4Py download | SourceForge.net python2.5以上が必要。 python-dbusも必要。 DBusBindings Index of /rele…