Skip to main content

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

Project description

mitdx

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

PyPI Python License Quality Gate Status

Changelog

v1.1.6 (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.6.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.6-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.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mitdx-1.1.6-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.6-cp314-cp314-win_amd64.whl (357.2 kB view details)

Uploaded CPython 3.14Windows x86-64

mitdx-1.1.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (427.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

mitdx-1.1.6-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.6-cp313-cp313-win_amd64.whl (357.1 kB view details)

Uploaded CPython 3.13Windows x86-64

mitdx-1.1.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (427.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mitdx-1.1.6-cp313-cp313-macosx_10_12_x86_64.whl (434.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

mitdx-1.1.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (427.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

mitdx-1.1.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (429.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

mitdx-1.1.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (429.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

mitdx-1.1.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: mitdx-1.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 7a1e5192ba606b67bb1ebee93299c378e551a299becc3d48ddb75402a7d8824e
MD5 56caedb93e22e6ecb71e4a024e0b58f0
BLAKE2b-256 c5578eebee1f4b75ea478185bab82070fc260a1d1fbfe46c8f5d3a15d4d5209a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 875402722cc87bd93a5ffd55ff291c8ca274d1642cbc755e13555d7218a509d6
MD5 857c92b430ac5dcc79f08dbbc0b25518
BLAKE2b-256 a7ce16059fdb32c7e4c9ae7dd7a0cec875a56d079ebef7c4f218df9c1dbb9988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4049ac7a7687ed4f2715c202d4e7dd4eb6f5ef0fead794236f156ccafa2a72c
MD5 b881058c0bd267cee8e8c8a7903eaf68
BLAKE2b-256 aae4ed23bf27a1de453d1018a9257b3b76c63300b92497b6028e2b9e8304b22a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07ac1e546b9499e448be1e803beaf59541a3c109147609c73b4caef271352ef8
MD5 bb70f5d68440e29655d917c1796623ff
BLAKE2b-256 70e8eae5473fe57f86860d3ec24282a66bc0f6526ec56a0a47ac09e385a71234

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mitdx-1.1.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 39304b47b13c15f45105ab5d5c79ca984070b5f90799a3493809de72621115c9
MD5 ae4e4c0398763222463b97065b66ef19
BLAKE2b-256 b2213a2e5b36dbcaec8bd074ca62922f8c74cd199ad4a355317912a01a6e3d3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7719a65142ef73cfbe748cc73772ddbc5762321548ae44c430ac7359ca3ca43
MD5 e08869434917d37be4607850479a233b
BLAKE2b-256 ac216ea8755cb797715ec30ea7ba60ebf390243cce6b147071e26cb7629255dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63fe44f1cbfb160ef7116dbdeca5cb542b572ea33f6c015e9d2f7da30212b498
MD5 c245154e205a201a0c7772cafd7d2e4b
BLAKE2b-256 f90c49d6ada18dd5227a881bf478cf2dbfd5a395248d70c45ef3854f4c0c63ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 086621e10e759ca3dcc738f02a297a7b686e8715ce625afecba06c78a60bb4c4
MD5 c7e9df5568f8cfb9d3e823e1fc54afb1
BLAKE2b-256 a42badf331b1309a9b46d98bfd9e722cd06c161dc1c927765a1339a7f3b31f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35be0adbc08c31e1c96611eaacbe998ec9ecf99614c384736f7def19c0fce6c7
MD5 5462fa90960879e6664a588159751f88
BLAKE2b-256 3e4b462bf6e9bdc1588f1ece99a6650c5a825f376b8d46659959f484fd993db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4d2ac21a1651df870c3e6a5a4c43e25f3bbeda5ca3ae065a19b0bb08adde4be
MD5 36ea63e673a2685870181784d87831c6
BLAKE2b-256 8ccb4f21179f2a8ab6cfd6d233f9f09ef92f1ad3b11da226e4df856f17cef0bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mitdx-1.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 33a9b55bc172f9aadb8391fa631c15a76d5861377266bf60beaf20a93c3bec58
MD5 3d75cd5fd62a6dea1593395ca9febbd1
BLAKE2b-256 c66f1ff951bc4f62153a720fb22ecd123cf303aa55492fd2f568098d8c4182e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e48e936977dc6943959b4a3653caf52602a7c218409fab90fc1f65a149251bc
MD5 0a8686596ac25d09626af89702e67896
BLAKE2b-256 ccf050fe50729db6a97bed080cf7434206641d848b72289c6b4ba618e4a18ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cbe94bb4222d8e2bf4ea0c5d19052a3f5a776587f8ce99ff6f3e3c5e7fe9a77
MD5 5f5bd1cf138afbd03659a2d241969716
BLAKE2b-256 1e100d2ebc5bf58cfed24e8496f955fc5b9372e1a8ded588d0edba7db81f05ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25787e32a212b29af20c4d753d051ec48539cbcfbf496ca008be0266eb960579
MD5 a4681c590ed27e75932be7d8a931c1d5
BLAKE2b-256 2131007a0985e2d2158e8b8681c0eaa2e6fc9b5cd4706a0ff9e3bae30d2f0029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11d64ce50cff4c5562139a6e32ed505b7a86a35a8782c986e5ac6619f8a43d70
MD5 9e971301216f786a16b788a428e145b6
BLAKE2b-256 9eb9e221961808c2480e678f5a0b61049978c470eda4884e4faa47e6594b51b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mitdx-1.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0db09b406314f2de178e9f503feb21c61488273c234e7a5b57219e5125c42f59
MD5 f1b8363132ff92aa8d3bea942a27a54b
BLAKE2b-256 35c2e022abf8f1878d322a74d92c7a1452c6ec8ce0e5b005661f37d27508bdc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c85a94d140ee5f46b3554793b911a78e100da4be963c0fa4f365b526fcfaebc1
MD5 e0b295a2583cf844c6b369e257cd0ef0
BLAKE2b-256 ea97fa78cc54eb593864b07832f3d207ddcdf7059c51225830a380a5186dc516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a0ef02ef78cbe1a02c73b19452a3c347be177d5f32c660f074e9c3ddfef6346
MD5 603de82d30d57b0700eb8cd9c8a1308c
BLAKE2b-256 921db7b6e2859584b7798361eb5cebe85040de97dafecbdae2157aec7353230a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00d22d271de8176914354d33d451876d384c8dc658f8dd261fc63b5803a907a1
MD5 2f09a2bed3562cd195906e16155dd279
BLAKE2b-256 e9018f3128573b724d3c60d9d3fb1ecf485c049332591c2697199c84e3a7085d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8230dd5b6710a5f23da36c82e871578aa569cd81702ef302ea4aedc535f3177
MD5 04be6a399d72dc0d75e461a7185b1aef
BLAKE2b-256 52ef3dced489f0df1287461c2812ac4ed84efe9944ff2ffae84ece9eab319ed9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mitdx-1.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60b31c55dfb01fc0e9aa0bd96409bf0fe3c538e645fe46e61d5ba7f1774c6d7c
MD5 7d200aae2d2fbe14d3ea20c2d766623a
BLAKE2b-256 5170c75b32af78640c80614244786bdbfbea832311652e387c51132f68f08824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e348ec9835642f375346b1eafa64cc09a7739d10922d639c2ad21e74e93acf54
MD5 65876a0a61060ac38a646da110b17e89
BLAKE2b-256 f775d7502d263a0ebcc67973b938836368238505edda88e28faea16803e88ac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb66236e458f41fb821c94d51fa13233264a853e365d98e482ac5c392117b69f
MD5 9c2931866008f50cd1a850cff5fe0ec1
BLAKE2b-256 b3b10a5eca928834f201fb2b09dc8e74622809f074e85985f11d403cf52a80e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 814177b5a4639ec2a4129040b0d09b8d3e9f2888764c75c4b3b08bdcfda3298f
MD5 1995fd12101310dc895b1b77a8d8e178
BLAKE2b-256 9e1124125c787da68bdc62fec46033309f125ed056b8258dc1f94a9fc7830a0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a45c9e4d72634f6e5b15b9ea093ec346597113343099d3627e7ae4079c99834
MD5 8c32166bd41ddc951088d5eeaded4955
BLAKE2b-256 75f1a75ee559d98c01243ad55c2a864bda856fa254b3b54e6b4f9a14ca520e84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: mitdx-1.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 415a23500fea0bd64b54faf05d9ef6c39ac817fe6ac0d7da96956f535bfc5b95
MD5 341714f6c536b44318349c90b3cbd5ca
BLAKE2b-256 a648a270c6ea15622c851b9d5e5bf8ba629eddcce8b6e3b6202dcef593f7d576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aafa1ffe172ee81238475b4eced45ed735497f6b641bd74e55dbf49bd4b3cabf
MD5 a13aba44fe93f70ca11204d48b7203d8
BLAKE2b-256 80bed9ca51378fb07eb1b0bd9ddf3511bf648487a12cc8d595ebbffde1f496c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f6471b92944d2683369beca815a9378fc30445f9068d6eab65ade37ea57c2db
MD5 7a5a5f5b40d332ac7f4122bfbddbdc9e
BLAKE2b-256 13f1fdb28294cca469a9705d4d12efbb934816ae0200455151afc7052879ae22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 252e838a39dd29f7330b1de4604d584a6dbdf6f874641f8d2357f9fd6b04427e
MD5 715ef40d180a9b7547fe04983ed73027
BLAKE2b-256 a79f43dc834c77b2adc0d2c9e194354d303504cc70a10048e56934c748e44e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec4a832c73ca62cae2fec9ad5db9ef61dd4a3d0cfa47042a1e8d74cd9d5f206b
MD5 81926552351e95877b2a651963f846cb
BLAKE2b-256 43d040a36588464ce25bc45ceaf5fdbbb5fdefb709f5f79c4a4abe4be98284c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56270411adfdc3fa4a7f15dc5604a338731d80488b977cd98de4f0fe6a6d415b
MD5 101dce464327a39d0f1da60228935960
BLAKE2b-256 8a212fdcf8af1995f610dc294d393ebe345086b5507902e2fb14a1c3ab1c4b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mitdx-1.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87cdae0e900ea35449a4ecc16b987ac87bcba704908d130ca21dacce75988500
MD5 80736ecba637505724361090d93e76e0
BLAKE2b-256 72c91a767604681ed821ec6de19ad0155dca7ebc5e867e9105ab749d17df992c

See more details on using hashes here.

Provenance

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