返回顶部
首页 > 资讯 > 后端开发 > Python >python 获取6大币对 区块高度
  • 257
分享到

python 获取6大币对 区块高度

区块高度python 2023-01-31 02:01:56 257人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

#!/usr/bin/python # -*- coding: utf-8 -*- import requests from lxml import etree import JSON b_re = requests.get('https

#!/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

--结束END--

本文标题: python 获取6大币对 区块高度

本文链接: https://lsjlt.com/news/187080.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作