summaryrefslogtreecommitdiff
path: root/pysnmp/hlapi/asyncio
Commit message (Collapse)AuthorAgeFilesLines
* Add `hlapi.v1arch` API (#186)Ilya Etingof2018-08-124-812/+0
| | | | | | | | | | | | | | | | | | | | * 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
* Fix typo in docstringIlya Etingof2018-07-052-5/+5
|
* copyright notice extendedv4.4.4Ilya Etingof2018-01-034-4/+4
|
* migrated references from SourceForge (#110)Ilya Etingof2017-11-174-4/+4
|
* Improve documentation of varBindTable returned by bulkCmd() (#91)Eugene M. Kim2017-10-121-6/+24
| | | | | | | * Clarify varBindTable returned by bulkCmd() in docs * Fix bulkCmd() examples * Abbreviate endOfMibView * Fix fixed-width markup of Get{BulkRequest,Response}-PDU
* Catch and pass exceptions to asyncio futures (#82)Eugene M. Kim2017-10-052-17/+49
| | | | | | | Previously an exceptions raised by vbProcessor.unmakeVarBinds() fell through, and asyncio base event loop caught and reported it on stderr, while the original cmdgen's future went unfinished, causing the call to hang forever. Match the synchronous version's behavior, which is to raise the exception for the caller of the cmdgen to catch.
* typo in exampleIlya Etingof2017-02-021-1/+1
|
* email changed, copyright extended to the year 2017Ilya Etingof2017-01-124-4/+4
|
* pep8 reformattedIlya Etingof2016-04-024-5/+32
|
* copyright updatedelie2015-12-293-3/+3
|
* copyright notice added to source codeelie2015-11-203-23/+16
|
* linted for bad-whitespace and some other issueselie2015-10-173-47/+20
|
* linted the bad-continuation issue as well as some otherselie2015-10-171-1/+1
|
* linted for trailing whitespaceselie2015-10-173-53/+53
|
* fix to referencing exceptionelie2015-10-161-2/+3
|
* * Asyncore and asyncio-based APIs reworked to become functions.elie2015-09-274-0/+768
* Asyncio and Twisted API moved entirely into high-level domain to be aligned with other high-level APIs. This WILL BREAK backward compatibility for those apps that use Twisted API.