scrapli / scrapli_community

scrapli community platforms
https://scrapli.github.io/scrapli_community/
MIT License
86 stars 26 forks source link

Supported Versions PyPI version Weekly Build Code Style License: MIT

scrapli_community


Documentation: https://scrapli.github.io/scrapli_community

Source Code: https://github.com/scrapli/scrapli_community


This is the scrapli_community repository for scrapli.

If you would like to use scrapli, but the platform(s) that you work with are not supported in the "core" scrapli platforms, you have come to the right place! This library is intended to be a place for scrapli users to add additional platform support to scrapli.

Please see the main scrapli repo for much more information about the main project.

Key Features:

Requirements

MacOS or *nix1, Python 3.7+

1 Although many parts of scrapli do run on Windows, Windows is not officially supported

Installation

pip install scrapli-community

See the docs for other installation methods/details.

A simple Example

from scrapli import Scrapli

my_device = {
    "host": "172.18.0.11",
    "auth_username": "scrapli",
    "auth_password": "scrapli",
    "auth_strict_key": False,
    "platform": "ruckus_fastiron"
}

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