Instructional Video21:28
Curated Video

Deep Learning CNN Convolutional Neural Networks with Python - Project Implementation

Higher Ed
This video explains the project implementation. This clip is from the chapter "Face Verification" of the series "Deep Learning CNN: Convolutional Neural Networks with Python".This section focuses on building the face verification app.
Instructional Video3:16
Curated Video

Python for Deep Learning - Build Neural Networks in Python - Convolution Layer

Higher Ed
In this video, you will learn about the Convolution layer. This clip is from the chapter "Convolutional Neural Networks (CNN)" of the series "Python for Deep Learning — Build Neural Networks in Python".In this section, we will cover...
Instructional Video13:00
Curated Video

Practical Data Science using Python - NumPy Arrays 3

Higher Ed
This video explains iterating through an array. This clip is from the chapter "Python for Data Science" of the series "Practical Data Science Using Python".This section explains Python for data science.
Instructional Video4:34
Curated Video

Reinforcement Learning and Deep RL Python Theory and Projects - Extracting Tensors

Higher Ed
This video explains how to extract tensors. This clip is from the chapter "Deep RL DQN" of the series "Reinforcement Learning and Deep RL Python (Theory and Projects)".This section focuses on deep RL DQN.
Instructional Video3:37
Curated Video

DevOps Complete Course - Set Up Maven

Higher Ed
This video demonstrates the Maven setup. This clip is from the chapter "Maven" of the series "DevOps Complete Course".This section focuses on Maven from scratch.
Instructional Video2:13
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - CSRF Protected Login Forms

Higher Ed
In this lesson, we will be learning how to extract and use CSRF tokens to log in to websites, which are often used for security purposes. By following our step-by-step guide, you'll be able to extract the CSRF token value using CSS...
Instructional Video3:20
Curated Video

Python In Practice - 15 Projects to Master Python - Reviews and Ratings Data to Create the Model

Higher Ed
This video explains the reviews and ratings data to create the model. This clip is from the chapter "Rating Bot" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on the Rating Bot.
Instructional Video3:20
Curated Video

Python In Practice - 15 Projects to Master Python - Extracting Values from Strings: Strings, Slicing, and Indicing

Higher Ed
This video explains how to extract characters from strings, learn about slicing and indicing, and finally look at the indexing. This clip is from the chapter "Text Data Types" of the series "Python in Practice - 15 Projects to Master...
Instructional Video1:15
Curated Video

Python In Practice - 15 Projects to Master Python - bin( )

Higher Ed
This video explains the bin( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video1:22
Curated Video

Python In Practice - 15 Projects to Master Python - ascii( )

Higher Ed
This video explains the ascii( ) function. This clip is from the chapter "All Built-In Functions" of the series "Python in Practice - 15 Projects to Master Python".This section focuses on all built-in functions.
Instructional Video3:53
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Scraping Dynamic Websites with Scrapy and Playwright

Higher Ed
In this video, we will learn about dynamic websites and how to scrape them with Scrapy and Playwright. The video begins with an overview of the traditional method of web scraping, where HTML code is extracted from websites by sending...
Instructional Video1:53
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Introduction to Web Scraping with Scrapy

Higher Ed
In this video, we will learn about the four steps of web scraping and how Scrapy, a Python framework, can be used to extract data from websites. We will see how Scrapy simplifies the process by handling the request and response steps for...
Instructional Video4:17
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Web Scraping with Pagination and URL Selectors

Higher Ed
In this tutorial, we learn how to use Scrapy to extract data from a website with multiple pages. The tutorial covers how to extract the link to the next page, send a request to it using Scrapy's request class, and how to deal with the...
Instructional Video2:42
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Selecting Tables Data

Higher Ed
In this video, we learn how to extract data from an HTML table using scrapy spider. The instructor explains step-by-step on how to identify the table, table body, and rows using CSS selectors. They also show how to extract the table...
Instructional Video6:17
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Selecting All the Data

Higher Ed
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...
Instructional Video3:24
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Selecting and Extracting Data using CSS Selector and Xpath

Higher Ed
In this video, we learn how to extract data from a response object using CSS selector or Xpath. The tutorial demonstrates the step-by-step process of selecting all titles and extracting single and multiple data points. The host...
Instructional Video7:15
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Scrapy CSS Selector

Higher Ed
In this video, we learn how to select data from a website using CSS selectors and Scrapy. The video guides us through the steps to open the Chrome developer tools to view the HTML code of the website, and use CSS selectors to select the...
Instructional Video2:19
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Scraping Data from Dynamic Websites

Higher Ed
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...
Instructional Video3:16
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Requesting Data from API

Higher Ed
In this video, we learn how to identify API calls from a website using our network tab and how to use this URL to get the data ourselves using Scrapy shell. We also learn how to load the data as a JSON using the JSON module and how to...
Instructional Video6:49
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Parse Product Details Page

Higher Ed
In this video, we explore how to set up custom callbacks in a Scrapy project to follow links and extract data from specific elements of a website. The tutorial takes viewers through the step-by-step process of defining a parse details...
Instructional Video7:03
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Loading Items with Scrapy ItemLoaders

Higher Ed
In this tutorial, we learn how to use Scrapy's item loader to scrape data from websites. The video demonstrates step-by-step how to create an item loader, select data using a custom selector, and add values to a Scrapy item. We also...
Instructional Video6:33
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - Items, Processors, and ItemLoaders Overview

Higher Ed
In this video, the instructor guides the viewers through a complete understanding of item loaders in Python Scrapy. The lesson starts with a recap of the previous tutorial and moves on to explain the concept of input and output...
Instructional Video3:03
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - How Web Scraping Works

Higher Ed
In this video, we'll learn all about web scraping - the process of extracting data from websites using a program or tool. Our expert instructor breaks down the process into four simple steps - sending a request, getting the response,...
Instructional Video6:11
Curated Video

Web Scraping Tutorial with Scrapy and Python for Beginners - How to Select Data Using Regular Expressions with Scrapy

Higher Ed
In this video, you will learn how to extract data from HTML tags using regular expressions. You'll see how to create a pattern to match specific data and how to use regular expressions to extract that data. You'll also learn how to...