如何在twint中获取位置数据

2024-07-08 15:00:06 发布

您现在位置:Python中文网/ 问答频道 /正文

import twint
twi = twint.Config()
twi.Search = 'political'
twi.Custom["tweet"] = ["id", "date", "place", "geo", "language", "username", "tweet"]
twi.Lang = "in"
twi.Output = "tes.csv"
twi.Store_csv = True
twi.Limit = 20
twint.run.Search(twi)

如何通过继续代码获取位置数据


Tags: csvimportidconfigsearchdatecustomusername

热门问题