Last active
August 11, 2016 21:37
-
-
Save reganstarr/7a7a01a981247d85eb9c1cbf5b42ba7a to your computer and use it in GitHub Desktop.
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
#screenshot of how to set this up: https://zapier.cachefly.net/storage/photos/75c29b38cf502d96472b8ac42daf44fc.png | |
list_of_things = input['comma_separated_string'].split(',') | |
for item in list_of_things: | |
item = item.strip() | |
requests.get(input['webhook_url'] + '?output=' + item) | |
output = {}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment