Welcome to Dynect’s documentation!

Date:January 07, 2012

Overview

dynect is a library to use the Dyn API to manage the DNS Lite service.

Features

  • Easy to use.
  • Pool connection thanks to urllib3 and requests.

Installation

To install the last version use pip:

pip install dynect

Example

You can use it to create a new record:

from dynect import Dynect
dyn = Dynect('customer', 'username', 'password', 'zone.com')
record = dyn.add_address('www.zone.com', '1.1.1.1')
dyn.publish()

Indices and tables

Project Versions

Table Of Contents

Next topic

API

This Page