Skip to main content

通达信数据高性能读取接口 (Rust + Python)

Project description

mitdx

通达信 (TDX) 市场数据接口,Rust 核心 + Python 封装。

PyPI Python License Quality Gate Status

支持的 TDX 协议

协议 指令 功能 Python API
get_security_count 0x044E 市场证券数量 stock_count()
get_security_list 0x0450 证券列表 (代码/名称) stocks() stock_all()
get_security_bars 0x052D K 线数据 bars() minute() index()
get_security_quotes 0x5053E 实时五档盘口 quotes()
get_transaction_data 0x0FC5 分笔成交 transactions()
get_xdxr_info 0x000F 除权除息 xdxr()
get_finance_info 0x0010 财务摘要 finance()
get_company_info_category 0x02CF F10 公司资料目录 f10()
get_company_info_content 0x02D0 F10 公司资料内容 f10()
get_report_file 0x06B9 报表文件下载

Changelog

v1.1.8 (2026-05-25)

新增 TDX 协议 GetSecurityCount / GetSecurityList 命令,支持从通达信服务器获取全量股票代码与名称映射。

新增协议 指令 功能
get_security_count 0x044E 获取市场证券数量
get_security_list 0x0450 获取证券列表 (代码/名称/昨收等)

新增 Python API:stock_count() · stocks() · stock_all()

其他:Rust 层新增 parse_u16_le() / parse_u32_le() 辅助函数消除重复;Python 层新增 MARKET_SH / MARKET_SZ / SECURITY_LIST_BATCH_SIZE 常量;stock_all()stocks() 分页逻辑去重;全量 logger.exception() 替换 logger.error() 保留堆栈跟踪;市场参数校验与 mootdx API 兼容。

历史版本

v1.1.7 (2026-04-30)

修复 1.1.4/1.1.5 严重核心回归:重构后 get_security_barsget_company_info_categoryget_transaction_data 结构化请求时由包头数据长度与实际写入长度不匹配阻碍服务端响应导致的 EAGAIN Socket 超时挂起,现已将被强转为 u8market 字段在底层通信层恢复回原生的 u16 二字节结构,对齐发包长度完美解决。 同步彻底修复 MacOS (aarch64) 版本 CI 构建时由于跨缓存损坏引起的 sccache 序列化警告反序列化报错(已在 Actions 环境静默绕过并配置禁用 sccache)。

v1.1.4 (2026-04-30)

代码审查全量修复:Rust 协议层 market 参数统一为 u8 并修正 get_transaction_data 数据包长度;修复 reader.rs 分钟线日期解码与 protocol.rs 不一致;affair.py 文件句柄泄漏修复;calendar.py 网络失败增加日志警告;所有网络测试标记 @pytest.mark.network,CI 增加 test job。

v1.1.3 (2026-04-30)

修复 SonarCloud 安全审查项:测试文件移除硬编码 IP(改为引用 consts.py);CI 收紧 tag 触发规则和权限声明。

v1.1.2 (2026-04-30)

文档修正,与 PyPI 同步。

v1.1.1 (2026-04-30)

修复 finance() 语义错误:改为调用独立的 get_finance_info(CMD 0x0010),返回 34 字段财务摘要。

v1.1.0 (2026-04-30)

新增 5 个 Rust 原生协议解析器,Python 层对齐全部 mootdx 核心 API。

新增协议 指令 功能
get_xdxr_info 0x000F 除权除息
get_transaction_data 0x0FC5 分笔成交
get_security_quotes 0x5053E 实时五档盘口
get_company_info_category 0x02CF F10 公司资料目录
get_company_info_content 0x02D0 F10 公司资料内容 (GBK→UTF8)

新增 Python API:xdxr() · transactions() · quotes() · finance() · f10() · minute() · index()

其他:新增 encoding_rs 依赖处理 GBK;统一使用 read_response() / require_stream() 消除重复代码;_market_code() 改用 removeprefix() 替代 lstrip()

v1.0.0 (2026-04-29)

首个正式版本。Rust 核心实现 K 线解析、VIPDOC 文件读取、TDX HQ 协议。Python 层提供 Reader / Quotes / Affair / Calendar 四个模块,CLI 工具,Pandas / Polars 双后端,CI/CD 跨平台 Wheel 构建。

安装

PyPI(发布后可用):

pip install mitdx

从 GitHub Release 安装预编译 Wheel:

pip install mitdx --find-links https://github.com/Michaol/mitdx/releases/latest

从源码构建:

pip install maturin
git clone https://github.com/Michaol/mitdx.git && cd mitdx
maturin develop --release

用法

Reader — 离线 VIPDOC 文件读取

from mitdx.reader import Reader

reader = Reader.factory(market='std', tdxdir='C:/new_tdx')

df = reader.daily(symbol='600036')
df = reader.minute(symbol='600036', suffix=1)   # 1分钟线
df = reader.fzline(symbol='600036')              # 5分钟线

symbol 支持纯代码 (600036) 或带前缀 (sh600036),自动推断交易所。

Quotes — 实时行情

from mitdx.quotes import Quotes
from mitdx.consts import MARKET_SH, MARKET_SZ

with Quotes.factory(market='std') as q:
    # 证券列表
    count = q.stock_count(market=MARKET_SH)                     # 市场证券数量
    df = q.stocks(market=MARKET_SH)                              # 单市场证券列表 (自动分页)
    df = q.stock_all()                                           # 沪深全量证券列表

    # 行情数据
    df = q.bars(symbol='600036', frequency=9, count=20)          # K线
    df = q.minute(symbol='600036', frequency=0, count=20)        # 分钟线 (bars 别名)
    df = q.index(symbol='000001', frequency=9, count=20)         # 指数 (bars 别名)
    df = q.xdxr(symbol='600036')                                 # 除权除息
    df = q.transactions(symbol='600036', start=0, count=30)      # 分笔成交
    df = q.quotes(symbols=['600036', '000001'])                  # 实时快照 (批量)
    df = q.finance(symbol='600036')                              # 财务数据
    info = q.f10(symbol='600036')                                # F10 公司资料

手动指定服务器:

q = Quotes(market='std')
q.connect(ip='110.41.147.114', port=7709)
df = q.bars(symbol='600036', frequency=9, start=0, count=100)
q.disconnect()

所有方法均支持 backend='polars' 参数切换至 Polars DataFrame。

stocks() / stock_all() 返回字段:

字段 类型 说明
code str 证券代码 (如 600036)
name str 证券名称 (GBK→UTF-8)
volunit int 最小交易单位 (通常 100)
decimal_point int 价格小数位数 (通常 2)
pre_close float 昨收价
market int 市场代码 (仅 stock_all() 返回)

frequency 参数:

含义 含义
0 5分钟 5 15分钟
1 15分钟 6 30分钟
2 30分钟 7 1小时
3 1小时 8 日线
4 日线 9 日线 (默认)
10 周线 11 月线

Affair — 财务数据

from mitdx.affair import Affair

files = Affair.files()                                                          # 文件列表
Affair.fetch(downdir='./data', filename='gpcw20240331.zip')                     # 下载
df = Affair.parse(downdir='./data', filename='gpcw20240331.zip')                # 解析

Calendar — 交易日历

import datetime
from mitdx.calendar import is_trading_day, is_holiday

is_trading_day()                        # 今天是否交易日
is_holiday(datetime.date(2026, 1, 1))   # 指定日期是否假日

CLI

mitdx quotes --symbol 600036 --count 10 --backend polars
mitdx affair list
mitdx affair fetch --filename gpcw.txt
mitdx reader daily --symbol 600036 --tdxdir C:/new_tdx

Rust 底层接口

from mitdx._core import read_daily_bars, read_minute_bars, TdxClient

records = read_daily_bars('path/to/sh600036.day', price_coeff=0.01, vol_coeff=0.01)
records = read_minute_bars('path/to/sh600036.lc1')

client = TdxClient()
client.connect('110.41.147.114', 7709)
bars = client.get_security_bars(category=9, market=1, code='600036', start=0, count=10)
count = client.get_security_count(market=1)
stocks = client.get_security_list(market=1, start=0)
client.disconnect()

项目结构

mitdx/
├── src/                     # Rust (PyO3)
│   ├── lib.rs               # 模块入口
│   ├── reader.rs            # VIPDOC 解析 (mmap)
│   ├── network.rs           # TDX HQ 协议客户端
│   ├── protocol.rs          # 变长价格编码 / 浮点解码
│   └── server.rs            # 并发 ping
├── python/mitdx/            # Python
│   ├── quotes.py            # 实时行情
│   ├── reader.py            # 离线数据
│   ├── affair.py            # 财务数据
│   ├── calendar.py          # 交易日历
│   ├── cli.py               # 命令行工具
│   ├── consts.py            # 服务器地址 / 常量
│   ├── columns.py           # 财报列名 (580+)
│   ├── utils.py             # DataFrame 转换
│   └── _core.pyi            # Rust 扩展类型标注
├── Cargo.toml
└── pyproject.toml

开发

需要 Python ≥ 3.9、Rust ≥ 1.70、Maturin ≥ 1.12。

python -m venv .venv && .venv\Scripts\activate
pip install maturin pytest pandas polars
maturin develop --release
pytest tests/ -v

从 mootdx 迁移

mootdx mitdx 变化
from mootdx.reader import Reader from mitdx.reader import Reader 包名
Reader.factory(market='std', tdxdir=...) 相同
reader.daily(symbol='600036') 相同
Quotes.factory(market='std') 相同
q.bars(symbol=..., offset=10) q.bars(symbol=..., count=10) offsetcount
q.stock_count(market=MARKET_SH) 相同
q.stocks(market=MARKET_SH) 相同
q.stock_all() 相同
from mootdx.consts import MARKET_SH from mitdx.consts import MARKET_SH 包名

License

MIT

Project details


Download files

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

Source Distribution

mitdx-1.1.8.tar.gz (8.6 MB view details)

Uploaded Source

Built Distributions

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

mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp314-cp314-win_amd64.whl (362.2 kB view details)

Uploaded CPython 3.14Windows x86-64

mitdx-1.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp314-cp314-macosx_11_0_arm64.whl (432.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mitdx-1.1.8-cp314-cp314-macosx_10_12_x86_64.whl (439.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mitdx-1.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp313-cp313-win_amd64.whl (362.0 kB view details)

Uploaded CPython 3.13Windows x86-64

mitdx-1.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp313-cp313-macosx_11_0_arm64.whl (432.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mitdx-1.1.8-cp313-cp313-macosx_10_12_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mitdx-1.1.8-cp312-cp312-win_amd64.whl (362.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mitdx-1.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp312-cp312-macosx_11_0_arm64.whl (433.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mitdx-1.1.8-cp312-cp312-macosx_10_12_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mitdx-1.1.8-cp311-cp311-win_amd64.whl (363.9 kB view details)

Uploaded CPython 3.11Windows x86-64

mitdx-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp311-cp311-macosx_11_0_arm64.whl (434.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mitdx-1.1.8-cp311-cp311-macosx_10_12_x86_64.whl (441.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mitdx-1.1.8-cp310-cp310-win_amd64.whl (363.8 kB view details)

Uploaded CPython 3.10Windows x86-64

mitdx-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mitdx-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mitdx-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file mitdx-1.1.8.tar.gz.

File metadata

  • Download URL: mitdx-1.1.8.tar.gz
  • Upload date:
  • Size: 8.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8.tar.gz
Algorithm Hash digest
SHA256 2ac48285042783e0e514e28d23944d628028418b6d0e3983f89e8ccdd89b8530
MD5 f2aef97f63997b88de4329317c36362b
BLAKE2b-256 fd458665a98634c7dac4d7e2389d570df04c1d7e2f37708acf31d76ea7719aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8.tar.gz:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 356d43114576c41b6301a377e27673fa558baf84943f6fa8c134db94bd894c5d
MD5 6026fb9943e0daf76cbd283916a7c4d1
BLAKE2b-256 e93d34058aedd11249972556d99a9b9dbeb36aaacc427305a20b03cee98a15b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 695968f52500326019ba047c3fc5bae9f285db998d831b748f9764f62f6441f9
MD5 917dd2ab34224e990e6fda523733818f
BLAKE2b-256 8a7ea1bf72619c82c2895c361450244ac0bbbdbf514ace7e56d1ceaeba9fe1f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29f0d38eee6dd3cc80f5731b0f7024da270d06116f42ed759bd1d7ccf3b926b0
MD5 c7df942902e1676274088e9440c48438
BLAKE2b-256 59cdc3f2828eed4741e6bdceacbdcd0de5518dd9e71c50baebf9c35a859af8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 362.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd0e84039aac61382c910e1b3b6d0f6a56d9ac9ec6b2d6b2648636b2a1fb9be7
MD5 bc6d8c49d7aabf7fc92f093974d300fc
BLAKE2b-256 a6cdb63770dfe0af420a468ee371a56deb5dc3cc2da1601be39ced07ec56384e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b374daefd6734e5e00ba42c70adb576298e9f2b727dbe5d67ae6b3e7f951891d
MD5 6635abec49690ff60e4fc305dc38eaf4
BLAKE2b-256 59c4875666cb664e719d9a5f4fb8e45550c1eb5270342c1470b928a47b00ead8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42cd52f9025092d986d74247f1b7b03decd613d1641999abc0279a1e28876a2d
MD5 655a9e5b25e28fce469e5b0dab891bd4
BLAKE2b-256 cf4c5048786320c10f1dcc68389491caa7c4d2f028e89ad93bebc1622f27efb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65fe4dd7e22281a3ef76f0df9f7cc09825fccf6e17a289e44d74415b0d5e938f
MD5 c3548cd4686ae8ed3e92096215f78dda
BLAKE2b-256 18df39c6668de9a0a2cd7cbdd74e55e55fcf179b792959ff889b558d354c0bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57aa6c0ffd4853313107b3f3e8541738f004bf3a9b5aa967802971226a9f0904
MD5 169d1b31674014972988bd0606e5cec6
BLAKE2b-256 f01605c46c6c497519fe5b7b4196440e33f0659157d27fe2ac040895c15c22aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585c7efa26c91b97c0ebb36226932edab514539c87c5c8dff1d4e7e306f55771
MD5 9a6987af962e5d19ce30a2a1203d6f62
BLAKE2b-256 55378de9d8cf74f46af04f83a88b70a2e17db86fa22f5af32377056dd22eb940

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c8723dc7fe164d27984a56d2012ea94e029cf1c9fcb24a049977da048a86a082
MD5 2443f8e22d726845c24eca5e6fc1bcc4
BLAKE2b-256 37e1be687afa0aa71f195d8f95aec451452013433bb5dc456f1670a44c08695a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4ed0de50ac95f745303eacc369ee2ae10a11975ea272c731b914b346200d819
MD5 1abc6b6fba2aae4f55fda634e2810308
BLAKE2b-256 f74b41e0c075df2497ae30f86e5b309f3973a69909ec45ad94b3f4a69e805223

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b28bba5357242739269a298beb5fee2cad289e0806dad8e6023f608d9c876f6
MD5 2d4a0e6501bb829543ae62a18b067e4c
BLAKE2b-256 887eaec7b504d25b2b2a80e6345e41a115cda1ccd1374d955db56c2f92f8c16a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a563406d9044916b87de6ecd4f6f2496cf4f31cc69c67813b39a230ea8fc55c3
MD5 7b513fc3f8a9ef276f4445c62d459b35
BLAKE2b-256 0c1f42ae09a7667393b39907b8f4b0ecd337d66317b8b58e8e410080197df539

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f3797c57cd027fea43212112f7ae0e94e5dfb72f1f2b2e6a1d2bd698cec6422
MD5 c6feb80495e902d160c675a21ff870f3
BLAKE2b-256 b24b2c6976f2cbb2b05807d83fa45cb7b43d016053dec637a96beebb44b721d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5492b91bbbea3a0afbd591d29e92a54e76b8faea604338c46e0c096d22666434
MD5 e52686aa1d7954d6159dc5ee86f08e02
BLAKE2b-256 daab4a21967edb5a3b48220ade6b23835a69d74a7623ce14ce7f8ff844696704

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a9de231eee8dad3bddc99ee367abebabda46405cba06e8cc750e20b75af6cc1
MD5 837b3263feef74e89500fd1dfea6be71
BLAKE2b-256 1d43be43c591d30a98784e8c39a231613f80f0e4ab1bf0e3f04a15e48dd02fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac6bbf1351e84ee465daf45d2db53661826f9eff8034affdd53252926c29dc99
MD5 a828e2916d00728882320c42c15cfcfe
BLAKE2b-256 9baed1d663d2c9ef368e02f754f88d2ee53e5a938cdda897d99aa8440954579f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fa508e32f9357eb49c35967a4dc67a42bf193626b5a6673d90bc70ae1ebee39
MD5 d9cc513062a46fa12fba8f382b8e713a
BLAKE2b-256 4d30959112e1c73db253cd26e8d9309b55c081973e3ee807dd406270c4694c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 092808b53d71df5e127cde2e7d68563b32b1f7230d128b6e6d75c83ddaa6a2fb
MD5 b51e7bd57513a8dddad7d7f63ba1e71b
BLAKE2b-256 b50f6ec4709869561dee0148fa55ec15bcb753657a084fbb74665baa055e39bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 363.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e199e4a11dfa5f1136589049e667d542e0b00b5f7515bc4b9763d9df6be44cc5
MD5 29cb36535041a0c2076c09bf6c9a4f21
BLAKE2b-256 2cfad6d2769551e54382edb0cce8b62a845324a52ce99cc227db51fd685bc8a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b387b2e3c1a25ccf9e0ac18ea559727640b361e0fad0cf1c97d026ddf007138
MD5 e59b73785414e77948765d87a9a92cfb
BLAKE2b-256 78ccbd5b88996a18092a933021a27eb4958f58e64a10630e2649c63bf00e2e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16144ab337a0b40ddd162ad8e93dcdfbf5e75bcb0fb9bfb63a7e79fa33b3b7d4
MD5 528cc4bd6ac76c6998634a0402e868df
BLAKE2b-256 07bd1e715bffd87826f10eabe34908b9ede1c99181e7e12388511f64b3a2cf4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e18f07077bd33b82ec14d95d1f48c7301a3645bf6c48a6d082b43afeff0ca275
MD5 f5bd7839ab4fcd7a2562140eecd5562d
BLAKE2b-256 8b4414612093c46768e15dcf8af74b2e1a4cff0d9fc2ca187c540c2bf0276e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef705c6df97b8012929ac9e0dcddfda1312883e5b85c16d33a147db5c9ddaf9d
MD5 8b83190b35c80c5e42448c7d9926f09d
BLAKE2b-256 18b4638ce2f3220083d20760342bedae08761d99dce929c10ee35fdd3ee03ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 363.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mitdx-1.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e54aa7ee5f22cd1fe8f747d9d7e924514cb7f9eef6fb18f7cf0d42467808dcb
MD5 5eebc8254e30b17aab5a889d7e57ed40
BLAKE2b-256 705b9af6acc44e3d3e3f3384d65d982730969d8fc0481e355339713a67ef2075

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88b7f333f256bc7aada4b07b39f49845558e31d8fcec87a8435724267ddf5bc3
MD5 0d36ea8d710af819f9b3dfd5ea30756d
BLAKE2b-256 5ca17af546f6fe0ba210143a192b369857b987cea9423695b010a4eca8fea430

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8773c39c5e5337257cd77e991398e24df5fa8fab175156f28cae098b9eb69b1
MD5 cadec027dcaa8110af22b4b04c7bdb65
BLAKE2b-256 0fd37cefaade9a5b1176831f251366571c2be14477b54580bdd3619135dae13e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71d5d74be15612be0d0de478f60e904021b0dbc077a4973278e6fc8564adf44d
MD5 e5fd6e6be2a9712e88edf50458251483
BLAKE2b-256 a5bb7eb51413e993cd57d0e4e0d2bfe1668fd74c6a6ee8c3861719bfba333964

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Michaol/mitdx

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

File details

Details for the file mitdx-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2382078b76d22bb882dc97f93614c06dbd0d098b47c1c74d69a8a5bb820ba6e3
MD5 2827939b7bde09c760fbb0608a2bf24b
BLAKE2b-256 f2a1cc0dc9651102b9adb8363dc49c5eab35314a4daa99ff17d30ebe2b7dda39

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Michaol/mitdx

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 Pingdom Monitoring Sentry Error logging StatusPage Status page