libcloud-dnsmadeeasy

A driver for DNSMadeEasy for libcloud DNS


License
Other
Install
pip install libcloud-dnsmadeeasy==1.1

Documentation

Driver for DNSMadeEasy for Apache libcloud

This package allows you to use DNSMadeEasy with Apache libcloud.

To use it, simply import the dnsmadeeasy module and create the driver instance:

import libcloud.dns.providers
import dnsmadeeasy

API_KEY = '...'
API_SECRET = '...'

Driver = libcloud.dns.providers.get_driver('dnsmadeeasy')
connection = Driver(API_KEY, API_SECRET)