我正在尝试从 kick starter 获取一些数据。怎样才能使用美汤库?
Kick Starter 链接 https://www.kickstarter.com/discover/advanced?woe_id=2347575&sort=magic&seed=2600008&page=7
这些是我需要的以下信息
Crowdfunding goal
Total crowdfunding
Total backers
Length of the campaign (# of days)
这是我当前的代码
import requests
r = requests.get('https://www.kickstarter.com/discover/advanced?woe_id=2347575&sort=magic&seed=2600008&page=1')
from bs4 import BeautifulSoup
soup = BeautifulSoup(r.text, 'html.parser')
results = soup.find_all('div', attrs={'js-react-proj-card grid-col-12 grid-col-6-sm grid-col-4-lg'})
len(results)