Skip to main content

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

Project description

mitdx

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

PyPI Python License Quality Gate Status

Changelog

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

with Quotes.factory(market='std') as q:
    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')                               # 财务数据 (xdxr 别名)
    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。

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)
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 转换
├── 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

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.7.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.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mitdx-1.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp314-cp314-win_amd64.whl (357.2 kB view details)

Uploaded CPython 3.14Windows x86-64

mitdx-1.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp314-cp314-macosx_11_0_arm64.whl (427.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mitdx-1.1.7-cp314-cp314-macosx_10_12_x86_64.whl (434.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mitdx-1.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp313-cp313-win_amd64.whl (357.1 kB view details)

Uploaded CPython 3.13Windows x86-64

mitdx-1.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp313-cp313-macosx_11_0_arm64.whl (427.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mitdx-1.1.7-cp313-cp313-macosx_10_12_x86_64.whl (434.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mitdx-1.1.7-cp312-cp312-win_amd64.whl (357.1 kB view details)

Uploaded CPython 3.12Windows x86-64

mitdx-1.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp312-cp312-macosx_11_0_arm64.whl (427.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mitdx-1.1.7-cp312-cp312-macosx_10_12_x86_64.whl (434.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mitdx-1.1.7-cp311-cp311-win_amd64.whl (358.7 kB view details)

Uploaded CPython 3.11Windows x86-64

mitdx-1.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp311-cp311-macosx_11_0_arm64.whl (429.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mitdx-1.1.7-cp311-cp311-macosx_10_12_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mitdx-1.1.7-cp310-cp310-win_amd64.whl (358.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mitdx-1.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mitdx-1.1.7-cp310-cp310-macosx_11_0_arm64.whl (429.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mitdx-1.1.7-cp310-cp310-macosx_10_12_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

mitdx-1.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mitdx-1.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: mitdx-1.1.7.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.7.tar.gz
Algorithm Hash digest
SHA256 d0488f92b55b5d7dcbd608debd97ddc6e12c023deda43fbcc11e717682652051
MD5 10cc549baa3ff238c1dc3d5075178e85
BLAKE2b-256 9b923a4fc3b7c24af17611277b7491e5c2f9da9ed02213e8976ea36e888ef67a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7.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.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e26638da025fa6c8a36e02517085edc581b4ef64d5b56942776e53a6b6d0965e
MD5 143be348fac845726bf6c74a62844855
BLAKE2b-256 f2b65d7f94a2f14e4a7140541c5dce25c7eb0e5fbe1bdfdc2d83cb5b653efd19

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6177089cb6b00bf8fa3fef98156d7073a6f1690fa9c71840d176425ab57281cc
MD5 fd7414def32858baf367e2e7e7bde50c
BLAKE2b-256 7f2d2de602a9e8944e08179aaae2f2a5f9f9828495d1d0c24cf223c7ab4be2db

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8d0627d9f9b040edbe8a6439eb34ec94207ead2ca7b3c429d0a7253f174d117
MD5 224b3acce1e0043b7b38dd7fee0d92fa
BLAKE2b-256 2cb12626556a651d98b2a6306c712401cc4cb72e9fca94c59c721f50d4f5005b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 357.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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f3ec9104a691d81f09b36179506e8b32604f5f6d129b3b57c6cfd482531bbd1f
MD5 72e7352fd575223762bc7ccb28652489
BLAKE2b-256 e6bab076c045a8dc4ebe7d35c77d5ae7b692926cc4c099830b157f04155c39f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 571c3926bfe9c62c94384ee3ab9baa879e7b5b1e7c3e3cb51af415eaddb408b4
MD5 8c5c82b52969078d21bdbd2d41c36eda
BLAKE2b-256 096fee3e804cce60b7d8360925b49d82f11670d9505f44bdeb05705fecf77797

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d531b5c8c8edd01070665f9e588c141168a7b1ef453156a0b6e190f167589475
MD5 fbc6f429cfef2e20853e8822b6698b35
BLAKE2b-256 d3c19e0bb4e5a1b0568a766f6e8f6eac5a8def7659f671fda1b084252974a070

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff07aedb0d9a2408c69b7d17c9beeed80e9819aead6132a058647c25ae0d29a1
MD5 3aa74f0ee7a9e24de429fd6790885633
BLAKE2b-256 684c61c74e719dde4438adac583fa56e718aa16c7ec7e370f48e601bcd5167b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56c585d612b902bcfe5593a736f3c261bfc003bd2aad6b6adf931bb1379b0e0f
MD5 b7e70893c6f374883fe73e49630c864a
BLAKE2b-256 68c7f93979d2f11e9a2d8089ffaeba29aa45a6ce04847fc4afe5aa4709aec278

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2f27eac94d97b09d3e120925fb62ac7d8e49fe172b0959d759075f7f377d16e
MD5 0b75e04cb9b5d35afab98a9a075959e8
BLAKE2b-256 a912a936a77d877cd53d913a19e6bc56fb3fbacce5577132cf6f44f428298d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 357.1 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd273a9ff942d61dac4e1bea0b38f0abd1b373d57423dce366597a6d8fb12935
MD5 daf4e848adc045586506ad8b99e7860f
BLAKE2b-256 76ef47103eb5518ba61963046d807d2080f3c818825d92bbbb8c07f5d6967a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6de87c31503e5e53325a895df433ebe607750b8184c9b12f85d4dedaca452b91
MD5 5b380bcdf4ed5d71f465f372ce7782b9
BLAKE2b-256 c285947034ffcec1619696c5cbfc3657f0dd70ace09bffef359448bd60b1d324

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bbbb1f2469356a37d109ebe5394e2ceafb04b4cfa3df78473f913cfe4034a8f
MD5 ea9db9b1db3a02acb88952949617fdb7
BLAKE2b-256 12811a87b04895c553522b740b4030e547ece27608528567e35b8eb877178369

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c8d78379f40e92b74275907d064d2f77915223d0304b86e7a741aa94660d775
MD5 b5d92906e34b0ce3f1f3bdbc05284f46
BLAKE2b-256 d27fc1b831f125f87ec4f675a1ffc98071206b811a7e779916826809fc0e3f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 017d30036be2108d1c94e0b3fa837417e94f9980f538d6b22403062782072e9a
MD5 4bca12bc19b003e3912110fad1a4fe3e
BLAKE2b-256 0906baee31d3532ebc8095ea455a6c7936a2a5d0b58b203305b9546fde9b1d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 357.1 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 56a2c2b49fbe5cf4816e61f75faf7a7db145e798568a267ae232f5a1f31b739a
MD5 c952f1fe7081d029e5000fcde8de2c42
BLAKE2b-256 513c808d798f156597904ece9a13bef18e5ce4a815ef3c24fb9baa532381daf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e3db44ebf1a946766efed9ca42605fe681f3b0d6baa453c552dc65db255f99c
MD5 ae177e911a2839a41238d29ea03f7230
BLAKE2b-256 245ae03f6042968337200797d344a3f2809ee330b79276c234cc7d5ab63ee5f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f384b9cde29b646b408491fd1fc4310d107d3520873ee71b0a3081152afc8a0b
MD5 39b55a44c8f9dadd32195151b43254e2
BLAKE2b-256 25c162cb799286d4a5899237c1e5b4679b545223c532ee58a77780fd03716cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6ced63eebe391c6fe9b64a02a7f89395761b3c9be451fb799196a3f93c5fcb
MD5 866e9857e744b1bd1ee8362a15a3244f
BLAKE2b-256 d2afc718bc213a905c97979e18385218bbf092c231b1070d2d151e51c3e36319

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 123015e1134feaa5d9031a81602d61187bf0952bae01fcc58a13960b0e59f881
MD5 d626dc6e7ffd5ead6230c40addd46434
BLAKE2b-256 b67cc42bfe05adf5d6ab792bcad10cd04b8c14aeb5d426c1c4ccac794d638018

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 358.7 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 79a2c67fa14a7484b2c2a17f83d1626e716b8b554cce5f95edc49b70da6032c1
MD5 6e20b481ac05c29ddadae745672b8ccd
BLAKE2b-256 478a4ae59ad38fbcde670e692071f92c13f0764b4fd0d4a0a68696908b231b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48898efd3433934a9ed0de79e667b9bb58b11d271165094fcbdcd4a35c940562
MD5 4d721abdd707281f3f1ea43b6b3ced80
BLAKE2b-256 3e40bc6be213c6b9933af07bae9ea296faed2ac935566c7363ed5a225ffb7550

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47fc95a1dfec6b9becebe6016fb593c8de289885317cd3e23195cdda095e854c
MD5 5b51ed7fdbf7269a2fda2845b949cfa2
BLAKE2b-256 f3e15e4cac3be530419bc935589a241a9d461929bf7322a3b4034eaab12c9b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69fef0b48d5f06c7d92894c27b575fe4dbe6bf863bf4095b96385d8d61cf6f41
MD5 6432902a80e79ca860f88c5ac171494d
BLAKE2b-256 a39da38fdc40f3e3f6cf6a680cd02046b5ca9248a9074bb41b2c0dc2147257d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c5efb423cc15ba66a0fd7682889c7cd5ac6d5121fcfd84dfb376ec90e0aa7f5
MD5 293cb5a635607e7dd38d7f7b176e7658
BLAKE2b-256 42f113d580369c81a5ac8ab923a29933ff274efbdde8b9d9ec455712e3fab569

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mitdx-1.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 358.6 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 39c866a28d64e1a89d66b449b422f0821909b35ab685291918466ef8a8f55f97
MD5 664f56e7af889a2224b9d905c0a528c3
BLAKE2b-256 1308f617d26042c9db494ab7030adc3142564bb74c2dbf029c80a33cc589ce10

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baed0dca7ab8322ce7ed1c25e3c553f97152c2e4e9e0e0b3be6b0e393e9eb485
MD5 cd4c027a43e687f853ae772158f5a8fa
BLAKE2b-256 85c0eb3864d4c85e4215164d48c8a0eb911b3dca92dbd08ef300311a2cfbb994

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 673e565a04df739272550d0dc5bdd4e93e30271ed247e685341862965576d6d3
MD5 eea1adc045f763dd218532ed5492b747
BLAKE2b-256 c0ed3c15beca8354fbefb336b700b6a3a3039506e16229e89e3e7ea15c425327

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac75b9012f64f49919ce6815b6afec9f27180e8098b69131694939548dd10d67
MD5 dfb77664e1079f452cff030624d01ba5
BLAKE2b-256 e5e2707ed31c545fce728af4cf5b4ec77f753837dde1c185194fbb2759b07bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-cp310-cp310-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.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c349cbc6c7c5f0e7f390697b586ca1d57f714b7d4441706a284247ebe56edabe
MD5 07c2335b5636a2880b22fd4df44d2793
BLAKE2b-256 0c4a2548bbb0123e60ebafb4f469d48a0f062c140359f0b7c3e0c4b27d6c0b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-cp310-cp310-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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0c35cd5ba7df9b54039f4cc5de36d4171492f21fc577bfe9f4baca3ff1f18b6
MD5 aa60672211588949fa500d045cf22b78
BLAKE2b-256 64f46b1df433fe4e18c0e18255745d54b39b8b69deeaf66516a81e5141d3be63

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mitdx-1.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0f89380ed9e06c3ea82633108d9841ab7139e5dadecea648bffb3be7f11bb73
MD5 8c51702bffe1b2740b31dcdd2da4d402
BLAKE2b-256 44b10b7fa1191345ae272b348760467dceaa8fe127be84bedd637a9cee7b7eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mitdx-1.1.7-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