summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-03-07 23:20:34 +0100
committerIlya Etingof <etingof@gmail.com>2016-03-07 23:20:34 +0100
commit2b85c6b1529372b88a720f6d355bd616fb7c65d7 (patch)
tree07208c7d28deac572a9d1cc0cd38f2fff6f2b8e7 /README.md
parente5ed7d3176e307b3fa5a3dfb802ae403d2f69809 (diff)
downloadpysnmp-git-2b85c6b1529372b88a720f6d355bd616fb7c65d7.tar.gz
mention license
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9da49028..6186deec 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ SNMP library for Python
-----------------------
This is a pure-Python, open source and free implementation of v1/v2c/v3
-SNMP engine.
+SNMP engine distributed under 2-clause [BSD license](http://pysnmp.sourceforge.net/license.html).
The PySNMP project was initially sponsored by a [PSF](http://www.python.org/psf/) grant.
Thank you!
@@ -74,16 +74,17 @@ high-level and easy to use API is called *hlapi* and can be used like this:
ContextData(),
ObjectType(ObjectIdentity('SNMPv2-MIB', 'sysDescr', 0))
)
+
errorIndication, errorStatus, errorIndex, varBinds = next(iterator)
- if errorIndication: # SNMP engine errors
+ if errorIndication: # SNMP engine errors
print errorIndication
else:
- if errorStatus: # SNMP agent errors
+ if errorStatus: # SNMP agent errors
print(%s at %s' % (errorStatus.prettyPrint(),
errorIndex and varBinds[int(errorIndex)-1] or '?'))
else:
- for varBind in varBinds:
+ for varBind in varBinds: # SNMP response contents
print('='.join([x.prettyPrint() for x in varBind]))
@@ -123,5 +124,5 @@ I'm interested in bug reports and fixes, suggestions and improvements.
I'd be happy knowning whenever you used the PySNMP software for whatever
purpose. Please, send me a note then. Thanks!
-=-=-=
-mailto: ilya@glas.net
+Copyright (c) 2005-2016, [Ilya Etingof](http://ilya@glas.net). All rights reserved.
+