Skip to content

Quick Start Guide

Installation

In most cases installation via pip is the simplest and best way to install scrapli-community.

1
pip install scrapli-community

A Simple Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from scrapli import Scrapli

my_device = {
    "host": "172.18.0.11",
    "auth_username": "vrnetlab",
    "auth_password": "VR-netlab9",
    "auth_strict_key": False,
    "platform": "ruckus_fastiron"
}

conn = Scrapli(**my_device)
conn.open()