Metadata-Version: 1.1
Name: infoblox
Version: 1.1.1
Summary: Interface and CLI application for Infoblox NIOS
Home-page: https://github.com/gmr/infoblox
Author: Gavin M. Roy
Author-email: gavinmroy@gmail.com
License: Copyright (c) 2013 Gavin M. Roy
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 * Neither the name of the rmqid library nor the names of its
   contributors may be used to endorse or promote products derived from this
   software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description: infoblox
        ========
        An unofficial python library for interfacing with Infoblox NIOS. This library is not affiliated with _`Infoblox, Inc. <http://www.infoblox.com>` in any way.
        
        |PyPI version| |Downloads| |Build Status|
        
        Documentation
        -------------
        http://infoblox.readthedocs.org
        
        Requirements
        ------------
        - Python 2.6, 2.7, 3.2, 3.3
        - _`argparse <http://pypi.python.org/pypi/argparse>` (Python 2.6 only)
        - _`requests <http://docs.python-requests.org/en/latest/>`
        
        CLI Usage
        ---------
        .. code:: bash
        
            usage: infoblox-host [-h] [--version] [--debug] [-u USERNAME] [-p PASSWORD]
                      <Infoblox Address> {add,remove} <FQDN> [IPv4 Address] [COMMENT]
        
            Add or remove a host from the Infoblox appliance
        
            positional arguments:
              <Infoblox Address>    The Infoblox hostname
              {add,remove}          Specify if you are adding or removing a host
              <FQDN>                The FQDN for the host
              [IPv4 Address]        The IPv4 address for the host
              [COMMENT]             A comment set on the host when adding.
        
            optional arguments:
              -h, --help            show this help message and exit
              --version             show program's version number and exit
              --debug               Enable debug output
              -u USERNAME, --username USERNAME
                                    The username to perform the work as. Default: admin
              -p PASSWORD, --password PASSWORD
                                    The password to authenticate with. Default: infoblox
        
        Library Usage
        -------------
        .. code:: python
        
            import infoblox
        
            session = infoblox.Session('127.0.0.1', 'admin', 'infoblox')
            host = infoblox.Host(session)
            host.name = 'foo.bar.net'
            host.add_ipv4addr('10.0.0.1')
            if host.save():
                print('Host saved')
        
        
        .. |PyPI version| image:: https://badge.fury.io/py/infoblox.png
           :target: http://badge.fury.io/py/infoblox
        .. |Downloads| image:: https://pypip.in/d/infoblox/badge.png
           :target: https://crate.io/packages/infoblox
        .. |Build Status| image:: https://travis-ci.org/gmr/infoblox.png?branch=master
           :target: https://travis-ci.org/gmr/infoblox
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Communications
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: Name Service (DNS)
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
