Hi, what do you want to do?
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Python REPL
You will learn to use the Python REPL that displays the version, tags and date, and variable declarations.
<
br/>
This clip is from the chapter "High-Level Ops" of the series "The Ultimate Guide to Python Programming with Python...
<
br/>
This clip is from the chapter "High-Level Ops" of the series "The Ultimate Guide to Python Programming with Python...
Packt
Learning Python: Syntax, Writing Code, and Output
In this educational video, we dive into the fundamentals of learning any language, whether it be spoken or programming. We explore the importance of formatting and following syntax rules, just like we do with grammar in spoken languages....
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - pip - Package Installer for Python
Before starting a project and implementing a functionality by ourselves, we can check third-party sites where such functionality can be implemented.
<
br/>
This clip is from the chapter "Modules" of the series "The Ultimate Guide to...
<
br/>
This clip is from the chapter "Modules" of the series "The Ultimate Guide to...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Pattern Matching
Here, you will learn to create your own terminal simulation, which will create different statements and match the list directories.
<
br/>
This clip is from the chapter "Structural Pattern Matching" of the series "The Ultimate Guide...
<
br/>
This clip is from the chapter "Structural Pattern Matching" of the series "The Ultimate Guide...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - open() File
In this lesson, you will learn how to perform the operations on a file with Python.
<
br/>
This clip is from the chapter "File IO" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on the...
<
br/>
This clip is from the chapter "File IO" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on the...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Interface: Checkbutton
Here, we will define our user interface code with the use of checkbuttons.
<
br/>
This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
<
br/>
This clip is from the chapter "Project Sedentary Alert" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Immutable list - Tuple
You will learn about the tuples datatype, which is a list that cannot be altered after its creation.
<
br/>
This clip is from the chapter "Tuples" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
<
br/>
This clip is from the chapter "Tuples" of the series "The Ultimate Guide to Python Programming with Python 3.10".This...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - File Operations
In this video, you will learn about how to create and edit the contents of a file.
<
br/>
This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This video...
<
br/>
This clip is from the chapter "Generic Programming" of the series "The Ultimate Guide to Python Programming with Python 3.10".This video...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Entry Widget
Here, you will learn to create a GUI using the other widgets with tkinter.
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on creating a...
<
br/>
This clip is from the chapter "Tkinter" of the series "The Ultimate Guide to Python Programming with Python 3.10".This section focuses on creating a...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Dictionaries or Hash-Tables
Hash-tables or lookup tables are nothing but dictionaries, usually compressed so that they are easier to store.
<
br/>
This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python Programming...
<
br/>
This clip is from the chapter "Revisiting Dictionary" of the series "The Ultimate Guide to Python Programming...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Classes and Objects - Classes - Inheritence
After learning about classes and how to create our own class to create an object, we will now look at inheriting the attributes from one class to another.
<
br/>
This clip is from the chapter "Classes" of the series "The Ultimate...
<
br/>
This clip is from the chapter "Classes" of the series "The Ultimate...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Class Variables and Instance Variables
In this video, you will learn about class variables and variables created on an instance.
<
br/>
This clip is from the chapter "Object-Oriented Programming" of the series "The Ultimate Guide to Python Programming with Python...
<
br/>
This clip is from the chapter "Object-Oriented Programming" of the series "The Ultimate Guide to Python Programming with Python...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Arbitrary Positional Arguments - *args
You will learn to use the arbitrary positional argument, which will allow us to accept any number of positional arguments.
<
br/>
This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming with...
<
br/>
This clip is from the chapter "Functions" of the series "The Ultimate Guide to Python Programming with...
Curated Video
The Ultimate Guide to Python Programming With Python 3.10 - Arbitrary Keyword Arguments
Previously, you learned to use the arbitrary positional argument to accept any number of values; now, we will look at using arbitrary keywords to accept any number of keyword arguments.
<
br/>
This clip is from the chapter...
<
br/>
This clip is from the chapter...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Introductory Guide to XPath for Web Scraping
In this tutorial, we will cover the basics of XR and how it can be used to select web elements from an HTML document. For those who are familiar with CSS selectors, we will also highlight the differences between XR and CSS selectors. By...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - What Is the Scrapy Shell and How to Use It?
In this video, we learn all about using Scrapy shell to interact with a response while web scraping. The tutorial takes us step by step through the process of using Scrapy shell, from providing the URL to querying the response using...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Scraping Dynamic Websites with Scrapy and Playwright
In this video, we learn how to use Scrapy with playwright to scrape dynamic websites. The presenter shows us how to create a spider using Gen. Spider command, and then demonstrates how to send a request with playwright. The video is a...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Selecting All the Data
In this video, the instructor demonstrates how to use CSS selectors in Scrapy to extract data from a webpage. Using a sample webpage with multiple product listings, the instructor walks through the selection of each product container and...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - How to Install Scrapy on Windows in Three Easy Steps
In this video, we will learn how to install Scrapy, a popular web scraping tool, on a Windows machine in three simple steps. First, we will manually create a virtual environment to store the project files. Alternatively, we can use...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Scraping Data from Dynamic Websites
In this video, we learn how to render a dynamic website with Scrapy Playwright and extract data using Python. The video takes us through step-by-step instructions on enabling playwright inside our request, selecting the data we want from...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Scraper Application
In this video, we will learn how to build a graphical user interface or an application for web scraping or crawling. The video demonstrates how to create a tracker spider, which can be used to track products based on keywords or queries,...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - How to Follow Links
In this video, the presenter demonstrates how to scrape data from a travel website using the Scrapy Python library. The video covers topics such as sending requests, following links, and setting up custom callbacks to scrape specific...
Curated Video
AWS Serverless Microservices with Patterns and Best Practices - Deploy and Test Serverless Basket Microservices Sync Flow
This video helps with deploying and testing serverless basket microservices sync flow.
<
br/>
This clip is from the chapter "Developing Basket Lambda Microservices Functions with AWS SDK" of the series "AWS Serverless Microservices...
<
br/>
This clip is from the chapter "Developing Basket Lambda Microservices Functions with AWS SDK" of the series "AWS Serverless Microservices...
Curated Video
AWS Serverless Microservices with Patterns and Best Practices - Create a New Project for API Gateway-Lambda Synchronous Microservices with CDK
This video demonstrates how to create a new project for API Gateway-Lambda synchronous microservices with CDK.
<
br/>
This clip is from the chapter "API Gateway-Lambda Synchronous RESTful Microservices with CDK" of the series "AWS...
<
br/>
This clip is from the chapter "API Gateway-Lambda Synchronous RESTful Microservices with CDK" of the series "AWS...