Curated Video
Deep Learning CNN Convolutional Neural Networks with Python - Project Implementation
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.
Curated Video
Python for Deep Learning - Build Neural Networks in Python - Convolution Layer
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...
Curated Video
Practical Data Science using Python - NumPy Arrays 3
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.
Curated Video
Reinforcement Learning and Deep RL Python Theory and Projects - Extracting Tensors
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.
Curated Video
DevOps Complete Course - Set Up Maven
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.
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - CSRF Protected Login Forms
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...
Curated Video
Python In Practice - 15 Projects to Master Python - Reviews and Ratings Data to Create the Model
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.
Curated Video
Python In Practice - 15 Projects to Master Python - Extracting Values from Strings: Strings, Slicing, and Indicing
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...
Curated Video
Python In Practice - 15 Projects to Master Python - bin( )
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.
Curated Video
Python In Practice - 15 Projects to Master Python - ascii( )
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.
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Scraping Dynamic Websites with Scrapy and Playwright
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Introduction to Web Scraping with Scrapy
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Web Scraping with Pagination and URL Selectors
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Selecting Tables Data
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...
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 - Selecting and Extracting Data using CSS Selector and Xpath
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Scrapy CSS Selector
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...
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 - Requesting Data from API
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Parse Product Details Page
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Loading Items with Scrapy ItemLoaders
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - Items, Processors, and ItemLoaders Overview
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...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - How Web Scraping Works
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,...
Curated Video
Web Scraping Tutorial with Scrapy and Python for Beginners - How to Select Data Using Regular Expressions with Scrapy
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...