From b4be1bcb5a8ddce432b77734fa95f0fa506589b7 Mon Sep 17 00:00:00 2001 From: sundowndev Date: Sun, 4 Nov 2018 21:30:28 +0100 Subject: [PATCH] Secrets --- secrets.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 secrets.py diff --git a/secrets.py b/secrets.py new file mode 100644 index 0000000..2e13cba --- /dev/null +++ b/secrets.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +# Instanciate an OVH Client. +# You can generate new credentials with full access to your account on +# the token creation page +client = ovh.Client( + endpoint='ovh-eu', # Endpoint of API OVH Europe (List of available endpoints) + application_key='xxxxxxxxxx', # Application Key + application_secret='xxxxxxxxxx', # Application Secret + consumer_key='xxxxxxxxxx', # Consumer Key +) \ No newline at end of file