Skip to main content

DM camera python extension

Project description

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)

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

dmcam-1.57.7-cp37-cp37m-win_amd64.whl (360.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

dmcam-1.57.7-cp37-cp37m-win32.whl (454.6 kB view details)

Uploaded CPython 3.7mWindows x86

dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl (712.2 kB view details)

Uploaded CPython 3.7m

dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl (692.1 kB view details)

Uploaded CPython 3.7m

dmcam-1.57.7-cp36-cp36m-win_amd64.whl (359.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

dmcam-1.57.7-cp36-cp36m-win32.whl (454.6 kB view details)

Uploaded CPython 3.6mWindows x86

dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl (711.1 kB view details)

Uploaded CPython 3.6m

dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl (690.9 kB view details)

Uploaded CPython 3.6m

dmcam-1.57.7-cp35-cp35m-win_amd64.whl (359.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

dmcam-1.57.7-cp35-cp35m-win32.whl (454.6 kB view details)

Uploaded CPython 3.5mWindows x86

dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl (711.0 kB view details)

Uploaded CPython 3.5m

dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl (690.9 kB view details)

Uploaded CPython 3.5m

dmcam-1.57.7-cp34-cp34m-win_amd64.whl (355.8 kB view details)

Uploaded CPython 3.4mWindows x86-64

dmcam-1.57.7-cp34-cp34m-win32.whl (453.2 kB view details)

Uploaded CPython 3.4mWindows x86

dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl (710.8 kB view details)

Uploaded CPython 3.4m

dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl (690.6 kB view details)

Uploaded CPython 3.4m

dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl (701.0 kB view details)

Uploaded CPython 2.7mu

dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl (683.5 kB view details)

Uploaded CPython 2.7mu

dmcam-1.57.7-cp27-cp27m-win_amd64.whl (356.4 kB view details)

Uploaded CPython 2.7mWindows x86-64

dmcam-1.57.7-cp27-cp27m-win32.whl (453.0 kB view details)

Uploaded CPython 2.7mWindows x86

dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl (701.0 kB view details)

Uploaded CPython 2.7m

dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl (683.5 kB view details)

Uploaded CPython 2.7m

File details

Details for the file dmcam-1.57.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 360.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3413474acba1b0c34997450c465658622717a1244f8e2c5747cc6550ec64b64d
MD5 f61088ca0a881b3562baeb2c2e7cf57e
BLAKE2b-256 8a98d2e87fd8fe9cd65d5bc566cdded1953e69d3fde9646eb6fabf8044c7fae3

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 454.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3b8befc6e4d29d6ab77c28b671ec43a65bbe34201feaa9a5829672a85b36deab
MD5 2113e24b535d60c984608a7a296edbf6
BLAKE2b-256 697a1504020ae2d3cb4d053b00181d24a30d6a25d3e27bc43eaec48d9e5eff74

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 712.2 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4f3353895ae0d754a690544928f949fce565126fe84c3b22c0767cfd2b8d564e
MD5 deed06123876cdfe42d6ed322a3926b9
BLAKE2b-256 6f1a4e72a82dee7a16fe4725510de8e60778e38d8bff13b685d64657c74a3fad

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 692.1 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a7e28f35e2caab4a74816ed20e10ca1e804631eb408801d3dd491fc6509c3a3
MD5 a8aca67ec366b32c6a4c06d7573bf488
BLAKE2b-256 8881b2bfaddc5f1d71e9418823b67773637a29a476c110161ecb29f100f4251b

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 359.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 de3a3baeb60056af5233f28d867e0050e3e4076b5ae920bf9b3f9567261d399d
MD5 734cda1304fc39f07487ad5164ccc677
BLAKE2b-256 60f554d4fc02fcb6b1a648d917da27f553b4810a86be6a5a8f5710c719496318

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 454.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4cf78f2ff63c05eb86ac643aff5bdb61289f0729bca1fe3e8e76e5f1fe10ec71
MD5 cc002d8d6effaa4f0a37b835d34d55f6
BLAKE2b-256 0ac561cf027b754e3658dfb34fe3b86ee32a2288bc057e39ce76595882114aff

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 711.1 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7221e309cec09409a1a0c125e9344f42d0e382f7a282a5983f4af32c46935a46
MD5 24b8694e7ee6f242ada367df7874af06
BLAKE2b-256 7f25512ea8e481bf22af03d9f9c040fc13fcb097f6144103e75214a6c53acb4b

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 690.9 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6994420890cbb2d251ba7b17723c37fc405d78fad8b88c8488a35d96c65f54d
MD5 00058ad0784723972e6ac8d79b874453
BLAKE2b-256 079e09b876b265ae3a5a8f783408f559672332138fcb446d10712a944b042440

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 359.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bbc17d16ba37737b622ebbbb898ab69c9fefc9691c587a6a67fa627b602a6e69
MD5 0c3680a5875f123660258c92b66b25d6
BLAKE2b-256 30779e49a29a8073cbb4cfc642663d42db24fafa8690e24e4d37f0e47aff5315

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp35-cp35m-win32.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 454.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ec53feccc0195503543ffb713d955630c55fac93ef226633137e7c6f4bbee219
MD5 dde729e8895b00d8b9ad070961102fe7
BLAKE2b-256 d10130fca7bc23cd8270996efb13bc9ea8e5755339c32186eff779925feea8d0

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 711.0 kB
  • Tags: CPython 3.5m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7a48b09e424f4861d11c1e437e738bca4d4dfb5672b8e517deae2c31c6a732cb
MD5 f7ded3cd70fa89ec203c6d2924d33db8
BLAKE2b-256 8445d426a28d75ba381451cc645bd69d5265555c5858623d835d6e401840a640

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 690.9 kB
  • Tags: CPython 3.5m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fefa63ff6c590b3c391000ee5c5f3525ce60f39ccd6b3e91f3c7a5000eeed52c
MD5 1759d3f733c02fd63be2872ca80ee48a
BLAKE2b-256 471b2c6325604382e0c79e31dbc4bea3ab6fe33c140dc34f0787257e9efbcaff

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 355.8 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 b248679d151afe842a035a8654e8d0f2e2aeac43417400bb8497ea1d4717f97d
MD5 88715b175e12026337f7c883f711c673
BLAKE2b-256 9b7eb424454a21a7910f935440f32a12c57962cf18385b91380b39d0170221dc

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp34-cp34m-win32.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 453.2 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 c5ecb47115c1a1edd5d1555d3195591b1d596460d458d572288f4e556f642cfa
MD5 7e3dbf28c0d38814b1f56daebb1570dc
BLAKE2b-256 15218d8c0b92f81e30b2386d4013ad4e704344419ae96542a247a6bf74c335ac

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 710.8 kB
  • Tags: CPython 3.4m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 158db474e3e277a5e48b8bd8c069e9d152a021ffe16da03b472ebbb2f8df10b4
MD5 d067cc07d2960f95f2d920825c66db2a
BLAKE2b-256 2b64cae02091013c4bb48efdae7af73ebb111721384226fcb5908d05e024d350

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 690.6 kB
  • Tags: CPython 3.4m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f157cb7a2d339772a4da1b4b47eb946c04130a0d40e5f89d3667e40d52f1a12
MD5 bb7d3517279139f4e695135904ecb1b9
BLAKE2b-256 e018ef9ae868e5f92b6dcd35ae3502f0b30ab23a37725db7c9a3a986b897d348

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 701.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 527822155a4348f24cbf128e6c3dd25e8ae199820459400436f237ad85427c24
MD5 eb1a7f77551a7c4665867eeac0817781
BLAKE2b-256 136d34b162f798f1783f53c34e610c945d91abf210cc6650025c86823dfacdf4

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 683.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ad1f7016392e394ca54ab005dd62bfb5d97d5c675e2322be55b5d95da8cb035
MD5 4e3fbe5e519ea335120c4cb931a0e3f7
BLAKE2b-256 19a5e369d234028b3c3b80639ca32d3051654e04b054f7e17a8d3ce1d07d4407

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 356.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f294553cf146c16fd64297f24e1d456754647967f7b4fa199595a09aa853eca1
MD5 cca042e4a0595ca8cd75e04a346ac533
BLAKE2b-256 81d26c295f35183ef7c5932b0df51b7bf8dc34e8de33fd1b57069ea020bb4eee

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27m-win32.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 453.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 62751fa391feaded03289f5248e8c3557b91f488bd7eb1a2b2c95e6a654bc40d
MD5 d41781ccc749ce379ff4ac9b67d78b94
BLAKE2b-256 e95af2951f8ecf8a0d91b25ff21657ee9bd8f01c747bbdd262c24f5a8d339f7d

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 701.0 kB
  • Tags: CPython 2.7m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 496bb96ca0cf18cf01ad14ec22ad9030a7c1ed1484a4bee6360c021412ca9777
MD5 0999df305cc31d2e8bad24e77fbc3600
BLAKE2b-256 cece78121a6b777a75865cb1187d1edf1aa39dd9cfc9e434d027a6166eb0c906

See more details on using hashes here.

File details

Details for the file dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 683.5 kB
  • Tags: CPython 2.7m
  • Uploaded using 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

File hashes

Hashes for dmcam-1.57.7-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a02a6f001debb2a6b53350003795ed09976ad22d12e889c59a8402298f3a8491
MD5 52716f835f01f2fe0cb721cfdce48f4c
BLAKE2b-256 f58c9b03530a208c819d70cecb606c24483f8051b3ded9968ba57d6cd342a434

See more details on using hashes here.

Supported by

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