godaddypy
godaddypy copied to clipboard
Python GoDaddy API Client
The library is a good idea, but adding a simple tool to add/update records would be a great one: that would avoid the need to write yet another script for...
Hi , I am unable to add MX records with priority using 'godaddypy'. Can you please help me on this.
How to retreve the domains in Reseller account . How to get Xshoper id
### Patch 1 (Fix delete records): delete_record() threw errors and used to work by replacing all records. This patch sends a proper DELETE request instead. `record_type` has been kept as...
Thanks for your work on this - I'm hoping to do some things that godaddy tech support can't help me with. Following your sample code with my apikey/secret raised an...
Hi, I've been trying to delete MX records using this code line: client.delete_records(domain, name='@', record_type='MX') The long error message ends wtih: godaddypy.client.BadResponse: Response Data: {'code': 'INVALID_RECORDS', 'fields': [{'code': 'INVALID_RECORDS', 'message':...
in python 3 unicode check was giving error
Currently, the unit tests only get run against multiple versions of python through travis CI. It would be nice to have a local configuration (something like tox) that would run...
In function `update_ip` of `client.py`, the following check does not work for python 3: ``` if ( subdomains is None or (isinstance(subdomains, (unicode, str)) and r_name == subdomains) or r_name...