Metadata-Version: 1.1
Name: gundala
Version: 0.2.1
Summary: Gundala Python EPP client
Home-page: https://github.com/BiznetGIO
Author: BiznetGio
Author-email: support@biznetgio.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # GUNDALA PROJECT
        
        Gundala is an [EPP](https://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol) 
        (Extensible Provisioning Protocol) Client. It's provide a way to communicate 
        between domain name registries and domain name registrars.
        
        ## Installing
        
        At the time gundala only support Python3 or newer.
        
        ``` bash
        pip3 install -U gundala
        ```
        
        If you want to stay on bleeding edge version. Grab the code then
        install it manually, using :
        
        ``` bash
        pip3 install -r requirements.txt
        pip3 install -e .
        ```
        
        ## Configuration Example
        
        Duplicate file config.py.example to config.py
        
        ``` bash
        cp example/config.py.example example/config.py
        ```
        
        ```python
        
        config = {
            'host': 'someprovider.com',
            'port': 700,
            'user': 'username',
            'pass': 'password',
            'cert': 'somecertificate.pem'
        }
        
        contacts = {
            'registrant': 'idregistrant',
            'admin': 'idadmin',
            'tech': 'idtech',
        }
        
        namespaces = [
            'ns1.someprovider.com',
            'ns2.someprovider.com'
        ]
        
        ```
        
        ## Running
        
        ``` bash
        python3 example/file_example.py
        ```
        
Keywords: epp
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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
