我設法使用pytrends爲給定關鍵字提取Google趨勢歷史趨勢數據。如何使用使用pytrends獲得的Google趨勢歷史趨勢數據
pytrends = get_pytrends()
keywords = {'q': 'chelsea', 'date' : 'now 12-H'}
print(json.dumps(pytrends.trend(keywords, return_type='json'), indent=4))
注意:以上數據是在過去12小時內獲得的。
以下部分重點介紹了輸出JSON數據的一小部分內容。
{
"status": "ok",
"sig": "707079741",
"table": {
"cols": [
{
"type": "date",
"id": "date",
"label": "Date",
"pattern": ""
},
{
"type": "number",
"id": "query0",
"label": "chelsea",
"pattern": ""
}
],
"rows": [
{
"c": [
{
"f": "Jan 31, 2017, 02:08 PST",
"v": "2017-01-31"
},
{
"f": "13",
"v": 13.0
}
]
},
{
"c": [
{
"f": "Jan 31, 2017, 02:16 PST",
"v": "2017-01-31"
},
{
"f": "13",
"v": 13.0
}
]
},
{
"c": [
{
"f": "Jan 31, 2017, 02:24 PST",
"v": "2017-01-31"
},
{
"f": "13",
"v": 13.0
}
]
},
...
清楚的是,上述數據是指表中的值,但我不知道以值通過鍵「f」和「V」表示的定義。我打算使用這些數據作爲我從社交網絡(主題標籤等)中提取的熱門話題的計分計算的一部分,但由於指示數據的含義不明確,我不確定如何使用它。在使用這些數據方面沒有準確的資源。
This有關類似的鏈接,JavaScript庫提供了一些有用的信息,但我收到的輸出看起來不一樣。
如何有效使用這些數據?