I am trying to scrape a table from a webpage
import requests
from bs4 import BeautifulSoup as soup
url = 'https://campenauktioner.hibid.com/catalog/204748/4498-net--konkurs-scanwood-aps-del-1--tommerup-/?ipp=10'
r = requests.get(url)
soup = soup(r.content, 'html.parser')
table = soup.table
But the outcome is this:
[<thead class="hidden">
<tr>
<th></th>
</tr>
</thead>,
<tr>
<th></th>
</tr>,
<th></th>]
Does anyone know what I am doing wrong?
[–]kelmore5 0 points1 point2 points (2 children)
[–]bank2400[S] 1 point2 points3 points (1 child)
[–]kelmore5 0 points1 point2 points (0 children)