Skip to content

Instantly share code, notes, and snippets.

@maatthc
Created May 5, 2016 07:14
Show Gist options
  • Save maatthc/8d284f482bd602f48bee1bccb58d56ac to your computer and use it in GitHub Desktop.
Save maatthc/8d284f482bd602f48bee1bccb58d56ac to your computer and use it in GitHub Desktop.
Helper for Datadog API
from datadog import initialize, api
import sys
def dd_init():
dd_options = {
'api_key': '',
'app_key': ''
}
initialize(**dd_options)
return api
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment