Skip to main content

Presentation

The dmcam Python package is developed for interacting with Smarttof Module produced by Digital Intelligent technology co. LTD.

Usage example

import sys
import numpy as np
import time

import dmcam


def on_frame_rdy(dev, f):
    # print("cap: idx=%d, num=%d" % (f.frame_fbpos, f.frame_count))
    # time.sleep(0.5)
    pass


def on_cap_err(dev, errnumber, errarg):
    print("caperr: %s" % dmcam.error_name(errnumber))
    if errnumber == dmcam.DMCAM_ERR_CAP_FRAME_DISCARD:
        print("   %d frame discarded" % int(errarg))
    # if return false, the capture process will be stopped
    return True


# init the lib with default log file
dmcam.init(None)
# init with specified log file
# dmcam.init("test.log")
# set debug level
dmcam.log_cfg(dmcam.LOG_LEVEL_INFO,
              dmcam.LOG_LEVEL_DEBUG, dmcam.LOG_LEVEL_NONE)

# list device (maximum 10 devices to store)
print(" Scanning dmcam device ..")
devs = dmcam.dev_list()
if devs is None:
    print(" No device found")
    sys.exit(1)

print("found %d device" % len(devs))

for i in range(len(devs)):
    print("DMCAM#%d [%03d:%03d:%03d]: VENDOR=%s, PROD=%s, SERIAL=%s"
          % (i, devs[i].if_info.info.usb.usb_port_num, devs[i].if_info.info.usb.usb_bus_num,
             devs[i].if_info.info.usb.usb_dev_addr, devs[i].vendor,
             devs[i].product, devs[i].serial))

print(" Open dmcam device ..")
# open the first device
# dev = dmcam.dev_open(devs[0])
dev = dmcam.dev_open(None)
assert dev is not None

# print(" Config capture param ..")
# set 10 frames framebuffer
dmcam.cap_set_frame_buffer(dev, None, 10 * 320 * 240 * 4)
# dmcam.cap_set_callback_on_frame_ready(dev, on_frame_rdy)
dmcam.cap_set_callback_on_error(dev, on_cap_err)

# write to ramp mode
# dmcam.reg_batch_write(dev, dmcam.DEV_REG_TFC_DE, 0x31, np.array([0x1803], dtype="uint32"))
# regval = dmcam.reg_batch_read(dev, dmcam.DEV_REG_TFC_DE, 0x31, 1)
# print(regval)
# assert regval[1] == 0x1803

print(" Set paramters ...")
# write illumination power: 100%
pwr_percent = 100
wparams = {
    dmcam.PARAM_ILLUM_POWER: dmcam.param_val_u(),
    dmcam.PARAM_INTG_TIME: dmcam.param_val_u(),
    dmcam.PARAM_FRAME_FORMAT: dmcam.param_val_u(),
}
wparams[dmcam.PARAM_ILLUM_POWER].illum_power.percent = pwr_percent
wparams[dmcam.PARAM_INTG_TIME].intg.intg_us = 1000
wparams[dmcam.PARAM_FRAME_FORMAT].frame_format.format = 2

if not dmcam.param_batch_set(dev, wparams):
    print(" set parameter failed")

print(" Start capture ...")
dmcam.cap_start(dev)

f = bytearray(320 * 240 * 4 * 2)

print(" sampling 100 frames ...")
count = 0
run = True
while run:
    # get one frame
    finfo = dmcam.frame_t()
    ret = dmcam.cap_get_frames(dev, 1, f, finfo)
    # print("get %d frames" % ret)
    if ret > 0:
        w = finfo.frame_info.width
        h = finfo.frame_info.height

        print(" frame @ %d, %d, %dx%d" %
              (finfo.frame_info.frame_idx, finfo.frame_info.frame_size, w, h))

        dist_cnt, dist = dmcam.frame_get_distance(dev, w * h, f, finfo.frame_info)
        gray_cnt, gray = dmcam.frame_get_gray(dev, w * h, f, finfo.frame_info)
        # dist = dmcam.raw2dist(int(len(f) / 4), f)
        # gray = dmcam.raw2gray(int(len(f) / 4), f)

        count += 1
        if count >= 100:
            break

    else:
        break
    time.sleep(0.01)
    # break

# print("wait 3000ms")
# dmcam.cap_wait(dev, 3000)
print(" Stop capture ...")
dmcam.cap_stop(dev)

print(" Close dmcam device ..")
dmcam.dev_close(dev)
dmcam.uninit()
sys.exit(-1)

Release files for dmcam 1.57.7

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for dmcam 1.57.7
File
dmcam-1.57.7-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
dmcam-1.57.7-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
dmcam-1.57.7-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
dmcam-1.57.7-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
dmcam-1.57.7-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
dmcam-1.57.7-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
dmcam-1.57.7-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
dmcam-1.57.7-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
dmcam-1.57.7-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
dmcam-1.57.7-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details

Total release size: 12.4 MB

Release files / dmcam-1.57.7-cp37-cp37m-win_amd64.whl

Download URL dmcam-1.57.7-cp37-cp37m-win_amd64.whl
Size 360.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3413474acba1b0c34997450c465658622717a1244f8e2c5747cc6550ec64b64d
BLAKE2b-256 checksum
How to use checksums
8a98d2e87fd8fe9cd65d5bc566cdded1953e69d3fde9646eb6fabf8044c7fae3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp37-cp37m-win32.whl

Download URL dmcam-1.57.7-cp37-cp37m-win32.whl
Size 454.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3b8befc6e4d29d6ab77c28b671ec43a65bbe34201feaa9a5829672a85b36deab
BLAKE2b-256 checksum
How to use checksums
697a1504020ae2d3cb4d053b00181d24a30d6a25d3e27bc43eaec48d9e5eff74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl
Size 712.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4f3353895ae0d754a690544928f949fce565126fe84c3b22c0767cfd2b8d564e
BLAKE2b-256 checksum
How to use checksums
6f1a4e72a82dee7a16fe4725510de8e60778e38d8bff13b685d64657c74a3fad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl
Size 692.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2a7e28f35e2caab4a74816ed20e10ca1e804631eb408801d3dd491fc6509c3a3
BLAKE2b-256 checksum
How to use checksums
8881b2bfaddc5f1d71e9418823b67773637a29a476c110161ecb29f100f4251b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp36-cp36m-win_amd64.whl

Download URL dmcam-1.57.7-cp36-cp36m-win_amd64.whl
Size 359.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
de3a3baeb60056af5233f28d867e0050e3e4076b5ae920bf9b3f9567261d399d
BLAKE2b-256 checksum
How to use checksums
60f554d4fc02fcb6b1a648d917da27f553b4810a86be6a5a8f5710c719496318
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp36-cp36m-win32.whl

Download URL dmcam-1.57.7-cp36-cp36m-win32.whl
Size 454.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4cf78f2ff63c05eb86ac643aff5bdb61289f0729bca1fe3e8e76e5f1fe10ec71
BLAKE2b-256 checksum
How to use checksums
0ac561cf027b754e3658dfb34fe3b86ee32a2288bc057e39ce76595882114aff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl
Size 711.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7221e309cec09409a1a0c125e9344f42d0e382f7a282a5983f4af32c46935a46
BLAKE2b-256 checksum
How to use checksums
7f25512ea8e481bf22af03d9f9c040fc13fcb097f6144103e75214a6c53acb4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl
Size 690.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e6994420890cbb2d251ba7b17723c37fc405d78fad8b88c8488a35d96c65f54d
BLAKE2b-256 checksum
How to use checksums
079e09b876b265ae3a5a8f783408f559672332138fcb446d10712a944b042440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp35-cp35m-win_amd64.whl

Download URL dmcam-1.57.7-cp35-cp35m-win_amd64.whl
Size 359.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
bbc17d16ba37737b622ebbbb898ab69c9fefc9691c587a6a67fa627b602a6e69
BLAKE2b-256 checksum
How to use checksums
30779e49a29a8073cbb4cfc642663d42db24fafa8690e24e4d37f0e47aff5315
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp35-cp35m-win32.whl

Download URL dmcam-1.57.7-cp35-cp35m-win32.whl
Size 454.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ec53feccc0195503543ffb713d955630c55fac93ef226633137e7c6f4bbee219
BLAKE2b-256 checksum
How to use checksums
d10130fca7bc23cd8270996efb13bc9ea8e5755339c32186eff779925feea8d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl
Size 711.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7a48b09e424f4861d11c1e437e738bca4d4dfb5672b8e517deae2c31c6a732cb
BLAKE2b-256 checksum
How to use checksums
8445d426a28d75ba381451cc645bd69d5265555c5858623d835d6e401840a640
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl
Size 690.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fefa63ff6c590b3c391000ee5c5f3525ce60f39ccd6b3e91f3c7a5000eeed52c
BLAKE2b-256 checksum
How to use checksums
471b2c6325604382e0c79e31dbc4bea3ab6fe33c140dc34f0787257e9efbcaff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp34-cp34m-win_amd64.whl

Download URL dmcam-1.57.7-cp34-cp34m-win_amd64.whl
Size 355.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b248679d151afe842a035a8654e8d0f2e2aeac43417400bb8497ea1d4717f97d
BLAKE2b-256 checksum
How to use checksums
9b7eb424454a21a7910f935440f32a12c57962cf18385b91380b39d0170221dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp34-cp34m-win32.whl

Download URL dmcam-1.57.7-cp34-cp34m-win32.whl
Size 453.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c5ecb47115c1a1edd5d1555d3195591b1d596460d458d572288f4e556f642cfa
BLAKE2b-256 checksum
How to use checksums
15218d8c0b92f81e30b2386d4013ad4e704344419ae96542a247a6bf74c335ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl
Size 710.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
158db474e3e277a5e48b8bd8c069e9d152a021ffe16da03b472ebbb2f8df10b4
BLAKE2b-256 checksum
How to use checksums
2b64cae02091013c4bb48efdae7af73ebb111721384226fcb5908d05e024d350
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl
Size 690.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9f157cb7a2d339772a4da1b4b47eb946c04130a0d40e5f89d3667e40d52f1a12
BLAKE2b-256 checksum
How to use checksums
e018ef9ae868e5f92b6dcd35ae3502f0b30ab23a37725db7c9a3a986b897d348
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl
Size 701.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
527822155a4348f24cbf128e6c3dd25e8ae199820459400436f237ad85427c24
BLAKE2b-256 checksum
How to use checksums
136d34b162f798f1783f53c34e610c945d91abf210cc6650025c86823dfacdf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl
Size 683.5 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4ad1f7016392e394ca54ab005dd62bfb5d97d5c675e2322be55b5d95da8cb035
BLAKE2b-256 checksum
How to use checksums
19a5e369d234028b3c3b80639ca32d3051654e04b054f7e17a8d3ce1d07d4407
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27m-win_amd64.whl

Download URL dmcam-1.57.7-cp27-cp27m-win_amd64.whl
Size 356.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f294553cf146c16fd64297f24e1d456754647967f7b4fa199595a09aa853eca1
BLAKE2b-256 checksum
How to use checksums
81d26c295f35183ef7c5932b0df51b7bf8dc34e8de33fd1b57069ea020bb4eee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27m-win32.whl

Download URL dmcam-1.57.7-cp27-cp27m-win32.whl
Size 453.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
62751fa391feaded03289f5248e8c3557b91f488bd7eb1a2b2c95e6a654bc40d
BLAKE2b-256 checksum
How to use checksums
e95af2951f8ecf8a0d91b25ff21657ee9bd8f01c747bbdd262c24f5a8d339f7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl

Download URL dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl
Size 701.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
496bb96ca0cf18cf01ad14ec22ad9030a7c1ed1484a4bee6360c021412ca9777
BLAKE2b-256 checksum
How to use checksums
cece78121a6b777a75865cb1187d1edf1aa39dd9cfc9e434d027a6166eb0c906
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4

Release files / dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl

Download URL dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl
Size 683.5 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a02a6f001debb2a6b53350003795ed09976ad22d12e889c59a8402298f3a8491
BLAKE2b-256 checksum
How to use checksums
f58c9b03530a208c819d70cecb606c24483f8051b3ded9968ba57d6cd342a434
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.4.4
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page