Contenido del Curso
Web Scraping with Python
Web Scraping with Python
Challenge: Count Number of Images
Now that you've opened and read the page, let's attempt to extract some information from it!
Tarea
The page you accessed in the previous challenge has already been loaded, read, and decoded. Your tasks are as follows:
- Count the number of
div
tags within theweb_page
. - Count the number of images (
img
) within theweb_page
.
Since elements may have certain attributes, use the '<div'
and '<img'
as elements to look for.
¡Gracias por tus comentarios!
Challenge: Count Number of Images
Now that you've opened and read the page, let's attempt to extract some information from it!
Tarea
The page you accessed in the previous challenge has already been loaded, read, and decoded. Your tasks are as follows:
- Count the number of
div
tags within theweb_page
. - Count the number of images (
img
) within theweb_page
.
Since elements may have certain attributes, use the '<div'
and '<img'
as elements to look for.
¡Gracias por tus comentarios!
Challenge: Count Number of Images
Now that you've opened and read the page, let's attempt to extract some information from it!
Tarea
The page you accessed in the previous challenge has already been loaded, read, and decoded. Your tasks are as follows:
- Count the number of
div
tags within theweb_page
. - Count the number of images (
img
) within theweb_page
.
Since elements may have certain attributes, use the '<div'
and '<img'
as elements to look for.
¡Gracias por tus comentarios!
Now that you've opened and read the page, let's attempt to extract some information from it!
Tarea
The page you accessed in the previous challenge has already been loaded, read, and decoded. Your tasks are as follows:
- Count the number of
div
tags within theweb_page
. - Count the number of images (
img
) within theweb_page
.
Since elements may have certain attributes, use the '<div'
and '<img'
as elements to look for.