pynamecom

Python Library for Name.com v4 API


Keywords
name, com, namecom, api, domain, registrar
License
MIT
Install
pip install pynamecom==0.1.0

Documentation

Overview

https://circleci.com/gh/CtheSky/namecom.svg?style=svg

namecom is a python library that wraps v4 api of name.com, a domain name registrar.

Installation

If you haven't already, start by installing it with pip:

pip install --upgrade pynamecom

Quick Start

Use DnsApi to create a dns record:

from namecom import Auth, DnsApi

auth = Auth('username', 'access_token')
api = DnsApi(domainName='example.org', auth=auth)

result = api.create_record(host='test', type='A', answer='10.0.0.1')

Documentation

Read more about this project at readthedocs: