File tree 3 files changed +28
-0
lines changed
programming_fundamentals/python_part_3 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 31
31
cd programming_fundamentals/python_part_2
32
32
pip install -r requirements.txt
33
33
python example1.py
34
+ - name : Test Programming Fundamentals Python Part 3 - ncclient
35
+ run : |
36
+ cd programming_fundamentals/python_part_3
37
+ pip install -r requirements.txt
38
+ python api_ncclient_example.py
39
+ - name : Test Programming Fundamentals Python Part 3 - netmiko
40
+ run : |
41
+ cd programming_fundamentals/python_part_3
42
+ pip install -r requirements.txt
43
+ python api_netmiko_example.py
44
+ - name : Test Programming Fundamentals Python Part 3 - pysnmp
45
+ run : |
46
+ cd programming_fundamentals/python_part_3
47
+ pip install -r requirements.txt
48
+ python api_pysnmp_example.py
49
+ - name : Test Programming Fundamentals Python Part 3 - requests
50
+ run : |
51
+ cd programming_fundamentals/python_part_3
52
+ pip install -r requirements.txt
53
+ python api_requests_example.py
54
+ - name : Test Programming Fundamentals Python Part 3 - data_library_exercises
55
+ run : |
56
+ cd programming_fundamentals/python_part_3
57
+ pip install -r requirements.txt
58
+ python data_library_exercises.py
59
+
Original file line number Diff line number Diff line change 34
34
35
35
if errorIndication : # SNMP engine errors
36
36
print (errorIndication )
37
+ print ("Check to be sure you're connected to the VPN for the DevNet Sandbox." )
37
38
else :
38
39
if errorStatus : # SNMP agent errors
39
40
print ('%s at %s' % (errorStatus .prettyPrint (),
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ netmiko>=3.3.2
3
3
pyyaml >= 5.3.1
4
4
requests >= 2.25.1
5
5
xmltodict >= 0.12.0
6
+ pysnmp >= 4.4.12
You can’t perform that action at this time.
0 commit comments