Created
October 15, 2019 14:05
-
-
Save manvillej/02f51f90bc9f57e5e5a57f2df7b5909f to your computer and use it in GitHub Desktop.
CSCI-E90 HW6: publisher.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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