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
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0