BehinDevbehindev.hashnode.dev·Sep 24, 2024How I Automated My Job And Did Nothing For A YearJanuary 2022 At the beginning of the year January 2022, I moved to another company as a Systems Analyst in mid-sized Marketing Firm. My job was quite simple, responsible for data transfer, data backup, maintaining records and checking for all backup ...Discuss·10 likesautomation
Vero Chan IIlaksamana4d.hashnode.dev·Sep 15, 2024Scraping data from a websiteTo help you get started with web scraping in Python, I’ll guide you through creating a simple script that scrapes data from a website using the requests and BeautifulSoup libraries. Here’s a basic Python script for scraping a website: Steps: Install...DiscussPython script
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 25, 2024Enhancing DevOps Data Management with Sets in PythonIntroduction In the dynamic landscape of DevOps automation, efficient data management is essential for orchestrating deployments, monitoring infrastructure, and analyzing system metrics. Python's versatile sets offer a powerful solution for DevOps en...Discuss·10 likesPython ScriptingPython 3
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 24, 2024Interact with GitHub Pull Requests using PythonIntroduction In today's software development landscape, collaboration is key, and pull requests serve as the backbone of collaborative coding. GitHub, being one of the most popular platforms for hosting Git repositories, offers a rich API that enable...Discuss·11 likes·50 readsPython ScriptingPython
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 23, 2024Enhancing DevOps Automation with Lists of Dictionaries: Streamlined Data ManagementIntroduction In the realm of DevOps automation, effective management of data is crucial for orchestrating deployments, configuring infrastructure, and monitoring resources. Python's versatile data structures, including lists of dictionaries, provide ...Discuss·10 likesPython ScriptingPython
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 22, 2024The Power of Dictionaries in DevOps Automation with PythonIntroduction In the realm of DevOps automation, managing configurations, orchestrating deployments, and monitoring infrastructure resources are integral tasks that demand efficient data handling. Python's dictionaries, with their key-value pair stora...Discuss·10 likesPython ScriptingPython
Sachin Yalagudkarsachin1313.hashnode.dev·Aug 21, 2024How to Automate EC2 Backups Using Python: A Complete GuideIn today's cloud-centric world, automating backups is crucial for maintaining data integrity and ensuring business continuity. In this guide, I'll walk you through creating an automated backup solution for your Amazon EC2 instances using Python, AWS ...DiscussEC2 instance
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 21, 2024Real-world DevOps Scenarios: Leveraging Lists and Exception Handling in PythonIntroduction Python, with its simplicity and versatility, is widely used in the DevOps domain for automation, infrastructure management, and deployment orchestration. In this article, we'll explore real-world use cases where lists and exceptional han...Discuss·10 likesPython ScriptingPython
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 20, 2024Break and Continue Statements in PythonIntroduction In the realm of DevOps automation, streamlining workflows and optimizing script execution are paramount for efficient infrastructure management and deployment processes. Break and continue statements in Python offer powerful tools for co...Discuss·10 likesPython ScriptingPython
Saurabh Adhaudevopsvoyager.hashnode.dev·Aug 19, 2024For Loops vs While Loops in PythonIntroduction In Python, both for loops and while loops are essential control structures used for iterating over sequences and performing repetitive tasks. While they serve similar purposes, they have distinct characteristics and are suited for differ...Discuss·10 likesPython ScriptingPython