Created
May 5, 2016 07:14
-
-
Save maatthc/8d284f482bd602f48bee1bccb58d56ac to your computer and use it in GitHub Desktop.
Helper for Datadog API
This file contains 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
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