Skip to main content

QuantCoda Python SDK

tests PyPI

官网 · API 文档 · 免费注册 · MCP 接入

QuantCoda 官方 Python SDK —— A 股行情、财务、资金流、筹码、龙虎榜,45 个数据接口,一个 API Key 全部拿到。

安装

pip install quantcoda

快速开始

import quantcoda as qc

qc.set_token("qc_live_你的密钥")   # 免费注册: https://quantcoda.com/register

# 贵州茅台 2026 年以来的日线(返回 pandas.DataFrame)
df = qc.daily(symbol="600519.SH", start_date="20260101")

# 每日指标 / 财务 / 资金流 / 龙虎榜……全部同一姿势
qc.fundamentals(symbol="600519.SH", trade_date="20260710")
qc.income(symbol="600519.SH", period="20251231")
qc.moneyflow(trade_date="20260710")
qc.top_list(trade_date="20260710")

# 指数与外汇
qc.index_daily(symbol="000300.SH", start_date="20260101")
qc.fx_daily(start_date="20260101")

# 实时行情与快讯
qc.realtime(symbol="600519.SH,300750.SZ")
qc.news_flash(source="cls")
  • Key 也可以放环境变量 QUANTCODA_TOKEN,省去 set_token
  • 全部接口一览:qc.endpoints()(方法名、路径、套餐、参数与返回字段)
  • 单个接口的完整契约:qc.endpoint_schema("daily")
  • 参数与返回字段和 在线文档 一一对应;日期统一 YYYYMMDD,证券代码带交易所后缀(600519.SH

离线接口检索

接口元数据随 SDK 安装包分发,不需要 API Key,也不会发送网络请求:

import quantcoda as qc

matches = qc.search("可转债 实时行情")
info = qc.interface_info("market_daily")
categories = qc.list_categories()

使用已有客户端时也可以调用同名方法:

client.search("可转债 实时行情")
client.interface_info("market_daily")
client.list_categories()

search() 返回确定性排序的 DataFrame;matched_termsunmatched_terms 会明确区分命中的能力与当前元数据没有声明的查询条件,避免人或 AI Agent 把部分匹配误认为完整数据覆盖。interface_info() 同时接受接口 ID、SDK 方法名、 点分别名和 REST 路径,例如 market_dailydailymarket.daily/v1/market/daily

错误处理

from quantcoda import QuantCodaError, RateLimitError

try:
    df = qc.daily(symbol="600519.SH")
except RateLimitError as e:      # 超出限速(429)
    print(e, "建议等待:", e.retry_after, "秒")
except QuantCodaError as e:     # 其他错误,中文说明
    print(e.status, e)

多账号 / 自定义

from quantcoda import QuantCoda

client = QuantCoda(token="qc_live_另一把密钥", timeout=60)
df = client.daily(symbol="000001.SZ", start_date="20260101")

定价

免费版 100 次/天,无需信用卡。Pro 开放全部现有标准数据;Expert 包含 Pro 全部能力并提供最高 500 次/分钟的请求频率 —— 定价页

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quantcoda-0.1.5.tar.gz (26.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

quantcoda-0.1.5-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file quantcoda-0.1.5.tar.gz.

File metadata

  • Download URL: quantcoda-0.1.5.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quantcoda-0.1.5.tar.gz
Algorithm Hash digest
SHA256 c68a4bf2e3002b690190759a6e46daf4823d6983910edfc8e6bdb30bda76ffbd
MD5 2a9b344d4c35e6e37771585d91b1e673
BLAKE2b-256 4e7e80ec5c4c05ea9f028d227e9b41f39775d60f038328c2f29916b782ca5d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quantcoda-0.1.5.tar.gz:

Publisher: publish.yml on ChuYiCui1/quantcoda-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quantcoda-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: quantcoda-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quantcoda-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 275f56d295056a6595236a4706dc80f074bc3ce9437a504332e0209d3a9ac929
MD5 9b1b0a8ccb097444b6456c8c55ae9e81
BLAKE2b-256 084cd1e8eb0ef7b34753f19018c746609c0244bbf78b6e9b4d23fab09bb875a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quantcoda-0.1.5-py3-none-any.whl:

Publisher: publish.yml on ChuYiCui1/quantcoda-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page