Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Boto3 (AWS SDK for python) Course | 60 min crash course
Rating: 4.2 out of 5(14 ratings)
47 students

Boto3 (AWS SDK for python) Course | 60 min crash course

Learn boto3 AWS SDK for python, & get hands on experience of using Boto3 | Python AWS | DynamoDB, Amazon EC2, Amazon AWS
Created byAnkush Gambhir
Last updated 6/2024
English
English [Auto],

What you'll learn

  • Setting up your AWS environment for Boto3 development
  • Working with the Boto3 API and its various AWS service modules
  • Managing AWS resources and services programmatically using Boto3
  • Developing Python applications that interact with AWS services using Boto3
  • You will learn how to write code that interacts with Amazon DynamoDb using AWS SDK for Python (Boto3)
  • You will learn how to write code that interacts with Amazon EC2 using AWS SDK for Python (Boto3)
  • You will learn how to write code that interacts with Amazon s3 using AWS SDK for Python (Boto3)
  • You will learn how to work with AWS IAM user
  • You will learn how to setup your machine to install Boto3 AWS SDK for python.

Course content

4 sections18 lectures51m total length
  • Introduction0:48

    Learn to use Boto3, the AWS SDK for Python, to write code that interacts with EC2, S3, and RDS through practical use cases.

  • Install Python1:12

    Install Python and verify existing versions, then download the latest from python.org if needed, ensuring Boto3 can run with a compatible Python version.

  • Install PyCharm IDE2:11

    Install PyCharm IDE, download the community version from JetBrains for Mac OS, verify the DMG, and drag PyCharm to the Applications folder to begin writing Python and running boto3 applications.

  • Setup project in PyCharm IDE1:07

    Set up a new PyCharm IDE project by naming it and selecting a Python interpreter version greater than 3.7 for Boto3 compatibility, then click next to initialize the project.

  • Install Boto30:46

    Install boto3 using pip and wait a few minutes for the installation to complete. Verify the setup by running pip show boto3 to view the installed version.

  • Create an IAM user2:46

    Create an IAM user and generate a secret key to access AWS services via boto3. Attach Administrator Access and review the user details in the IAM dashboard.

  • Create the access key for the IAM user1:42

    Create an IAM user's access key and enable programmatic access via AWS CLI. Learn tagging, downloading the CSV, and best practices like rotation and least-privilege access.

  • Install and configure AWS Command Line Interface (CLI)2:51

    Install and configure the aws command line interface to manage multiple aws services from the terminal, enabling Boto3 to interact with ec2 and s3.

Requirements

  • Basic knowledge of Python & Amazon AWS

Description

Welcome to the Boto3 SDK course to interact with AWS services on Udemy!

In this course, you'll learn how to use the Boto3 SDK to interact with various AWS services, including Amazon S3, EC2, Lambda, and more. Boto3 is a powerful Python library that allows you to build, configure, and manage AWS services programmatically, making it an essential tool for anyone working with cloud-based applications.

Whether you're a beginner or an experienced developer, this course will teach you everything you need to know to get started with Boto3. You'll learn how to set up your AWS environment, work with the Boto3 API, and integrate Boto3 with your Python applications.


Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2. This course will help you get started with Boto3 by explaining the basics and demonstrating how to use it through several use cases. The course include step by step examples.

In this course, you will learn the basics of Boto3. The course cover the following:

  • Install Python

  • Instal and setup PyCharm IDE

  • Install Boto3, AWS SDK for python

  • Creating an IAM user and configuring your system using Amazon CLI

  • Learn to code to interact with Amazon DynamoDB using Boto3

    • Learn how to create a table in DynamoDB using Boto3

    • Learn how to add an item into a table in DynamoDB using Boto3

    • Learn how to update an item in DynamoDB using Boto3

    • Learn how to query a table in DynamoDB using Boto3

    • Learn how to delete a table in DynamoDB using Boto3

  • Learn to code to interact with Amazon EC2 instance using Boto3

    • Learn how to create an Amazon machine image (AMI)

    • Learn how to create an Amazon EC2 instance using Boto3

    • Learn how to describe EC2 instances using Boto3

  • Learn how to write code that interacts with Amazon s3 using AWS SDK for Python (Boto3)

Who this course is for:

  • Beginner developers who are curious about Boto3 AWS SDK for python