Skip to content

Instantly share code, notes, and snippets.

@potix2
Created November 29, 2012 01:29
Show Gist options
  • Save potix2/4166134 to your computer and use it in GitHub Desktop.
Save potix2/4166134 to your computer and use it in GitHub Desktop.
botoでSNSを使う
#!/usr/bin/python
import boto.sns
import datetime
topic = 'arn:aws:sns:xxxx:xxx:xxx'
message = 'Hello World!'
conn = boto.connect_sns()
conn.publish(topic, message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment