snmp_orm – PySNMP Abstraction

CI status: cistatus

Source code is hosted on Github

Introduction

snmp_orm is a Python-based tool providing a simple interface to work SNMP agents. Here is a very simplistic example that allows to display the system information of a given host:

from snmp_orm import get_device
d = get_device("127.0.0.1")
print dict(d.system)

Reference Docs

Reference Docs

Thanks

A number of people have contributed to snmp_orm by reporting problems, suggesting improvements or submitting changes. Some of these people are:

Indices and tables

Project Versions

Table Of Contents

Next topic

Getting Started

This Page