atlas news
    
Python Coding Club : youtube
18  décembre     14h41
Nokia Containerlab Deploy Spine , Leaf and Linux host on Window Machine
   This is about deploying Nokia Fabric SR Linux nodes Spine and Leaf on Window machine. Linux host as customer end device Commands used in Video sudo snap install docker sudo docker pull ghcr.io srl labs clab sudo docker pull ghcr.io nokia srlinux mkdir clab clos cd clab clos cp a ...
19  novembre     11h31
Python Debug All about PDB
   Video is about debugging python script using pdb.
31  août     04h15
Python Debug Using PDB Breakpoint
   Video is about debugging python script using pdb. Explaining how breakpoint ease debug to specific line number or specific function rather than scrol from top to bottom
23  juillet     06h36
Python Debug PDB Until
   Video is about debugging python script using pdb. Explaining how until is useful when dealing with for loop
13  juin     05h51
Python List to Dictionary Setdefault
   Sometimes we need to convert List to Dictionary. Things get messy when there is duplicate keys. Here is where setdefault function will be helpful. Try hands on to understand in better way.
08  mai     08h48
Python Debug PDB List
   Video is about debugging python script using pdb. Explaining how to list script contents using pdb prompt
05  avril     03h02
Python Debug PDB print variable
   Video is about debugging python script using pdb. Explaining how to print variable from script on screen using PDB prompt
05  mars     03h30
Python Debug PDB Step and Next Difference
   Video is about debugging python script using pdb. Explaining difference between step and next. Stay tuned for more videos on python debug
01  février     11h49
Python Script Debug using pdb hands-on
   Video is about debugging python script using pdb. Explained using program with error and correcting it while using pdb. Make sure to practice in parallel for better understanding.
03  janvier     02h42
TextFSM Cisco VRF Data
   Let’s suppose you want to extract parameters like RD,RT,VRF etc from Cisco router configuration. One way is to use regular expression but this is not easy way. Another option is to use TextFSM module for easy extract of parameters from parsed configuration Install Following module textfsm pprint ...
04  décembre     12h24
Python Basics
   It is all about python basics hands on. Less theory and more hands on. Make sure to practice in parallel for better understanding.
02  novembre     04h45
Python Slice Reverse string
   Video is all about playing with string using list slice
03  octobre     03h22
TextFSM Cisco Show ip interface Brief
   Good stuff to extract require parameters easily from output of ’show ip interface brief’ command using TextFSM module. Same can be done using regular expression but TextFSM is easiest way. Stay tuned for more such videos on TextFSM
05  septembre     03h47
Python name main Hands-on
   Using main is always confusing in python when it comes to practical use. Check practical use in this video for better understanding
08  août     02h40
Python Json Json loads Json dumps Dictionary
   There are many incidents where we need to convert string into python dictionary. json module is right one to convert those json string to dictionary for easy get operation. Similarly reverse can be done using same json module.