pointhq.com API client.
This module provides easy access to point zone & record management. For information about the services offered on Point see the website This module is based on a fork of Richard Gray's pointhq module which is based on Mike Yumatov's pointhq module with the following additional modifications:
- Added support for Python3.x
- Retrieve zones by groups
- Record type validation
To access your Point account, you'll need to define your username & apitoken. The username is your email address and the apitoken is the API token which, can be found in My Account tab.
Install pointdns
with pip:
$ pip install pointdns
or directly from GitHub
$ pip install git+https://github.com/cognetoapps/python-pointdns.git
It will also install requests
library.
- Create new
pointdns.Point
object:
from pointdns import Point
point = Point(username='john@example.com', apitoken='secret-key')
- Play with zones::
zones = point.zones.retrieve()
new_zone = point.zones.create(name='example.com')
zone = point.zones(1).retrieve()
point.zones(1).update(group='Clients')
zones_group_clients = point.zones.retrieve(group='Clients')
point.zones(1).delete()
- Play with zone records::
zone_records = point.zones(1).records.retrieve()
new_record = point.zones(1).records.create(
name='example.com.', data='123.45.67.89', record_type='A')
zone_record = point.zones(1).records(1).retrieve
point.zones(1).records(1).update(data='234.56.78.90')
point.zones(1).records(1).delete()
Feel free to fork, send pull requests or report bugs and issues on github.