gpt4 book ai didi

python - 通过 Python 构建与 Jon 类似的声誉跟踪器

转载 作者:太空宇宙 更新时间:2023-11-04 11:05:43 24 4
gpt4 key购买 nike

Jon Skeet 有以下 reputation tracker这是由 C# 构建的。

我有兴趣通过 Python 构建一个类似的应用程序,至少使用以下模块

  • 漂亮的汤
  • 默认字典

我们显然需要

如何使用 Python 构建与 Jon 的相似的信誉系统?

最佳答案

屏幕抓取很容易,如果我正确理解 SO HTML 格式,例如,获取我的代表(因为我是用户 95810):

import urllib
import BeautifulSoup
page = urllib.urlopen('http://stackoverflow.com/users/95810')
soup = BeautifulSoup.BeautifulSoup(page)
therep = str(soup.find(text='Reputation').parent.previous.previous).strip()
print int(therep.replace(',',''))

不过,我不确定你想在这里用 defaultdict 做什么——你希望对这个 int 执行什么进一步的处理,这将以某种方式需要将它存储在 defaultdict 中?

关于python - 通过 Python 构建与 Jon 类似的声誉跟踪器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1168452/

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