Skip to content

micruzz82/dcnmtoolkit

 
 

Repository files navigation

Description

The DCNM Toolkit is a set of python libraries that allow basic configuration of Cisco Data Center Network Manage. It is intended to allow users to quickly begin using the REST API and accelerate the learning curve necessary to begin using the APIC.

Thanks kecorbin@cisco.com for the initial work on this toolkit.

Installation

Environment

Required

Downloading

Option A:

If you have git installed, clone the repository

git clone https://github.com/luflores/dcnmtoolkit.git

Installing

After downloading, install using setuptools.

cd dcnmtoolkit
python setup.py install

If you plan on modifying the actual toolkit files, you should install the developer environment that will link the package installation to your development directory.

cd dcnmtoolkit
python setup.py develop

Alternatively you can install directly via pip

pip install dcnmtoolkit

ack

Docker

docker build --rm -t alpine-dcnmtoolkit .
docker run -t -i -v ${PWD}/app:/app  --hostname dcnmtoolkit --name dcnmtoolkit -d alpine-dcnmtoolkit

##Clean UP docker kill $(docker ps -q) docker rm $(docker ps -a -q) docker rmi $(docker images -q)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%