Skip to content

Instantly share code, notes, and snippets.

@manvillej
Created October 15, 2019 14:05
Show Gist options
  • Save manvillej/02f51f90bc9f57e5e5a57f2df7b5909f to your computer and use it in GitHub Desktop.
Save manvillej/02f51f90bc9f57e5e5a57f2df7b5909f to your computer and use it in GitHub Desktop.
CSCI-E90 HW6: publisher.py
"""
CSCI-E90 HW6: publisher.py
"""
# std library
# custom packages
# 3rd party packages
def main():
# do not change below
topic = os.environ['SNS_ARN']
iterations = os.environ.get('PUBLISH_ITERATIONS', 1000)
wait_time = os.environ.get('PUBLISH_WAIT_TIME', 5)
# do not change above
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment