Python wrapper around the subreg.cz SOAP API
pip install python-subreg
First import module and instance class
>>> from subreg import Api
>>> subreg = Api('username', 'password')
>>> domain_info = subreg.info_domain('example.com')
>>> print domain_info
>>> records = subreg.get_dns_zone('example.com')
>>> record = dict(name='', type='TXT', content='content')
>>> record_id = subreg.add_dns_record('example.com', record)
>>> print record_id
>>> subreg.set_google_mx_records('example.com')
- (python-subreg documentation)[http://python-subreg.readthedocs.org/en/latest/]
- (Subreg API documentation)[https://soap.subreg.cz/manual/]