*目次 [#p32e91fd]
#contents

*インストール [#v0c68c1d]
python2.6がMacPortsの最新(2010/07/07)。以下のコマンドでインストールできる。
 sudo port install python26

*セットアップ [#k46e6bfb]
python25インストール後に表示されるように、python26をデフォルトに設定する。
#pre{{
sudo port install python_select  
sudo python_select python26
}}


*ライブラリ [#s69af6ad]
** setuptoolsのインストール [#r55707f8]
 sudo python setup.py install
**Growlを使う [#s6817a9b]
-[[Growl - Source:http://growl.info/source.php]]からGrowl SDKをダウンロードする。
-Bindings/pythonに移動し、
 sudo python setup.py install
-サンプルを動かす。細かいパラメータの意味がよくわからないけどとりあえず表示できた。
#pre{{
#!/opt/local/bin/python                                              

import Growl
g = Growl.GrowlNotifier(
    applicationName='FindNameError', notifications=['NotifyTest1', '\
NotifyTest2'])
g.register()
g.notify(
    noteType='NotifyTest1',
    title='This is Notify Test1',
    description='Python Growl Notify Test1',
    sticky=False)
}}

※参考…[[PythonでGrowlを叩く - 西尾泰和のはてなダイアリー:http://d.hatena.ne.jp/nishiohirokazu/20080318/1205833455]]

**tweepyを使う [#h631b2ee]
Python用のtwitterライブラリ。
***インストール [#pd2d9def]
-[[joshthecoder's tweepy at master - GitHub:http://github.com/joshthecoder/tweepy]]のDownloadからダウンロードするか  git clone git://github.com/joshthecoder/tweepy.git を実行
- setuptoolsを使ってインストール。
 sudo python setup.py install


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS