gpt4 book ai didi

python - 无法使用 BeautifulSoup 解析 twitter 隐藏输入

转载 作者:太空宇宙 更新时间:2023-11-03 17:06:43 25 4
gpt4 key购买 nike

我正在尝试检索推文计数。我发现用户推文的实际数量在隐藏字段中。

enter image description here

其中,我正在使用 BeautifulSoup 进行解析:

def get_twitter(url):
soup = BeautifulSoup(urllib2.urlopen(url))
for match in soup.find_all("input", type="hidden"):
print match

结果:[enter image description here 2

正如您所看到的,您可以在浏览器的屏幕截图中找到没有隐藏的输入字段。为什么会这样?

最佳答案

已解决。使用 Twitter API。不知怎的,我认为解析会更容易。感谢alecxe 的建议。

import simplejson
from twython import Twython

def get_twitter():
t = Twython(app_key='',
app_secret='',
oauth_token='',
oauth_token_secret='')

user = t.lookup_user(screen_name = username)
print "Tweets: " + str(user[0]['statuses_count'])
print "Followers: " + str(user[0]['followers_count'])
print "Likes: " + str(user[0]['favourites_count'])

关于python - 无法使用 BeautifulSoup 解析 twitter 隐藏输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34495964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com