Victoria Lovictoria.hashnode.net·Sep 3, 2021FeaturedGitHub Actions 101: Creating Your First WorkflowAs technology constantly evolves, developers are seeking new ways to have more efficient development workflows. GitHub Actions allows developers to automate, customize, and execute their software development workflows from the repository itself. Henc...135 likes·9.0K readsGitHub Actions 101GitHub
Victoria Lovictoria.hashnode.net·Sep 10, 2021GitHub Actions 101: Deep Dive into Workflow AttributesHello and welcome to Part 2 of the GitHub Actions series. A series where we will walk through everything you need to know about GitHub Actions, from the basics to creating your own customized workflow. If you have missed Part 1, please read it here b...107 likes·2.7K readsGitHub Actions 101GitHub
Victoria Lovictoria.hashnode.net·Sep 24, 2021FeaturedGitHub Actions 101: Develop a CI/CD WorkflowHello and welcome to Part 4 of the GitHub Actions series. A series where we will walk through everything you need to know about GitHub Actions, from the basics to creating your own customized workflow. In this previous part, we learned about secrets,...103 likes·3.3K readsGitHub Actions 101GitHub
Rohan Anandrohan-anand.hashnode.net·Apr 24, 2023Using 'Pylint' for Python Code Analysis in GitHub ActionsAs a Python developer, it's important to ensure the quality and maintainability of your code. One way to do this is by using Pylint, a popular code analysis tool for Python. In this blog post, we'll go over how to use Pylint in GitHub Actions to auto...GitHub
Vrishni Shree V Bvrishni.hashnode.net·Apr 19, 2023DevOps, Day - 15Reading JSON and YAML in Python Basic differences between YAML and JSON As a DevOps Engineer, you should be able to parse files, be it txt, json, yaml, etc. As a DevOps Engineer, it's important to be able to read and work with different types of f...45 readsDevops
vrushabh mahadikvrushabhmahadik.hashnode.net·Apr 19, 2023Day 15 Task :Python Libraries for DevOpsReading 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 libraries one should use in Python for DevOps. Python has numerous libraries like os, sys, json, yaml etc tha...Devops
Satyam Singhsatyamblog.hashnode.net·Apr 18, 2023YAML in DevOps: Harnessing the Power of Human-Readable Configuration FilesYAML is a human-readable data serialization language that has become increasingly popular in the DevOps world. It is used to write configuration files, which define how applications should be deployed and managed in production environments. In this b...Developer
Shivani Sonisheevanisoni06.hashnode.net·Apr 17, 2023YAML Simple GuideIntroduction YAML stands for YAML Ain't Markup Language. It is a data serialization language just like JSON, and XML. Serialization language means applications written with different technologies, languages, etc. having different data structures that...Devops
Sanyam Sainiitssanyam.hashnode.net·Apr 17, 2023Understanding YAML and JSONIntroduction In today's world of data-driven applications, efficient and reliable data serialization and manipulation are critical skills for any developer. Two of the most popular data serialization formats are YAML and JSON. While they have many si...BlogsWithCC
Shivraj Salunkheshivrajofficial.hashnode.net·Apr 16, 2023Python Libraries for DevOps-> Reading JSON in Python To read JSON files in Python, you can use the json module. import json # Open the JSON file with open('data.json') as f: data = json.load(f) # Access data in the JSON file print(data['name']) In this example, we open ...Devops
Muppala Hinduhindu.hashnode.net·Apr 15, 2023Project 1: YAMLJSONConverterHello readers👋. This is Hindu. I just recently completed the YAMLJSONConverter project. The journey of me from starting to ending the project didn't ask chatgpt 😇 and used documentation and did everything from scratch. Then, let's start. First I cr...golang
Pratik Shendepratikshende.hashnode.net·Apr 13, 2023Python Libraries for DevOpsReading JSON and YAML in Python Parsing various types of files is an essential skill for a DevOps Engineer. Parsing files is often a key part of automating tasks such as backups, many DevOps tools rely on configuration files in different formats such...Python
Hemanth Narayanaswamyhemanth-hawk.hashnode.net·Apr 12, 2023YAML - Basic to AdvanceIn this article, we will learn everything about YAML. As we all know, in many tools YAML is used for configuration, so we should know all about YAML. We will start with a YAML introduction and then learn about all YAML concepts. Why is YAML? YAML is...52 readsDevops