Metadata-Version: 2.1
Name: pyGoDaddyUpdater
Version: 1.1
Summary: DDNS service for dynamically update GoDaddy A Records
Home-page: https://gitlab.javinator9889.com/Javinator9889/pyGoDaddyAUpdater
Author: Javinator9889
Author-email: javialonso007@hotmail.es
License: GPL-3.0
Download-URL: https://gitlab.javinator9889.com/Javinator9889/pyGoDaddyAUpdater/repository/master/archive.zip
Description: # GoDaddy 'A' Record Updater
        
        *DDNS Service for updating dynamically your GoDaddy 'A' Records when your public IP changes*
        
        ## Index
        
         1. [Purpose](#purpose)
         2. [Installation](#installation)
         3. [Usage](#usage)
         4. [License](#license)
         
        ------------
        
        ### Purpose
        
        If you are a *GoDaddy* user (you have your own domain, CNAMES, etc.) maybe you have noticed that there is no **Dynamic 
        DNS** (*DDNS*) update service, so you have to manually put your **public IP** at your domain 'A' Record whenever it 
        changes.
        
        Therefore, other possibilities exists such as *having a No-IP domain* and make all your CNAMEs point to that DNS, 
        enabling redirection from the source domain (e.g.: example.com) to an *www* domain (e.g.: www.example.com).
        
        With this script/service, you can configure a **daemon** which will be running in the background, periodically checking
        for your public IP for seeing if it has changed. If you want also, you can configure it to run only once.
        
        ### Installation
        
        **NOTICE: THIS SCRIPT IS ONLY RUNNING ON SYSTEMS WITH PYTHON 3 AND ABOVE**
        
        There are two possibilities for installing this script:
        
        #### 1. Using *setup.py*
           
           Start by *cloning* this repository. For that, you will need to have 
           [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) installed. Then, run on Git Bash:
           ```text
           git clone https://gitlab.javinator9889.com/Javinator9889/pyGoDaddyAUpdater.git
           ```
           
           There is another possibility so you can *directly download* a compressed file with all the necessary data. Just unzip
           it and continue with the steps below.
           
           For installing, you will need **administrator** permissions, as the script is creating a new command so you can run
           it from everywhere:
           ```text
           cd pyGoDaddyAUpdater
           sudo python3 setup.py install
           ```
           
        #### 2. Using *pip* (easier and faster)
           
           I assume you have [**pip** installed](https://www.makeuseof.com/tag/install-pip-for-python/), so for using this package:
           ```text
           sudo pip install pyGoDaddyUpdater
           # If you have any error saying that at least Python 3 is needed
           # try with the following one:
           sudo pip3 install pyGoDaddyUpdater
           ```
           
        ### Usage
        
        First of all, you need to create a [**GoDaddy Developer Account**](https://developer.godaddy.com/getstarted), 
        and obtaining your *key* and *secret*. The pair you need to create are the **Production** ones, which are hosted at
        https://api.godaddy.com (https://api.ote-godaddy.com is not supported).
        
        You can obtain the necessary data here: https://developer.godaddy.com/keys (use the name you want).
        
        ---------
        
        Once you have installed the script, the execution is simple (from your command line):
        ```text
        $ godaddy_ddns [OPTIONS]
        ```
        
        The available options are:
        
         + `--domain DOMAIN`: specifies **which domain** will be updated. That is, if your site is hosted at www.example.com, then your
         domain is *example.com*.
         
         + `--name NAME`: here the 'A' Record name must be included. In most cases, this name usually is `@` (the name pointing to 
         the host).
         
         + `--time TIME`: change the *update check interval* time (in minutes). By default, it is 5 minutes.
         
         + `--key KEY`: the *GoDaddy Developer key* you obtained as explained before.
         
         + `--secret SECRET`: the *GoDaddy Developer secret* you obtained as explained before.
         
         + `--no_daemonize`: include this option for running this script **only once**.
         
         + `--pid PID FILE`: define your own PID file, in which the running daemon PID will be saved. By default, it is: 
         `/var/run/pygoddady/app.pid`.
         
         + `--log LOG FILE`: define your own LOG file, in which the running daemon logs will be saved. By default, it is:
         `/var/log/pygoddady.log`.
         
         + `--preferences PREFERENCES FILE`: if you are planning to dynamically update **more than one** domain at the same 
         time, you can define a custom preferences file (if not, each time you run the daemon it will be overwritten).
         
         + `--user USERNAME`: if for any reason you need to run this script as another user (for example, because of the 
         permissions for saving logs and the PID file), include here your username (you must run the script as admin).
         
         + `--group GROUP NAME`: if for any reason you need to run this script as another group (for example, because of the 
         permissions for saving logs and the PID file), include here your username (you must run the script as admin).
         
        The first time you execute this script (or for defining a new preferences file), you must include (only the first time):
         + Domain.
         + Name.
         + Key.
         + Secret.
        
        Then, each time you execute the script with no *extra arguments* or *providing the preferences file* you will not need
        to include the options mentioned above.
        
        ### License
        
        ```text
                                     pyGoDaddyAUpdater
                          Copyright (C) 2019 - Javinator9889
        
            This program is free software: you can redistribute it and/or modify
            it under the terms of the GNU General Public License as published by
              the Free Software Foundation, either version 3 of the License, or
                           (at your option) any later version.
        
               This program is distributed in the hope that it will be useful,
               but WITHOUT ANY WARRANTY; without even the implied warranty of
                MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
                       GNU General Public License for more details.
        
             You should have received a copy of the GNU General Public License
            along with this program. If not, see <http://www.gnu.org/licenses/>.
        ```
         
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: POSIX :: Linux
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
