Metadata-Version: 1.1
Name: acidipy
Version: 0.10.10
Summary: Cisco ACI Developing Interface for PYthon
Home-page: https://github.com/HyechurnJang/acidipy
Author: Hyechurn Jang
Author-email: hyjang@cisco.com
License: Apache 2.0
Description: acidipy
        
        Cisco ACI Python API : ACI Developing Interface for PYthon
        
        1. Install
        
        	1.1 From GIT
        		$ python setup.py build
        		$ python setup.py install
        
        	1.2 From PIP
        		$ pip install acidipy
        
        2. Example
        
        	import acidipy
        	
        	controller = acidipy.Controller('xxx.xxx.xxx.xxx', 'admin', 'password') # Get controller connection
        	
        	tenant = controller.Tenant.create(name='example-tenant') # Create tenant
        	bd = tenant.BridgeDomain.create(name='example-bd') # Create bridge domain
        	ap = tenant.AppProfile.create(name='example-ap') # Create application profile
        	epg = ap.EPG.create(name='example-epg') # Create endpoint group
        	
        	epg.relate(bd) # Relate endpoint group to bridge domain
        	
        	print controller.Tenant.list() # Retrive list of tenant
        	print tenant.AppProfile('example-ap').EPG.list() # Retrive list of endpoint group about tenant created
        	print ap.EPG('example-epg') # Retrive endpoing group by name
        	
        	print ap.parent() # Retrive example-ap's parent
        	print ap.children() # Retrive example-ap's children
        	print ap.detail() # Retrive example-ap's whole attributes
        	
        	epg.delete() # Delete endpoint group
        	ap.delete() # Delete application profile
        	bd.delete() # Delete bridge domain
        	tenant.delete() # Delete tenant
        	
        	controller.close() # Close controller connection
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
