Skip to main content

Python interface to Dameng

Project description

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.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,数据类型转换失败的错误

Project details


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.32-cp314-cp314-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.14Windows x86-64

dmpython-2.5.32-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp313-cp313-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.13Windows x86-64

dmpython-2.5.32-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp312-cp312-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.12Windows x86-64

dmpython-2.5.32-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp311-cp311-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.11Windows x86-64

dmpython-2.5.32-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp310-cp310-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.10Windows x86-64

dmpython-2.5.32-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp39-cp39-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.9Windows x86-64

dmpython-2.5.32-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp38-cp38-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.8Windows x86-64

dmpython-2.5.32-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dmpython-2.5.32-cp37-cp37m-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

dmpython-2.5.32-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dmpython-2.5.32-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

dmpython-2.5.32-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (11.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b0fdef9ef37fadf2d9a0548a54d58c4efafa6f59ceac0404e0a1d6a7069a45d3
MD5 341661b561dd9139fe98ee6859ff69d6
BLAKE2b-256 4f38eb0c774a826b2feff3096bcb24942ac45a92fcdb18dd35c80200a6cebc68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d54c3b0daf9e3196bc7a85d1d1237a5e897fe5153cfaf9734b116c922e9dc82
MD5 1be55d4d4e8fce72cccc060cd72ec5a2
BLAKE2b-256 0e53c7d89a1f73289fef39eb82bab230a1a976d03277d031bf2320d87e4055e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4bde0e3b32b011cd1573f941e7680acebd2dda206962603373cff082aa3197d0
MD5 ead23fa940a3f104665e5a29ee072ef5
BLAKE2b-256 134e804176a7059e5f0c3b3b2196d7f23a4b09c28514f4b491428d7e38364262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50c3c911be37af2a6cb05dc6e39ada6ef4d51a63f96a7ac9c8e877c929bbb34a
MD5 3e7622a5035d159362da914c5f4096e9
BLAKE2b-256 0dec4f97d6a5fad7aba22e35f3f4ec078d2d85811239a22dd93f7e32bda15873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp313-cp313-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 719d250e79691d5448b27e05d63cb2f39e4c32c6f7c990f01807b20263b9c13a
MD5 20a8883417175651f9baaa6cb4ad64ab
BLAKE2b-256 88939b53fc5903f019692a35c78f5b0f4878a6aa74fdf1d117986051821436d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 84c47b410d035d9432e9732c8f885435e8b04bb66b0ec7f8f86b4779f69aadbb
MD5 22a32fa6974e66199e86c3527ca906d9
BLAKE2b-256 e38439cc41871d6ef72c2c3ee958e085916dc30bc7662b34bb09e57d5a2c2f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0a2b902e3d23dd1cd70e29a751adffe04ada5f0001dfb51f876a0367bf0eb125
MD5 c99710f8d87d702d7fe1fdc87784946d
BLAKE2b-256 35c2389b89c94a75323034bfd5ec345d699e8c30599f75b030a6f4d67b0460b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 668da85d874aba561b6c0d6dde183ec294411967d64d671e69e41fb6d5523c39
MD5 ce02fb2f6d13eea2080c4039cc77aed5
BLAKE2b-256 3c61fee9c3f631dec012034b5a1ef1ee624b0a44740186d2efa23861db252f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cdeb42cb6f88b46c35dcf9d295c3c8ffe48a8b6f5713dee3fcc3e8cdd7b572ab
MD5 1fc7d04dd982c45591697c66e1ccba35
BLAKE2b-256 d27b9a1997e4db3e32c38a332229b5961f1b5f4bec406c959bf8cbc1fab4992f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bca8530ee0602c8bb4609a3b502cee01025642dbe873acdecc1f249318180ba9
MD5 006238bf4cd47a16b7bf3eb4afd471f5
BLAKE2b-256 212cd9f0f6c39834d73e89ff7e79aa92e677f4e4bea9c07dda917e2e3ad933bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2fbc9602106ec8d894f10d93205d41b4dcfdbc3f67c4d7b5e45452bceea9f7bc
MD5 f7fc65f68b7c59ad9d14fbc7bb1c2975
BLAKE2b-256 06a582cf0dfd483ef78e7523781ea95892ac921202a355cf158ce1ce72a956ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdb3366eb519105dc663b2e5ac7d88a592402c2d6a14810fc22be09b528a94ae
MD5 2ce82a39716da6a01a3aa17cc9f5ae5e
BLAKE2b-256 80275c880a15b16036f20adf6694f407525e0539d62b2b1a191b12577adec256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1b2c8919f2aad4084774f3ab8a9342861ffca29720e32fdbcc375a34b27f66c4
MD5 8f58e56925b5bc0ab4a4601f5024483c
BLAKE2b-256 4183e6c8f8dc75807e66efccaef74d9f80e899a9e50307f0e8e03a64115c7ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 542cd3c55a4a70642ec043425bd206d8304d7fdbbbfec3e17396542c0b638a63
MD5 96e71b23ec07846d63e779dbca99640e
BLAKE2b-256 f382f62ce3aa496f432a136f627e485a4a9c0c42937a6ea83f0014a69c2272ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6a6c2b57d94f02f583bb784e1391ee2de958ecb77fd6a630babef6d0b7274698
MD5 116a81cb9be03fb1e86bf7898e06a7e7
BLAKE2b-256 ec5932a18955e846b84f2c1bfd463c4a4bbc8cf4caa4ecfe83ea474af475449a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7dc4d33a3d3efb401bb18d151e5f04b8ca2243fe27d3116d5b5936ad73e7867a
MD5 ee1979488124ce7545f33b812dc32a7c
BLAKE2b-256 ba9ed5dc5dcab94b4802f3448dd76ed767475df398ed3fa27cf77172845f3965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 00208862e72b6aaecb6110dc94e2a1be2886fb6a5b97b9bed7c889a1dcb9635c
MD5 332d02ac366c9408b6f46f72576fa6cb
BLAKE2b-256 8559e44ab981ec72129ed840ddb62bf142d7db454e75ef226d629d226ca006cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f5d41da06437278efd0c23875215e3cc2ad47d4e39aabb6d7c8706a36ac73685
MD5 a8899f0a68925ffafef60336dcd3cc7d
BLAKE2b-256 39a3bd8e113ba8611f44922febb34d6688788f1e2818c233520e512f409d4f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c66a9b903ca35ef3795193f4c60cc6ae3e970c9b6348256b9731d2ba19cbb58b
MD5 8d180b5b5eeb1378f0e492dbec7a27b6
BLAKE2b-256 21dbaaba6736ac3a8d7a8599ae57cd0bf7a5ce4638ebb739e9dbaed5e13d5dfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 756fd91b599b46f8e3c9a60e70461a1f311c6d55b02dab1824aa54248eb43049
MD5 8a1481c921170aa5f08b247f43177273
BLAKE2b-256 ba25d41dce1eb777d5b5415139fb8bfc95ce67bebbf9104ffb970acdca6793b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08e2c18b0b8158401a338b766460cc4032d36643a2d719a582c7b919e1103760
MD5 b7863a126650fb13e6386164a0b6db61
BLAKE2b-256 4712f270c28b11c088b59693c0e448644683b2c4a2449b5e5e95a607ecaefc75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ec1a9167bee4664eefa4322bd18a811ef0d243ccdd05ef0dc5de9060fe482028
MD5 4427ed7506ab321418f847fac134b4ba
BLAKE2b-256 4068fdca8eeacacc0053e65a53a132bbe9d528c6311c438ec9a696eaec866996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e96950996f349574bfe2e7fd486854de6edb5019d3d66c1dbe9617be13a74d92
MD5 6656b9382b255d7127174e42570a02af
BLAKE2b-256 cbfa41d3eb1933871fee41995559bf626158888dae925ff9a4901e48bae12975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 192205397f709976a6512e7e94c2f3d81d4e8fdc7b24d2f286aa1286f9cb3b56
MD5 b120feaa665f0f1cc98f2025675f2ece
BLAKE2b-256 c7831dadc761aa2f323d2c9112c4832813eb54a8e82387cc79428c5e8ecd211f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 afa8337a128e4e5ec8385c32a98cb95e608ba7d6fd7986350a36306b9401b6d2
MD5 f2869aaa64f96ee316afdc20b5bd61d6
BLAKE2b-256 6a1fc3e4cc2d960520911a08fd1f701aff7eca1fdf50c2ae9b6c53219dbc41ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 399f2f1976ae1603a0910ac12e836a47f0e512b7e74db9febd01897426fa3225
MD5 d4f17ea8a2d3662f6a7d2010aaad0e8d
BLAKE2b-256 c97e359c27fcef8a925cf453cc59e149d36e30a6ac623c8d896b9134a6d7bc99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c0d54b3c88133b0e0fd17cecf9ce3aee3d9562accce8b0ca3d0b224f483aa28a
MD5 023d4c865bd929444f594de1abfe1386
BLAKE2b-256 874a073d6160c02ca8699e60e66146ebab25be120fcc66da12ccb6c0e543a5ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dmpython-2.5.32-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.7 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.32-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a10269626c8c5622f847f1bbf3bb5025370bdc2ae20babc156626eb02a07d96f
MD5 6a83fd6887a05fadfe97261c07c067a7
BLAKE2b-256 72f8488c44077f2b0f3bb1c93de957a05fe807a65b4e7c3a3856a9024eec944e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ed440f3c3721c717e93482cde9528335254388ec23aea14452536c0dcb42de5
MD5 f215d39e3dec02b23808fd48a8ba26ef
BLAKE2b-256 c72d7b7783acf0e1628269f06e031887fef263f034e8bc5dc49fb13cead5ed93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4fb870379ad898b43f7e4ce3dee8f1bc652f2a9363e88bca9176caf3a9edc2cf
MD5 b70062b4eeb08cbd98e089d9b006d7b8
BLAKE2b-256 b0487a4d7feecb661a0a84d7d619c4220e9708a9325b4e6d57ab72a59a0f07c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dmpython-2.5.32-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 51ca097fecdad1ca5f7cab22f08b9e7cec69ea9513ed5b64c7499be49b836138
MD5 5604b38739b0a150dec2cdb73a9afb92
BLAKE2b-256 77ace24cc6c98d0f9e49aebe6b5ea1d090aa7c807d319b3a01a13c9081983226

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