获取比特币和莱特币的实时价格

数据来源:

复制代码
https://datacenter.jin10.com/reportType/dc_bitcoin_current

代码:

python 复制代码
import akshare as ak
import pandas as pd
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
pd.set_option('display.width', 1000)

crypto_js_spot = ak.crypto_js_spot()
print(crypto_js_spot)

输出:

python 复制代码
               市场    交易品种         最近报价        涨跌额   涨跌幅       24小时最高       24小时最低   24小时成交量                 更新时间
0    Bitfinex(香港)  LTCUSD       67.465       0.59  0.87       68.867       66.259   6893.13  2023-10-02 22:45:09
1    Bitflyer(日本)  BTCJPY  4244238.000  191147.00  4.72  4278000.000  4042615.000   1803.99  2023-10-02 22:45:09
2    Bitstamp(美国)  BTCUSD    28309.000    1192.00  4.40    28592.000    27044.000   2667.55  2023-10-02 22:45:09
3      CEX.IO(伦敦)  BTCUSD    28332.400    1200.50  4.42    28548.400    27071.000      8.04  2023-10-02 22:45:09
4  Kraken_EUR(美国)  BTCEUR    26960.100    1328.10  5.18    27187.800    25572.800   1492.30  2023-10-02 22:45:09
5      Kraken(美国)  LTCUSD       67.410       0.50  0.75       68.760       66.250  28818.47  2023-10-02 22:45:09
6      OKCoin(中国)  BTCUSD    28312.570    1205.51  4.45    28482.250    27063.520      1.81  2023-10-02 22:45:09
7    Bitfinex(香港)  BCHUSD        0.000       0.00  0.00        0.000        0.000      0.00  2020-11-16 21:02:04
8    Bitfinex(香港)  BTCUSD    28323.000    1198.00  4.42    28611.000    27063.000   2656.08  2023-10-02 22:45:09
9      Kraken(美国)  BTCUSD    28320.000    1217.60  4.49    28572.500    27059.600   3632.92  2023-10-02 22:45:09
相关推荐
孟健5 小时前
Karpathy 用 200 行纯 Python 从零实现 GPT:代码逐行解析
python
码路飞7 小时前
写了个 AI 聊天页面,被 5 种流式格式折腾了一整天 😭
javascript·python
曲幽10 小时前
FastAPI压力测试实战:Locust模拟真实用户并发及优化建议
python·fastapi·web·locust·asyncio·test·uvicorn·workers
敏编程14 小时前
一天一个Python库:jsonschema - JSON 数据验证利器
python
前端付豪14 小时前
LangChain记忆:通过Memory记住上次的对话细节
人工智能·python·langchain
databook14 小时前
ManimCE v0.20.1 发布:LaTeX 渲染修复与动画稳定性提升
python·动效
花酒锄作田1 天前
使用 pkgutil 实现动态插件系统
python
前端付豪1 天前
LangChain链 写一篇完美推文?用SequencialChain链接不同的组件
人工智能·python·langchain
曲幽1 天前
FastAPI实战:打造本地文生图接口,ollama+diffusers让AI绘画更听话
python·fastapi·web·cors·diffusers·lcm·ollama·dreamshaper8·txt2img
老赵全栈实战1 天前
Pydantic配置管理最佳实践(一)
python