簡単な使用法¶
Python対話インタプリタでPyKayacIMを試す¶
PyKayacIMを用いてプッシュ通知を送信するには、これらの三段階を踏むだけです。
モジュール
pykayacim.api
をインポートします。これはPyKayacIMの核となるモジュールです。あなたのユーザ資格情報を与えることで、
pykayacim.api.KayacIMAPI
のインスタンスを初期化します。pykayacim.api.KayacIMAPI.send()
を呼び出し、通知を送信します。
# Step 1
import pykayacim.api # Import the core module.
# Step 2
# Read the rest of this document for details about the parameters.
api = pykayacim.api.KayacIMAPI( # Initialize an instance.
username=u"yourusername", # The username of your account.
method=u"secret", # Authorize using the secret key cryptosystem.
key=u"yoursecretkey") # Your secret key for authorization.
# Step 3
api.send( # Send a notification.
message=u"Hello. こんにちは。" # The message.
handler=u"mailto:example@example.com") # The URI scheme (optional).
PyKayacIMのコマンドラインツールを使用する¶
PyKayacIMには ezkayacim
という名前のコマンドラインツールがあります。このツールは Scripts
ディレクトリにインストールされるでしょう。詳細情報を得るには ezkayacim --help
を実行してください。
ezkayacim none -s mailto:example@example.com yourusername "Your message"
ezkayacim password -s http://example.com yourusername メッセージ yourpassword
ezkayacim secret yourusername message yourkey