Skip to main content

A python interface to the ClouDNS.net API

Project description

A python interface to the ClouDNS.net API

Please note that this is still in Beta. Use at your own risk.

This project is an independent project and is not endorsed by CloudNS.net.

The interface is designed to be simple and intuitive. Entities are represented as modules and there is a simple list, create, update, and delete function (when appropriate, ie, you cannot delete an SOA record) for each entity. Some entities have functions specific to them, but whenever possible, the arguments are consistent. The code reads pretty clearly.

For information on the CloudNS.net API see here.

Installing and including in projects

Installing cloudns_api

$ pip install cloudns_api

In order to authenticate correctly, create the following environment variables (using your own credentials):

export CLOUDNS_API_AUTH_USER=my_user
export CLOUDNS_API_AUTH_PASSWORD=my_password

# When you are debugging:
export CLOUDNS_API_DEBUG=True

Running Tests

$ cd <project directory>
$ py.test

Importing and Basic Usage

>>> import cloudns_api

>>> response = cloudns_api.soa.get('example.com')
>>> print(response.json())

    {
        'success'     : True,
        'status_code' : 200,
        'payload'     : {
            'admin_mail'    : 'admin@example.com',
            'default_ttl'   : '3600',
            'expire'        : '1209600',
            'primary_ns'    : 'ns1.example.com',
            'refresh'       : '7200',
            'retry'         : '1800',
            'serial_number' : '2019060601'},
        }
    }

>>> cloudns_api.soa.update(
        'example.com',
        admin_mail='admin@example.com,
        default_ttl=3600,
        expire='1209600', # You can use strings or integers
        primary_ns='ns1.example.com',
        refresh=7200,
        retry=1800,
        serial_number=2019060601
    )

API Reference

TODO

Soli Deo gloria.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloudns_api-0.3.tar.gz (14.7 kB view hashes)

Uploaded Source

Built Distribution

cloudns_api-0.3-py3-none-any.whl (23.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page