Get List of Workflows in AWS Account Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:53:51

243 Views

In this article, we will see how a user can get the list of all workflows present in an AWS account.ExampleGet the list of all workflows available in an AWS Glue Data Catalog.Problem Statement: Use boto3 library in Python to get the list of all workflows.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: There are no parameters in this function.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.Step 4: Create an ... Read More

Count Non-Leaf Nodes of a Given Tree in Python

AmitDiwan
Updated on 15-Apr-2021 12:53:32

218 Views

When it is required to find the count of the non leaf nodes in a Tree, a ‘Tree_structure’ class is created, methods to set a root value, and to add other values are defined. Various options are given that the user can select. Based on the user’s choice, the operation is performed on the Tree elements.Below is a demonstration of the same −Example Live Democlass Tree_structure:    def __init__(self, data=None):       self.key = data       self.children = []    def set_root(self, data):       self.key = data    def add_vals(self, node):       ... Read More

Count Number of Leaf Nodes in a Tree using Python

AmitDiwan
Updated on 15-Apr-2021 12:53:11

625 Views

When it is required to count the number of leaf nodes in a Tree, a ‘Tree_structure’ class is created, methods to add root value, and other children values are defined. Various options are given that the user can select. Based on the user’s choice, the operation is performed on the Tree elements.Below is a demonstration of the same −Example Live Democlass Tree_structure:    def __init__(self, data=None):       self.key = data       self.children = []    def set_root_node(self, data):       self.key = data    def add_vals(self, node):       self.children.append(node)    def ... Read More

Get List of Triggers in AWS Account Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:50:22

456 Views

In this article, we will see how a user can get the list of all triggers present in an AWS account.ExampleGet the list of all triggers available in an AWS Glue Data Catalog.Problem Statement: Use boto3 library in Python to get the list of all triggers.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: There are no parameters in this function.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.Step 4: Create an ... Read More

Get List of Schemas in AWS Account Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:50:01

373 Views

In this article, we will see how a user can get the list of all schemas present in an AWS account.ExampleGet the list of all the schemas available in an AWS Glue Data Catalog.Problem Statement: Use boto3 library in Python to get the list of all schemas.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: There are no parameters in this function.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.Step 4: Create ... Read More

Get List of All Registries in an AWS Account Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:49:42

146 Views

In this article, we will see how a user can get the list of all registries present in an AWS account.ExampleGet the list of all registries available in AWS Glue Data Catalog.Problem Statement: Use boto3 library in Python to get the list of all registries.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: There are no parameters in this function.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in the default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.Step 4: Create an ... Read More

Get List of All Crawlers in an AWS Account Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:49:20

477 Views

In this article, we will see how a user can get the list of all crawlers present in an AWS account.ExampleProblem Statement: Use boto3 library in Python to get the list of all crawlers.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: There are no parameters in this function.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in the default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.Step 4: Create an AWS client for glue.Step 5: Now use the list_crawlersStep 6: It ... Read More

Get Workflow Details Using Boto3

Ashish Anand
Updated on 15-Apr-2021 12:49:03

359 Views

In this article, we will see how a user can get the resource metadata of a workflow.ExampleGet the details of a workflow from AWS Glue Data Catalog that is created in your account.Problem Statement: Use boto3 library in Python to get the metadata of a workflow that is created in your account.Approach/Algorithm to solve this problemStep 1: Import boto3 and botocore exceptions to handle exceptions.Step 2: workflow_name is the required parameter for this function. It will fetch the metadata of the given workflow.Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in the default profile. ... Read More

Implement Queues Using Stacks in Python

AmitDiwan
Updated on 15-Apr-2021 12:46:57

379 Views

When it is required to implement a queue using a stack, a queue class can be defined, where two stack instances can be defined. Different operations can be performed on the queue that are defined as methods in this class.Below is a demonstration of the same −Example Live Democlass Queue_structure:    def __init__(self):       self.in_val = Stack_structure()       self.out_val = Stack_structure()    def check_empty(self):       return (self.in_val.check_empty() and self.out_val.check_empty())    def enqueue_operation(self, data):       self.in_val.push_operation(data)    def dequeue_operation(self):       if self.out_val.check_empty():          while not self.in_val.check_empty(): ... Read More

Implement Stack Using Two Queues in Python

AmitDiwan
Updated on 15-Apr-2021 12:45:01

572 Views

When it is required to implement a stack using two queues, a ‘Stack_structure’ class is required along with a Queue_structure class. Respective methods are defined in these classes to add and delete values from the stack and queue respectively.Below is a demonstration of the same −Example Live Democlass Stack_structure:    def __init__(self):       self.queue_1 = Queue_structure()       self.queue_2 = Queue_structure()    def check_empty(self):       return self.queue_2.check_empty()    def push_val(self, data):       self.queue_1.enqueue_operation(data)       while not self.queue_2.check_empty():          x = self.queue_2.dequeue_operation()          self.queue_1.enqueue_operation(x)   ... Read More

Advertisements