-1

我正在尝试使用 TableauScraper 从 Tableau Dashboard 中抓取一些日期。

from tableauscraper import TableauScraper as TS
url = "https://public.tableau.com/app/profile/neurc/viz/3__16324702240020/1_"
ts = TS()
ts.loads(url)

但我得到一个错误。你能告诉我问题是什么以及如何解决吗?

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-13-8e37a3f87203> in <module>
      2 url = "https://public.tableau.com/app/profile/neurc/viz/3__16324702240020/1_"
      3 ts = TS()
----> 4 ts.loads(url)

/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/tableauscraper/TableauScraper.py in loads(self, url, params)
     78 
     79         self.tableauData = json.loads(
---> 80             soup.find("textarea", {"id": "tsConfigContainer"}).text
     81         )
     82 

AttributeError: 'NoneType' object has no attribute 'text'

我看到了一个类似的问题,但没有找到这个问题的答案

4

0 回答 0