gpt4 book ai didi

python - 美丽汤双层

转载 作者:行者123 更新时间:2023-12-01 05:40:09 26 4
gpt4 key购买 nike

我正在构建一个小模块,其任务是执行以下操作:-阅读网页 (cavirtex.com/orderbook)-使用urllib获取源代码并使用beautifulsoup打开它-解析并获取body.div(id='xx')现在,我被困在这里了。我想重新优化结果并迭代较大 tr 内的两行 td 并获取值并对它们求和。如果有人知道该怎么做,请向我解释一下,因为我已经被困在这里好几个小时了。哦,这是我的源代码:

myurl = urllib.urlopen('http://cavirtex.com/orderbook').read()
soup = BeautifulSoup(myurl)

selling = soup.body.div(id ='orderbook_buy')
selling = str(selling)
selling = BeautifulSoup(selling)
Sresult = selling.find_all(['tr'])
amount = 30
count = 0
cadtot = 0
locamount = 0
for rows in Sresult:
#agarrar string especifico para vez
Wresult = Sresult[count]
#crear lista
Eresult = [Wresult]
Eresult = str(Eresult)
cosito = str(Eresult[count])

print cosito
count = int(count) + 1
cadtot = cadtot + locamount

最佳答案

不是您问题的直接答案,但如果您的目标是从 cavirtex.com 下载并处理订单簿,我建议您改用图表 API:

https://www.cavirtex.com/api/CAD/orderbook.json

该链接以友好的 JSON 形式提供了您所需的所有信息。

示例:

import urllib
import json

url = "https://www.cavirtex.com/api/CAD/orderbook.json"
orderbook_json = urllib.urlopen(url).read()
orderbook = json.loads(orderbook_json)

print(orderbook['bids'])
print(orderbook['asks'])

还有:

https://www.cavirtex.com/api/CAD/trades.json

大多数比特币交易所都支持相同的 API,如 bitcoincharts.com 所记录:http://bitcoincharts.com/about/exchanges/

享受吧!

关于python - 美丽汤双层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17752947/

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