/hover-client

Python client for the undocumented, unofficial Hover.com API. Based on Dan Krause's excellent gist

Primary LanguagePythonBSD 2-Clause "Simplified" LicenseBSD-2-Clause

hover-client

Build Status

Python client for the undocumented, unofficial Hover.com API.

Based on Dan Krause's excellent gist.

Usage

Import and then instantiate the client as follows:

import hover.client
hc = hover.client.HoverClient(username, password, domain)

Add a new DNS record with:

hc.add_record(type, name, content)

Remove an existing DNS record with:

hc.remove_record(type, name)

Tests

Run the tests with nose:

nosetests