This commit is contained in:
sundowndev 2018-11-04 21:30:28 +01:00
parent 281d71c372
commit b4be1bcb5a
1 changed files with 11 additions and 0 deletions

11
secrets.py Normal file
View File

@ -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
)