如何使用 Tweepy 获取 Twitter 生物信息
Posted
技术标签:
【中文标题】如何使用 Tweepy 获取 Twitter 生物信息【英文标题】:How to get Twitter bio information with Tweepy 【发布时间】:2020-02-02 04:42:03 【问题描述】:我正在使用 Python Tweepy 在 Twitter 上抓取用户信息。 目前,我可以毫无问题地抓取姓名、关注者数量和关注者数量等信息,但我找不到使用当前代码获取生物文本数据的方法。 我当前的代码是:
test = api.lookup_users(user_ids=['*432899325239793259(arbitrary number)*'])
for user in test:
print(user, user.name, user.created_at, user.friends_count, user.followers_count)
exit()
我查看了 print(user) 的结果,但没有关于生物信息的信息。谁能帮我解决这个问题?
提前致谢。
【问题讨论】:
【参考方案1】:简历在description
字段中:
print(user.screen_name, user.description)
【讨论】:
以上是关于如何使用 Tweepy 获取 Twitter 生物信息的主要内容,如果未能解决你的问题,请参考以下文章
Tweepy-Twitter Python:获取没有可用 WOEID 的趋势
Tweepy:现在可以使用 Twitter 搜索 API 获取旧推文?