Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 643 Bytes

File metadata and controls

28 lines (15 loc) · 643 Bytes

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