Skip to main content

dmPython

​ dmPython驱动是Python连接达梦数据库的原生驱动。允许Python程序直接连接到达梦数据库。模块由达梦数据库维护。

​ dmPython 是 DM 依据 Python DB API version 2.0 中 API 使用规定开发的数据库访问接口,Python 应用程序能够通过这些 API 对 DM 数据库进行访问。因 dmPython 通过调用 DM DPI 接口完成 Python 模块扩展,使用whl包安装时无需DPI,使用源码安装时需要配置DPI运行环境。

Installation

通过命令行执行以下命令:

pip install dmPython

详见 dmPython Installation

Samples

以下为一个基本例子,其余使用例子见dmPython接口详解:

import dmPython

conn = dmPython.connect('SYSDBA/Dmsys_123@localhost:5236/sch1')
cursor = conn.cursor()

cursor.execute("SELECT * FROM DUAL;")
result = cursor.fetchall()
for row in result:
    print(row)

Help

详细使用手册 dmPython接口详解

GitHub源码开源地址 GitHub

Error Handling

如遇到 dmPython.DatabaseError: [CODE:-70089]加密模块加载失败dmPython.DatabaseError: [CODE:-70089]Encryption module failed to load 表示当前系统中的ssl加密模块不满足需求,可以采用更新libssl至 1.1 及以上版本或者使用环境变量指向dmPython安装完成后在对应的python目录 Lib/site-packages目录 下的dmssl目录即可,如:

$ export LD_LIBRARY_PATH=/usr/local/lib/python3.13/site-packages/dmssl

Extensions

Change Logs

dmPython v2.5.38(2026-3-30)

  • 增加了连接时自定义服务名的连接方式

dmPython v2.5.37(2026-3-23)

  • 增加了对conn.cursor()接口上控制行结构转换类型的支持

dmPython v2.5.36(2026-2-5)

  • 增加了对密码中特殊字符的支持

dmPython v2.5.35(2026-1-23)

  • 修复了Connection.explain接口,输入SQL包含中文时报错的问题

dmPython v2.5.34(2026-1-16)

  • 修复了批量插入大量数据时,入库数据乱码的问题

dmPython v2.5.33(2026-1-15)

  • 增加了cursor.lazy_rowcount属性

dmPython v2.5.32(2025-11-6)

  • 修复了连接jdbc模式的dmgateway执行查询时报数组越界的问题

dmPython v2.5.31(2025-11-5)

  • 增加了对boolean类型的支持

dmPython v2.5.30(2025-9-3)

  • 修复了多线程并发释放连接的问题

dmPython v2.5.29(2025-7-31)

  • 增加了parse_type连接参数

dmPython v2.5.28(2025-7-21)

  • 修复了dmPython查询空间数据的问题

dmPython v2.5.27(2025-6-17)

  • 修复了dmPython没有对连接参数长度进行检查的问题

dmPython v2.5.26(2025-4-23)

  • 修复了dmPython使用executemany函数插入数据时,当字符类型数据中存在当前编码无法识别字符时会发生中断的问题

dmPython v2.5.25(2025-4-15)

  • 修复了dmPython查询大字段时,内存持续增长的问题

dmPython v2.5.24(2025-4-11)

  • 修复了dmPython.connect函数没有对输入参数user,password,server,schema长度进行判断的问题

dmPython v2.5.23(2025-4-11)

  • 修复了Connection.shutdown函数没有对输入参数长度进行判断的问题

dmPython v2.5.22(2025-2-25)

  • 兼容了Oracle在Number类型scale大于0并且为整数时,会输出其小数形式的处理方式

dmPython v2.5.21(2025-2-19)

  • 增加了对dmPython.CURSOR类型绑定参数执行的支持

dmPython v2.5.20(2025-1-20)

  • 修复了使用ipv6地址连接达梦数据库失败的问题。
  • 修复了当输入参数列中有大字段类型是,获取输出参数失败的问题。

dmPython v2.5.19(2025-1-6)

  • 修复了bit列值为null时,returning into输出参数报错的问题

dmPython v2.5.18(2024-12-31)

  • 增加了连接参数dmsvc_path,指定dm_svc.conf路径

dmPython v2.5.17(2024-12-26)

  • 更改了密码策略,不允许使用默认密码

dmPython v2.5.16(2024-11-22)

  • 修复了returning into输出参数类型为blob时,会导致程序奔溃的问题
  • 修复了dmPython读取bfile有父目录引用时,报错不正常的问题
  • 增加了dmPython安装时可以使用drivers目录作为DM_HOME目录的支持

dmPython v2.5.15(2024-11-20)

  • 修复了dmPython删除不存在的bfile目录时,会导致程序奔溃的问题
  • 修复了dmPython的callproc和callfunc函数中的sql注入问题
  • 兼容了dm7版本的dpi

dmPython v2.5.14(2024-11-19)

  • 修复了当update和delete语句影响行数为0时,returing into输出参数会导致程序奔溃的问题

dmPython v2.5.13(2024-11-14)

  • 修复了DM_HOME的搜索逻辑,会优先在当前目录搜索需要的动态库,然后才会去父目录搜索
  • 增加了在使用繁体中文时,使用不支持繁体中文编码的时的报错

dmPython v2.5.12(2024-11-13)

  • 修复了dmPython使用编码方式PG_ISO_8859_11,PG_KOI8R、PG_SQL_ASCII连接数据库报错的问题

dmPython v2.5.11(2024-9-20)

  • 修复了绑定参数输入blobl或clob数据时,程序奔溃的问题
  • 消除了Python3.12版本安装dmPython时的警告

dmPython v2.5.10(2024-9-20)

  • 修复了returning into输出参数返回多行结果时,无法输出空数据的问题

dmPython v2.5.9(2024-8-29)

  • 增加了对多租户连接参数的支持
  • 修复了游标读取bfile数据后,退出程序时报错资源清理出错的问题

dmPython v2.5.8(2024-7-3)

  • 修复了多线程下更新blob和clob数据会发生阻塞的问题
  • 增加了对nls_numeric_characters参数的支持,支持以字符串格式返回非标准时间类型
  • 修复了超长数据插入时的字符串截断问题

dmPython v2.5.7(2024-4-15)

  • 适配dpi prepare本地化的修复,调整了一些函数的使用顺序
  • 增加了returning into输出参数支持返回多行结果的支持

dmPython v2.5.6(2023-12-7)

  • 修复了获取变长字符串类型时,相关描述信息不准确的问题

dmPython v2.5.5(2023-11-8)

  • 增加了对Python3.12版本的支持

dmPython v2.5.4(2023-10-25)

  • 修复了数据库推荐类型为varchar,传入参数类型为int,数据类型转换失败的错误

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

dmpython-2.5.38-cp314-cp314-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.14Windows x86-64

dmpython-2.5.38-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp313-cp313-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.13Windows x86-64

dmpython-2.5.38-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp312-cp312-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.12Windows x86-64

dmpython-2.5.38-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp311-cp311-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.11Windows x86-64

dmpython-2.5.38-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp310-cp310-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.10Windows x86-64

dmpython-2.5.38-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp39-cp39-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.9Windows x86-64

dmpython-2.5.38-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp38-cp38-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.8Windows x86-64

dmpython-2.5.38-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dmpython-2.5.38-cp37-cp37m-win_amd64.whl (8.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

dmpython-2.5.38-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

dmpython-2.5.38-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

dmpython-2.5.38-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

File details

Details for the file dmpython-2.5.38-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 049a0c87c686eae4b8173204229bcf825bf29aa3ba58d35c1b0971e16b2171ce
MD5 5d6c20b704cea16ad293d180e07c10e5
BLAKE2b-256 473817b498e927c5f099fbb5d2d594ad0728e57ece8a59aa65fe98b5d1887674

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d33fecc3c84e3dbc7e2b50661d225c67a3f461824e30aaab21f97d1bbd2d897
MD5 102d2ecab398616d4cc0c62761b23897
BLAKE2b-256 ae828edfe81d9b1035dded504edff2e48bbbe51675f88bc4775b53a11ca0cdc8

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 712dcf683694acf0d4001aef0f3fcc6f18cd4c6420c1a25a9e3778d20f60cd02
MD5 b2234bfca4f1621aebc64519f3740528
BLAKE2b-256 37e2ffa95af48285e46b29ab9d008265cb17d278b0a50437945a229d27ae18e7

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2929b94722d282f07a9b808667d112eff0e52a4c2a80b8df34aaf13e6173e986
MD5 4b76ac3cc50111be70c014224ad0925b
BLAKE2b-256 b14a8e78d8f9803a09cf470dd8816a0c26a718825cac4f9c5a40ad6d8d452388

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a2d21589ab207b845ffa74912af8ae249350131b35fea0625c9621a5dc365623
MD5 2f4415d9d2a3002df910438b3b3332ae
BLAKE2b-256 435bc202a82ffe442a0297a1490fa5e25ca7f94ddde1e23bb36fe05a25eb4aab

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6e6f29187ab403650b8f8aa1ca7cb6b4257c1ad65492d8834f8ade135fa649f3
MD5 96de4f28dc57e5ae4efd92bba31ad5ad
BLAKE2b-256 e06d00138f4cf080a35f931026b433a7907220d8aefa64a6a861e78094c3bc88

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 f5e524657e3d8b72a9380ecefb05255668798251d109a6eef36fb24008c5ffb4
MD5 8f14becaaa2ddb4fcea0a487c895d936
BLAKE2b-256 88a6f86542187bf982910eea638cbae7647cd38988ac4a9200d9404a5588a260

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b3a82fac9b1f393d1b020126ce9c0f4c8ac5b7a757776d6425afd826f69a5ef
MD5 068f7d855ab351a1e6082bd2fe76fbdc
BLAKE2b-256 ec6d844a43309eb871eb052d295a4c05366d296abaa6066dd05bf46fccc178c9

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ce1b3d25a5062858ff47c4dc81cb5a2f40c7d4fae356d03a077afaa825a063ff
MD5 9e9630b0aa8edcee17fb96d00e928906
BLAKE2b-256 c11d81c9fe058737bc568ce1cf5d2304bb691ac5ab69df4b6043137c66ff6c9e

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 912a42985b80297967d50ff924de6ab0f9733819abc055d3bbcfe535a0ba10e9
MD5 654dffa02c191ef7d0d416d7f5774b14
BLAKE2b-256 4b63e0bb56ad5d91a87071fa0e7f80b50325b1a521b9a131b1279e68912d343c

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 6bc58f2f1b25ebcdca31ba99bd83f14be66ae66263644c0bb1e57bba2070e370
MD5 28cb1eb2f136275a596deb1c95f90792
BLAKE2b-256 03275c7196a21f1da4362fd95d1e81e8195237990837887a830194fe11c608c4

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b322f966ea7abf028018418cb7fc2baad83df86e53c4df4c78827c4405f9dbe2
MD5 9668123700bc3e5fa7444ed3fda5191b
BLAKE2b-256 fa0eb69d8aa5b26b1fd3f3bd0382b459ab63f4e31dcac6f56a747ff434452579

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a087fdb5ff4b46bdc4f6450c19a4149108855821bc35b88117aaf6e0749ad7c1
MD5 bdc721483b97c02287b00807244609b3
BLAKE2b-256 478ea7369d456538513bf654aed89bde46ab0c385c2152b573b0907e3645db7d

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a00983f34d0247791a37fb113397550a13e04f56202ce7506efba58619b095f6
MD5 66f61bf3191b44cf06e0222abbc6af11
BLAKE2b-256 372599450cbeb02acb12782b2e92094bbc7156f7a49ffd290cddcd518512e0ae

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 91a3dfc15ee2345308ce4854af35771001c8265b0563bd2f4f7ec3a3966be76b
MD5 af6a06791349a7acdef8271a3f1b03b7
BLAKE2b-256 cb6ec1169ad30c078a264210da52e6007d9d1801758beb8f347c5f8da0a8b234

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2db01f395bfd48e1e2e0c9120ef5ce9d4eca2fcfd8f7a9013ef06c96c556560
MD5 2edcfe0497b467d51e7315dafa210d39
BLAKE2b-256 ccb62be78db514cf55d85b5702433f1041fe0a783fadf7ca6f21ec13c4fcb61c

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e1cb6f228dbfa0686469819089ac8dc759344c90f57912bb2177d56968d7ea5f
MD5 700af78e6e0c5e1e61cb0b755bf09d5a
BLAKE2b-256 9b7542e77ea857436e995c89ba3b0987bc213bbb4d0802bebfbd10628bd7ece1

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 773f5da8106868618cb1e2f34c4e2dc07a3cf142b0fd832326176068bb06b16d
MD5 76882a65d01f3fae70153ac26fbf44a1
BLAKE2b-256 bdc2596ddb23d1ad9996f799bfcbeddaf10e03627bfb9d5ee6364f63c229389d

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 65b0700b363ee90b04613f164ff9a8db73223b65c4ba7162573d1e72bccccc1b
MD5 eef5d4cb92590be259a39821ec242008
BLAKE2b-256 30e8a367fdf14559f0b67e85c89acb80d83e2d1e7ed0aa11536c4c60890fb2a5

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a3be47c698b748d3a08349ead1a80a49b943d1c5101a3a9b091e69b9f62569ce
MD5 ecad158d2fc9e7dd534cd1b6a0313fc6
BLAKE2b-256 b1ac0791d2409edc224a14de5485f60c555501227851ab05fb5e81ddb29a76eb

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 82c29369e0cfc47547fd06c4d62341797f5d9faa1cbe44b47bd3d154b6c5b834
MD5 912fe3ce9ddb36a0ccb5a106287028d2
BLAKE2b-256 e654429dc3762a2829ef4d49bf5a8dd7afd29cf53e2f50270bb8c43f77929190

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 96eab7a78f09cc66d575b75f89cac614a23546ba5d9cbb05a2d6b2929bd33b3b
MD5 269807411ae8601566dc34ddc8b12d4b
BLAKE2b-256 083b8c2e83bc073c91a6dbaf066a11f744c78492d1b80ac0a034c85026c88f41

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 bd0ab18827c1862d5bbd411d92d9c2d40ecaec54c5c6e405185999d94c11f8ae
MD5 dfc16cf7c57d33f8c1792a842630f66d
BLAKE2b-256 8b532478a5a1134b4bd092408a37d1c50d85ad654a1817f7b90ae18c96603194

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 785281b3c8e380c4a1b8475a1bc417122c635b8d2632f2975647f74d508b1f93
MD5 b1172245ea81d43e6557eed97b024ddd
BLAKE2b-256 2dcc1d4a6d4183d997b4b17edd6c0381530c63dbf7eb7109765b070aa9cd3e57

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6456c093795a51a032cba00b1133fa23b08ed7afcdc1d84ec1427d75720aeee5
MD5 dcef537ea460fd94f369a8ccc54462e3
BLAKE2b-256 7dd9ee71a7777ddc33c92dbb23cf38804d8f2694a87070d6a19f4e80c7755920

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6960658d17ee8317e02f3923c7c656467ee81d8312103c5754a5204b1e27e68e
MD5 1c382b73388bb0d9d351148ddaaeb85f
BLAKE2b-256 9a77d682feb4a78812ef0af67db73fc7fd5c1f2255d1402d4a94bba44a2ac8c9

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 740050d1e0dabe6c36188663323487b988354c7944a6ee42adad02bd945bd3df
MD5 ab32c6e85d7496b1d44d9275f22a982b
BLAKE2b-256 13b410d7acbcb84ef1496bcb0d57be25d669a67fbe93eede6209042bc8d7dd2f

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: dmpython-2.5.38-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for dmpython-2.5.38-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 388062b7ed586f762aa8c6b7bc7e1c28b1689784e7a41f9c947b8606b8320597
MD5 82d012a3992b5813b890a7ad6b7a418e
BLAKE2b-256 d79219c95ac0183e6b4c87530116e4ac83622f2754405f73d6cbf7bafc54fcf2

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 089366311b50853c1f2b388c68f5764133e33096bf5846ab6cf517e9ea114570
MD5 51a0ae11f72326ffb2c4ff2b4cfec57d
BLAKE2b-256 ab6d65f95b0a55e11f4c52910181e96b62f0eadfacad3f09b16225abbfcec0d5

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ebbd274fe2acd0b5ae44df4c4be73e12c616dafc5670c8e1fd5524df4f8b75e6
MD5 49a5dc385b565b882d8dd03b4d27abe4
BLAKE2b-256 30b61724638d0dd818465bffb64a6bebd7664f69124e61d949354ece0b413354

See more details on using hashes here.

File details

Details for the file dmpython-2.5.38-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl.

File metadata

File hashes

Hashes for dmpython-2.5.38-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl
Algorithm Hash digest
SHA256 84c780e0d0e6eead7a0a93a86afde74b08a6c86d0c22d3b2b6ea075249069945
MD5 8a971711d76eba02e8a81bf9fd833ee8
BLAKE2b-256 555b8e86581669ece395cc9ea52e82cad0d3320ef63e8f6a9ac20dea1f75b31b

See more details on using hashes here.

Supported by

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