PYPrabhakar Yadavinprabhakar810.hashnode.dev·Mar 29, 2023 · 2 min readPython Libraries for DevOps#90DaysOfDevOps Reading JSON and YAML in Python As a DevOps Engineer, you should be able to parse files, be it txt, json, yaml, etc. You should know what all libraries one should use in Python for DevOps. Python has numerous libraries like os, sys...00
PYPrabhakar Yadavinprabhakar810.hashnode.dev·Mar 28, 2023 · 3 min readPython Data Types and Data Structures for DevOps#90DaysOfDevOps Data Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, dat...00
PYPrabhakar Yadavinprabhakar810.hashnode.dev·Mar 22, 2023 · 2 min readGetting started with Python#90DaysOfDevOps What is Python? Python is Open source, general purpose, high-level, and object-oriented programming language. It was created by Guido van Rossum Python consists of vast libraries and various frameworks like Django, Tensorflow, Flas...00
PYPrabhakar Yadavinprabhakar810.hashnode.dev·Mar 18, 2023 · 5 min readLinux and Github (Cheat sheet)#90DaysOfDevOps Linux Basics commands To check your current working directorypwdlist all the files and directorieslslist hidden files or directoriesls -alist files in sub-directories as wellls -Rlist files and directories with detailed information li...00
PYPrabhakar Yadavinprabhakar810.hashnode.dev·Mar 17, 2023 · 3 min readAdvance Git & GitHub for DevOps Engineers#90DaysOfDevOps Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, bu...00