beginners ask for advice. I want to get the content in this table.
crawl the website
the picture failed to upload, which is the table that starts here:
<table class="list-invecase">
<tbody>
<tr>
<td class="date">
<span class="verdana">2018-05-12</span>
this is what I wrote:
import urllib.request
import requests
import re
from bs4 import BeautifulSoup
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0"}
page_html = requests.get("https://www.itjuzi.com/investfirm/1", headers=headers)
Soup = BeautifulSoup(page_html.text, "lxml")
art_list = Soup.find("table")
art_list
but the result is:
<table class="list-invecase">
<tbody></tbody>
</table>
I would like to ask how to get the date, name, industry and so on I want. I have just come into contact with this, and I don"t understand much. Please guide me. Thank you
.