Skip to content

Instantly share code, notes, and snippets.

@wonderbeyond
Created July 1, 2021 08:14
Show Gist options
  • Save wonderbeyond/f90a14ef82561f99dd10e1ca13019345 to your computer and use it in GitHub Desktop.
Save wonderbeyond/f90a14ef82561f99dd10e1ca13019345 to your computer and use it in GitHub Desktop.
Do remote log from slack
import requests
webhook_url = "<your-slack-webhook-url>"
def slack_log(message, webhook_url=webhook_url):
requests.post(
webhook_url,
json={"text": message}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment