summaryrefslogtreecommitdiff
path: root/examples/hlapi/v3arch
Commit message (Collapse)AuthorAgeFilesLines
* Add examples on master&localized keys useIlya Etingof2019-08-132-0/+104
|
* Fix SNMP version in Twisted example (#246)Jorge Cabrera2019-03-051-1/+1
|
* Fix failing example scriptsIlya Etingof2019-02-252-3/+4
|
* Fix PDU consistency check in notification originatorIlya Etingof2019-02-251-1/+1
|
* Fix asyncio v3arch notification exampleIlya Etingof2019-02-181-16/+6
|
* Reformat example scripts for easier reading (#241)Ilya Etingof2019-02-1264-485/+772
|
* Uppercase global constants (#238)Ilya Etingof2019-02-104-21/+21
| | | | | | | | | This is a massive patch essentially upper-casing global/class attributes that mean to be constants. Some previously exposed constants have been preserved for compatibility reasons (notably, in `hlapi`), though the rest might break user code relying on pysnmp 4.
* Drop Python < 2.6 kwargs expansion compatibility trickIlya Etingof2019-02-093-3/+3
|
* Add `hlapi.v1arch` API (#186)Ilya Etingof2018-08-1265-0/+3291
* Add `hlapi.v1arch` API Introduce new sub-package `pysnmp.hlapi.v1arch` which wraps otherwise very detailed packet-level SNMP messaging into a handful of convenience functions. As a side effect, the `pysnmp.hlapi.*` sub-packages moved under `pysnmp.hlapi.v3arch` though `pysnmp.hlapi` still exposes `pysnmp.hlappi.v3arch.*` symbols to retain some degree of backward compatibility. The signature of the hlapi `.sendNotification()` call has changed to accept `*varBinds` instead of a sequence of `varBinds`. The rationale is to unify this method call with similar methods of CommandGenerator. * Add v1arch docs and reshuffle hlapi docs