Python Demo: Simple and Easy
Aug 2, 2024•Channel
AI Analysis
Data from YouTube Data API v3•Updated Just now
Video Overview
Video Details
PublishedAug 2, 2024
Duration6:00
Video IDQSO9lorowQQ
Languageen-US
CategoryScience & Technology
PrivacyPublic
Made for KidsNo
Video TypeRegular Video
Performance Metrics
Views466
Likes18
Comments1
Engagement Rate4.08%
Likes per 100 views3.86
Comments per 1K views2.15
Video Tags
Description
In this video, I've demonstrated how Python programming can assist network engineers with daily tasks in a simple and straightforward manner. This is basic content for beginners, and I'll be sharing more advanced topics in my upcoming videos.
Code used in this video:
from netmiko import ConnectHandler
my_device={"device_type":"arista_eos","host":"10.255.13.21","username":"admin","password":"admin","port":22}
conn = ConnectHandler(**my_device)
result = conn.send_command(command_string="show bgp summary")
print(result)