Metadata-Version: 1.1
Name: ventraip-vip-client
Version: 0.0.1
Summary: Client to connect to and manage DNS entries registered with VentraIP
Home-page: https://github.com/cmbrad/ventraip-vip-client
Author: Christopher Bradley
Author-email: chris.bradley@cy.id.au
License: MIT
Description: # ventraip-vip-client
        This is a small Python 3.6 compatible library which 
        
        ## Installation
        Install the latest production release:
        
        ```bash
        pip install ventraip-vip-client
        ```
        
        Install the latest development release:
        
        ```bash
        git clone git@github.com:cmbrad/ventraip-vip-client.git
        python setup.py install
        ```
        
        ## Examples
        
        ```python
        from ventraip import VipClient
        vip_client = VipClient()
        vip_client.login(email='your email/username', password='your password')
        
        # Fetch all domains associated with the account
        domains = vip_client.domains()
        for domain in domains:
            # Fetch all records associated with the domain
            dns_records = vip_client.dns_records(domain.internal_id)
        
            # For each record, delete it (DANGEROUS!!!)
            for dns_record in dns_records:
                vip_client.remove_dns_record(domain_id=domain.internal_id, dns_record_id=dns_record.internal_id)
        ```
        
        
        ## TODO:
        * Add unit tests
        * Publish to pypi
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
