通达信数据高性能读取接口 (Rust + Python)
Project description
mitdx
通达信 (TDX) 市场数据接口,Rust 核心 + Python 封装。
Changelog
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) |
offset → count |
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mitdx-1.1.1.tar.gz.
File metadata
- Download URL: mitdx-1.1.1.tar.gz
- Upload date:
- Size: 8.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93fed450ceed1d45c5eb1a9e78d0c4a88f9e78c7b8b01b9a6686b6603d21bb54
|
|
| MD5 |
e51b9af4d219875fe57b2ae07d3be471
|
|
| BLAKE2b-256 |
64af142d25c3de2883dd9ac36cb08a084669b29bb51194e0f50f36e10b1dd49d
|
File details
Details for the file mitdx-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 458.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e0815b8b4d363952b998c16773047056a5812a702882613df04bf6bb087344f
|
|
| MD5 |
3746700511dd9e14541bcbee8edd61e8
|
|
| BLAKE2b-256 |
8c97288451396c4cecf343be22e306dff5832f6f9a77175b77d74fca027096a6
|
File details
Details for the file mitdx-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 447.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df07c972f50e50ac4ccc29f02a53b71c902cd25ca75fc6ca18c8696163cfd35a
|
|
| MD5 |
36e3ae69e0894422b7e942e3d7f7d6da
|
|
| BLAKE2b-256 |
e7b278531c8a646187987f308ac7b2bb6ea17d32bc358a873724b5646edda6bb
|
File details
Details for the file mitdx-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 444.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d9ea9d6d3fb8a32b93325288c8189de7c45843e7b4fc79d8531e0c9eb1c79ef
|
|
| MD5 |
748c09037078134f893063ee7f26e7d9
|
|
| BLAKE2b-256 |
d377cf13f2884b5fb3c3f8438cddaa2423db5e1d8e72512df9f054f7d465d41d
|
File details
Details for the file mitdx-1.1.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 356.0 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b7a2fec2cf9be4ab39824a05db1b5460d35a3b12c0a881da87656101b1e6c83
|
|
| MD5 |
2271ff90f9894a78bccaf855fcf4dcdd
|
|
| BLAKE2b-256 |
3f8f5830b8d035a3481e03a442bb5787df630abd3ee500f11f04f4b09c6924e2
|
File details
Details for the file mitdx-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 455.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ba118d1b54653dfccd950efd77580e6843e668f63b31b1ed90e217484800dd5
|
|
| MD5 |
3983bf68e60f869636a6737d2b5b0733
|
|
| BLAKE2b-256 |
c1d43078dfef8f172936d8225c316982cfedf1a2f98d40041cdb5495cc4a635d
|
File details
Details for the file mitdx-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 444.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39f733057d6e171be4e1080edf4f51b7f448289a8cf1b845687c9f395d34df9f
|
|
| MD5 |
cc206738a31977bb8540927e11aa17ee
|
|
| BLAKE2b-256 |
4bcc88c1a9d5e192e91e794857b707e135fe64637136c81d0d165c6d9fa09238
|
File details
Details for the file mitdx-1.1.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 426.3 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c88bed1770cf9d5abe254f804ac8c3b9708e78dec472ef57f403e3b9b8e6123b
|
|
| MD5 |
c2356d75093bc7f95c9d793d881416f8
|
|
| BLAKE2b-256 |
87888fe7f79f754fc13e6760345bd7824791d9084a01a7199ca3097ea6584e42
|
File details
Details for the file mitdx-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 433.6 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
472ba51a5a272854a2f8a4c69704b26c5840c4a40396310b61e4bfdaab9b165d
|
|
| MD5 |
00c191e299bfe395412a9b4a705da7f3
|
|
| BLAKE2b-256 |
204a042fb8a1d6fd3b219a8d4883a9eb0d2e537155dc95fd9f7be9ca35320afd
|
File details
Details for the file mitdx-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 444.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
924233b98254e5cc6e9cb31bd3c1b51d15e8c64e28f8654abc66c88b6c053a43
|
|
| MD5 |
a017ce366140ab33c56d725d368531c8
|
|
| BLAKE2b-256 |
02ec0a41e1604d1e6ac11b2af76a87a34756c3120f2da7b9b669855a374b01ed
|
File details
Details for the file mitdx-1.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 356.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23070bf68c1d8455e369af5ef9a6c295df5879a70826ca6683f9a76a1a1362fd
|
|
| MD5 |
ab7827dc439d108ae5ef0d4aefa70a45
|
|
| BLAKE2b-256 |
0b7be834a264752227a7394a21350a177f200a0ec43f01c6803d54fa7efb6be0
|
File details
Details for the file mitdx-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 455.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25f4882ae1877d35121ccf098e6b49c41b03bbab1b52bede00226d06c029b851
|
|
| MD5 |
c8a1bbb9f852656955bd25257e4018a6
|
|
| BLAKE2b-256 |
bb210aae694f20c19af6eda228fcc1fb12b7ba4c1c7be3ade0c402bad262eb89
|
File details
Details for the file mitdx-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 444.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04f43e19400704838db9e6a4e1ceef342de589f74ddae034436ee352b413e7fe
|
|
| MD5 |
0fd03565bece9b00e4ff65c9c085bb0d
|
|
| BLAKE2b-256 |
48a4554c0013a5306b4840ce3afda10feed8123a36ad2779c4cc728d93c15232
|
File details
Details for the file mitdx-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 426.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98093e7f2bcf052f8d8712871b2ec880cef01f6fdf097375b4af08ea409f42e7
|
|
| MD5 |
e129d10bc1e7e7e8adafafada0b557ed
|
|
| BLAKE2b-256 |
e027bfca26054e6fbaabce47dab20e626ecaf82d6eaf95a73106867bdabdfd38
|
File details
Details for the file mitdx-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 433.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d942156ad5e182de641e0b009628cef1420b4652bc2f4da8218b40cf6c29f42
|
|
| MD5 |
180177b910f00db36d71f767f3cf8f82
|
|
| BLAKE2b-256 |
0cae6d85bc5d89c994e09fe3bcb6fe34cb8a4c9e1548c75beedbb9f00614e237
|
File details
Details for the file mitdx-1.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 356.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae1bf82c441d2b1a2df5bd1def44ee1e9e8e5155b5163d86f56fad1bfc7961c
|
|
| MD5 |
ee57cb5b4d7bf008b6e691b47df4f6f0
|
|
| BLAKE2b-256 |
f2b2643c4f1ff127b7feeb7a999c1fc280e55557faa4795ad7e734b6f2b539c3
|
File details
Details for the file mitdx-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 455.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09acb6d77964e04481aa6ae0296839ff6c6e4222e5c155ec302bcf2c92100345
|
|
| MD5 |
7cc44d0034f3df80374b49685f007f1e
|
|
| BLAKE2b-256 |
9cc8543794b96cf0de8f0121ada8d5fcac26979463266dc173cd4a6e975d7ade
|
File details
Details for the file mitdx-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 444.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a81028d4f4f792477c5ed06fa3e93e7f1c4cc4a424e5c288323bee1add956d02
|
|
| MD5 |
962da3c761162d7c3c51c6829a71fcec
|
|
| BLAKE2b-256 |
ac9c77ca6856dc60cbd09ca442706ae0bc4a5475416c5e3058cb87ec2a518ff6
|
File details
Details for the file mitdx-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 426.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c28ada057d5ca43a414597652fed389dd5844e957c9a407394344a44f2b7e7cf
|
|
| MD5 |
08507a67a55f93057318b2f4041c88e2
|
|
| BLAKE2b-256 |
8551e64f14113028856f60640a0abb87417e628ab0dffd23712b2bc73a56b02e
|
File details
Details for the file mitdx-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 433.9 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c9abf72f82d20779a17976180a345e5b23b5e0202b6ed13236c9362d525eee3
|
|
| MD5 |
1e5a7e0f77d3e7dffbd578a807fd0ba8
|
|
| BLAKE2b-256 |
c2e34932316c497699f5d14b51b07b945cdf0c916593324a22371ab47653b188
|
File details
Details for the file mitdx-1.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 357.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7327d3b7e5e19c95e5a6311b105e80a01f58b6a4b643e212e1ab2ff400844627
|
|
| MD5 |
ee19f67fa9c256df9450cc87de20fadc
|
|
| BLAKE2b-256 |
d0fac52c015e70423acb8d5d6785daa567b2a6264963544e8262455ace6a8416
|
File details
Details for the file mitdx-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 457.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9398cc7ab7b6510d0cd6e89354d4408187e4be56332aaf0c80c6a3638d33ead6
|
|
| MD5 |
d399d8f8754872dd750f9b4885943639
|
|
| BLAKE2b-256 |
f03a83c44bde8750ac75c64f580dae3741255add8e3df94f06795e2f18ce6526
|
File details
Details for the file mitdx-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 447.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d686a4d65cae68adfba760a993af6a1ec976862d64dafbf7f46ec5fac88bc4f
|
|
| MD5 |
705025eddc09aced6fdc687df7839f6c
|
|
| BLAKE2b-256 |
b463f5cbb882550a1db5f3f1c900dcefc3565302b8e459c9d4d7b4640678c2c3
|
File details
Details for the file mitdx-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 428.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
175e04595ecb52fcabee8a60cfddd604f86d512e40bd9243f2e0f5e932b90a10
|
|
| MD5 |
3e07d6139a4e49bdcb7e5b81148abcb1
|
|
| BLAKE2b-256 |
c9eeb0dd64fd1ccd9458ad3347c71014b53fa2eb55f1c6d02107bdb3c4a9b3a0
|
File details
Details for the file mitdx-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 434.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5286df5b80570e34d6ca08871760fb8322721457419ea0b1edc29a967c1bc5fa
|
|
| MD5 |
586be32f5513e538495fad2b8d43f15d
|
|
| BLAKE2b-256 |
4e7f519d10f8ba38c5ad976e55485ba509acdc60b10974a162d35c54ff30601f
|
File details
Details for the file mitdx-1.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 357.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
815fdc018a80963be35a25cac1626a7ba543dded1707870e3958a5198c9d9ade
|
|
| MD5 |
46739e739972a0a3b3b85ab4b8698ffd
|
|
| BLAKE2b-256 |
a6eddc972ad85683df739aec9290353e1cf281279c780c1d1b0e7cc32e6926b0
|
File details
Details for the file mitdx-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 457.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14511cbf859bf1b7795945bf9a0532f4eb765d16234bc4b66862e5335e5999ac
|
|
| MD5 |
dc8dbe094b4cb2484538f8109135fc92
|
|
| BLAKE2b-256 |
946c7c11544e64353c70cfc1d500034ab55430ab055105d224e86cde5430ea7d
|
File details
Details for the file mitdx-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 447.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63415b4e13dfec19daee498d10fa3c2d5d6550fff85a6cdedfc3e7f67caab064
|
|
| MD5 |
e14117ff45747fd36061e130467a4395
|
|
| BLAKE2b-256 |
2089cd38f6165b128aa599f556e83b7548733670e1c8fa2bd5b7f77eb6e6242d
|
File details
Details for the file mitdx-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 428.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
506987ec0138ec247efdc08142e58ed1344ba7a6ee860961290529a7efb3801c
|
|
| MD5 |
19d2ad4a7b66bb312f1ecf0be0529423
|
|
| BLAKE2b-256 |
4d93761a5907393a08644c8d6b7ef0b110eb5f8cb34be09b4841df339972a919
|
File details
Details for the file mitdx-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 434.8 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d73ab5325f66c1fdd5fa0153302274e7cd22312264f7e633d9123c81e0702e17
|
|
| MD5 |
01d8d09c7cf13b1e38ba2d83c646733b
|
|
| BLAKE2b-256 |
1cab6a8f14373de8a655d748bdf3b62f8fd15317ef254bc915c8ed788d184838
|
File details
Details for the file mitdx-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f44b335325ea52b1f55119de9514a2ebbca72663b7c8f47162e68b890275e3fc
|
|
| MD5 |
6e5464f128ce058a5159396c6d08f2d1
|
|
| BLAKE2b-256 |
aaf3f566d503ecd2a1dc395dce22d70405e6de9a7d213355e22c9ed4b37e0a9f
|
File details
Details for the file mitdx-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: mitdx-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 448.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49b998de2fff373916bbaf3bb54c63a935a8459cd7414d1bc5a01d14a0a41f10
|
|
| MD5 |
0a9c949326c3ec75015a3d2196abdb45
|
|
| BLAKE2b-256 |
c3637fed1955504066bcfcb53e31c0835729b4df08b0dae06d73bfb236c16627
|