Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele Challenge | Tables
Web Scraping with Python (res)

bookChallenge

Let’s check how well we can scrape the data from websites!

You have the following page you need to scrape the data from. Take a look at it and see which information contains. Firstly, we should access the content of the page.

question-icon

Fill gaps to see the HTML code of your page:

from urllib.request import

url = "https://codefinity-content-media.s3.eu-west-1.amazonaws.com/18a4e428-1a0f-44c2-a8ad-244cd9c7985e/final.html"
page =
(url)
html = page.
().decode()

Click or drag`n`drop items and fill in the blanks

Let’s continue. We can already get the HTML structure of the page.

question mark

To iterate through all the HTML elements, we can use libraries:

Select the correct answer

The next step for working with the data is creating the BeautifulSoup object.

question-icon

Fill gaps to create the BeautifulSoup object:

soup =(html, ".")

Let's scrap the table!.

question mark

To iterate through all the HTML elements, we can use libraries:

Select the correct answer

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 4. Luku 4

Kysy tekoälyä

expand

Kysy tekoälyä

ChatGPT

Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme

Suggested prompts:

Kysy minulta kysymyksiä tästä aiheesta

Tiivistä tämä luku

Näytä käytännön esimerkkejä

Awesome!

Completion rate improved to 4.76

bookChallenge

Pyyhkäise näyttääksesi valikon

Let’s check how well we can scrape the data from websites!

You have the following page you need to scrape the data from. Take a look at it and see which information contains. Firstly, we should access the content of the page.

question-icon

Fill gaps to see the HTML code of your page:

from urllib.request import

url = "https://codefinity-content-media.s3.eu-west-1.amazonaws.com/18a4e428-1a0f-44c2-a8ad-244cd9c7985e/final.html"
page =
(url)
html = page.
().decode()

Click or drag`n`drop items and fill in the blanks

Let’s continue. We can already get the HTML structure of the page.

question mark

To iterate through all the HTML elements, we can use libraries:

Select the correct answer

The next step for working with the data is creating the BeautifulSoup object.

question-icon

Fill gaps to create the BeautifulSoup object:

soup =(html, ".")

Let's scrap the table!.

question mark

To iterate through all the HTML elements, we can use libraries:

Select the correct answer

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 4. Luku 4
some-alt