gitextract_1dgs2gwy/ ├── .bandit.yml ├── .flake8.ini ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.md ├── THANKS.txt ├── TODO.txt ├── devel-requirements.txt ├── docs/ │ ├── Makefile │ ├── README.txt │ └── source/ │ ├── .static/ │ │ └── css/ │ │ └── rtdimproved.css │ ├── changelog.rst │ ├── conf.py │ ├── contents.rst │ ├── documentation.rst │ ├── download.rst │ ├── examples/ │ │ ├── always-borrow-precompiled-pysnmp-files.rst │ │ ├── borrow-precompiled-pysnmp-files-on-failure.rst │ │ ├── compile-smistar-mibs-into-pysnmp-files-if-needed.rst │ │ ├── compile-smiv2-mibs-from-text-into-pysnmp-code.rst │ │ ├── download-and-compile-smistar-mibs-into-json.rst │ │ └── download-and-compile-smistar-mibs-into-pysnmp-files.rst │ ├── library-reference.rst │ ├── license.rst │ ├── mibcopy.rst │ ├── mibdump.rst │ └── pysmi/ │ ├── borrower/ │ │ ├── anyfile/ │ │ │ └── anyfileborrower.rst │ │ └── pyfile/ │ │ └── pyfileborrower.rst │ ├── codegen/ │ │ ├── jsondoc/ │ │ │ └── jsoncodegen.rst │ │ ├── null/ │ │ │ └── nullcodegen.rst │ │ └── pysnmp/ │ │ └── pysnmpcodegen.rst │ ├── compiler/ │ │ ├── mibcompiler.rst │ │ └── mibstatus.rst │ ├── parser/ │ │ └── smi/ │ │ ├── dialect.rst │ │ └── parserfactory.rst │ ├── reader/ │ │ ├── callback/ │ │ │ └── callbackreader.rst │ │ ├── ftpclient/ │ │ │ └── ftpreader.rst │ │ ├── httpclient/ │ │ │ └── httpreader.rst │ │ ├── localfile/ │ │ │ └── filereader.rst │ │ └── zipreader/ │ │ └── zipreader.rst │ ├── searcher/ │ │ ├── pyfile/ │ │ │ └── pyfilesearcher.rst │ │ ├── pypackage/ │ │ │ └── pypackagesearcher.rst │ │ └── stub/ │ │ └── stubsearcher.rst │ └── writer/ │ ├── callback/ │ │ └── callbackwriter.rst │ ├── localfile/ │ │ └── filewriter.rst │ └── pyfile/ │ └── pyfilewriter.rst ├── examples/ │ ├── always-borrow-precompiled-pysnmp-files.py │ ├── borrow-precompiled-pysnmp-files-on-failure.py │ ├── compile-smistar-mibs-into-pysnmp-files-if-needed.py │ ├── compile-smiv2-mibs-from-text-into-pysnmp-code.py │ ├── download-and-compile-smistar-mibs-into-json.py │ └── download-and-compile-smistar-mibs-into-pysnmp-files.py ├── pysmi/ │ ├── __init__.py │ ├── borrower/ │ │ ├── __init__.py │ │ ├── anyfile.py │ │ ├── base.py │ │ └── pyfile.py │ ├── codegen/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── intermediate.py │ │ ├── jfilters.py │ │ ├── jsondoc.py │ │ ├── null.py │ │ ├── pysnmp.py │ │ ├── symtable.py │ │ └── templates/ │ │ ├── jsondoc/ │ │ │ └── base.j2 │ │ └── pysnmp/ │ │ ├── base.j2 │ │ ├── managed-objects-instances.j2 │ │ ├── mib-definitions.j2 │ │ └── mib-instrumentation/ │ │ ├── managed-objects-instances.j2 │ │ └── managed-objects.j2 │ ├── compat.py │ ├── compiler.py │ ├── debug.py │ ├── error.py │ ├── lexer/ │ │ ├── __init__.py │ │ ├── base.py │ │ └── smi.py │ ├── mibinfo.py │ ├── parser/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dialect.py │ │ ├── null.py │ │ ├── smi.py │ │ ├── smiv1.py │ │ ├── smiv1compat.py │ │ └── smiv2.py │ ├── reader/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── callback.py │ │ ├── ftpclient.py │ │ ├── httpclient.py │ │ ├── localfile.py │ │ ├── url.py │ │ └── zipreader.py │ ├── searcher/ │ │ ├── __init__.py │ │ ├── anyfile.py │ │ ├── base.py │ │ ├── pyfile.py │ │ ├── pypackage.py │ │ └── stub.py │ └── writer/ │ ├── __init__.py │ ├── base.py │ ├── callback.py │ ├── localfile.py │ └── pyfile.py ├── requirements.txt ├── scripts/ │ ├── mibcopy.py │ └── mibdump.py ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests/ │ ├── __init__.py │ ├── __main__.py │ ├── test_agentcapabilities_smiv2_pysnmp.py │ ├── test_imports_smiv2_pysnmp.py │ ├── test_modulecompliance_smiv2_pysnmp.py │ ├── test_moduleidentity_smiv2_pysnmp.py │ ├── test_notificationgroup_smiv2_pysnmp.py │ ├── test_notificationtype_smiv2_pysnmp.py │ ├── test_objectgroup_smiv2_pysnmp.py │ ├── test_objectidentity_smiv2_pysnmp.py │ ├── test_objecttype_smiv2_pysnmp.py │ ├── test_smiv1_smiv2_pysnmp.py │ ├── test_traptype_smiv2_pysnmp.py │ ├── test_typedeclaration_smiv1_pysnmp.py │ ├── test_typedeclaration_smiv2_pysnmp.py │ ├── test_valuedeclaration_smiv2_pysnmp.py │ └── test_zipreader.py └── tox.ini