码迷,mamicode.com
首页 > 编程语言 > 详细

python 获取6大币对 区块高度

时间:2018-04-24 17:48:24      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:区块链   区块高度   币对   

#!/usr/bin/python # -*- coding: utf-8 -*- import requests from lxml import etree import json b_re = requests.get(‘https://chain.api.btc.com/v3/block/latest‘) btc=b_re.json()[‘data‘][‘height‘] bch_re = requests.get(‘https://bch-chain.api.btc.com/v3/block/latest‘) bch=bch_re.json()[‘data‘][‘height‘] ltc_re = requests.get(‘http://explorer.litecoin.net/‘) selector1 = etree.HTML(ltc_re.text) ltc = selector1.xpath(‘//td/a/text()‘)[1] usdt = btc etc_re = requests.get(‘http://gastracker.io/‘) selector2 = etree.HTML(etc_re.text) etc = selector2.xpath(‘//dl/dd/span/text()‘)[6] eth_re = requests.get(‘https://etherscan.io/‘) selector3 = etree.HTML(eth_re.text) eth = selector3.xpath(‘//h4[@style="color: #FFFFFF"]//text()‘)[0] print btc,bch,ltc,usdt print eth,etc

python 获取6大币对 区块高度

标签:区块链   区块高度   币对   

原文地址:http://blog.51cto.com/hequan/2107325

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!