Skip to main content

ASAM MDF measurement data file parser

Project description

asammdf is a fast parser and editor for ASAM (Associtation for Standardisation of Automation and Measuring Systems) MDF (Measurement Data Format) files.

asammdf supports MDF versions 2 (.dat), 3 (.mdf) and 4 (.mf4).

asammdf works on Python >= 3.6 (for Python 2.7, 3.4 and 3.5 see the 4.x.y releases)

Status

! Travis CI Appveyor CoverAlls Codacy ReadTheDocs
master Build Status Build status Coverage Status Codacy Badge Documentation Status
PyPI conda-forge
PyPI version conda-forge version

Project goals

The main goals for this library are:

  • to be faster than the other Python based mdf libraries
  • to have clean and easy to understand code base
  • to have minimal 3-rd party dependencies

Features

  • create new mdf files from scratch

  • append new channels

  • read unsorted MDF v3 and v4 files

  • read CAN and LIN bus logging files

  • extract CAN and LIN signals from anonymous bus logging measurements

  • filter a subset of channels from original mdf file

  • cut measurement to specified time interval

  • convert to different mdf version

  • export to HDF5, Matlab (v4, v5 and v7.3), CSV and parquet

  • merge multiple files sharing the same internal structure

  • read and save mdf version 4.10 files containing zipped data blocks

  • space optimizations for saved files (no duplicated blocks)

  • split large data blocks (configurable size) for mdf version 4

  • full support (read, append, save) for the following map types (multidimensional array channels):

    • mdf version 3 channels with CDBLOCK

    • mdf version 4 structure channel composition

    • mdf version 4 channel arrays with CNTemplate storage and one of the array types:

      • 0 - array
      • 1 - scaling axis
      • 2 - look-up
  • add and extract attachments for mdf version 4

  • handle large files (for example merging two fileas, each with 14000 channels and 5GB size, on a RaspberryPi)

  • extract channel data, master channel and extra channel information as Signal objects for unified operations with v3 and v4 files

  • time domain operation using the Signal class

    • Pandas data frames are good if all the channels have the same time based
    • a measurement will usually have channels from different sources at different rates
    • the Signal class facilitates operations with such channels
  • graphical interface to visualize channels and perform operations with the files

Major features not implemented (yet)

  • for version 3

    • functionality related to sample reduction block: the samples reduction blocks are simply ignored
  • for version 4

    • experiemental support for MDF v4.20 column oriented storage
    • functionality related to sample reduction block: the samples reduction blocks are simply ignored
    • handling of channel hierarchy: channel hierarchy is ignored
    • full handling of bus logging measurements: currently only CAN and LIN bus logging are implemented with the ability to get signals defined in the attached CAN/LIN database (.arxml or .dbc). Signals can also be extracted from an anonymous bus logging measurement by providing a CAN or LIN database (.dbc or .arxml)
    • handling of unfinished measurements (mdf 4): finalization is attempted when the file is loaded, however the not all the finalization steps are supported
    • full support for remaining mdf 4 channel arrays types
    • xml schema for MDBLOCK: most metadata stored in the comment blocks will not be available
    • full handling of event blocks: events are transfered to the new files (in case of calling methods that return new MDF objects) but no new events can be created
    • channels with default X axis: the defaukt X axis is ignored and the channel group's master channel is used
    • attachment encryption/decryption using user provided encryption/decryption functions; this is not part of the MDF v4 spec and is only supported by this library

Usage

from asammdf import MDF

mdf = MDF('sample.mdf')
speed = mdf.get('WheelSpeed')
speed.plot()

important_signals = ['WheelSpeed', 'VehicleSpeed', 'VehicleAcceleration']
# get short measurement with a subset of channels from 10s to 12s
short = mdf.filter(important_signals).cut(start=10, stop=12)

# convert to version 4.10 and save to disk
short.convert('4.10').save('important signals.mf4')

# plot some channels from a huge file
efficient = MDF('huge.mf4')
for signal in efficient.select(['Sensor1', 'Voltage3']):
   signal.plot()

Check the examples folder for extended usage demo, or the documentation http://asammdf.readthedocs.io/en/master/examples.html

https://canlogger.csselectronics.com/canedge-getting-started/log-file-tools/asammdf-api/

Documentation

http://asammdf.readthedocs.io/en/master

And a nicely written tutorial on the CSS Electronics site

Contributing & Support

Please have a look over the contributing guidelines

If you enjoy this library please consider making a donation to the numpy project or to danielhrisca using liberapay <a href="https://liberapay.com/danielhrisca/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>

Contributors

Thanks to all who contributed with commits to asammdf:

Installation

asammdf is available on

pip install asammdf
# for the GUI 
pip install asammdf[gui]
# or for anaconda
conda install -c conda-forge asammdf

In case a wheel is not present for you OS/Python versions and you lack the proper compiler setup to compile the c-extension code, then you can simply copy-paste the pacakge code to your site-packages. In this way the python fallback code will be used instead of the compiled c-extension code.

Dependencies

asammdf uses the following libraries

  • numpy : the heart that makes all tick
  • numexpr : for algebraic and rational channel conversions
  • wheel : for installation in virtual environments
  • pandas : for DataFrame export
  • canmatrix : to handle CAN/LIN bus logging measurements
  • natsort
  • lxml : for canmatrix arxml support
  • lz4 : to speed up the disk IO peformance

optional dependencies needed for exports

  • h5py : for HDF5 export
  • scipy : for Matlab v4 and v5 .mat export
  • hdf5storage : for Matlab v7.3 .mat export
  • fastparquet : for parquet export

other optional dependencies

  • PyQt5 : for GUI tool
  • pyqtgraph : for GUI tool and Signal plotting
  • matplotlib : as fallback for Signal plotting
  • cChardet : to detect non-standard unicode encodings
  • chardet : to detect non-standard unicode encodings
  • pyqtlet : for GPS window

Benchmarks

http://asammdf.readthedocs.io/en/master/benchmarks.html

Project details


Release history Release notifications | RSS feed

This version

6.4.4

Download files

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

Source Distribution

asammdf-6.4.4.tar.gz (564.0 kB view details)

Uploaded Source

Built Distributions

asammdf-6.4.4-cp39-cp39-win_amd64.whl (624.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

asammdf-6.4.4-cp39-cp39-win32.whl (623.4 kB view details)

Uploaded CPython 3.9 Windows x86

asammdf-6.4.4-cp39-cp39-macosx_10_15_x86_64.whl (621.4 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

asammdf-6.4.4-cp39-cp39-macosx_10_14_x86_64.whl (621.2 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

asammdf-6.4.4-cp38-cp38-win_amd64.whl (624.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

asammdf-6.4.4-cp38-cp38-win32.whl (623.2 kB view details)

Uploaded CPython 3.8 Windows x86

asammdf-6.4.4-cp38-cp38-macosx_10_15_x86_64.whl (621.4 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

asammdf-6.4.4-cp38-cp38-macosx_10_14_x86_64.whl (621.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

asammdf-6.4.4-cp37-cp37m-win_amd64.whl (624.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

asammdf-6.4.4-cp37-cp37m-win32.whl (623.2 kB view details)

Uploaded CPython 3.7m Windows x86

asammdf-6.4.4-cp37-cp37m-macosx_10_15_x86_64.whl (621.4 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

asammdf-6.4.4-cp37-cp37m-macosx_10_14_x86_64.whl (621.2 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

asammdf-6.4.4-cp36-cp36m-win_amd64.whl (624.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

asammdf-6.4.4-cp36-cp36m-win32.whl (623.2 kB view details)

Uploaded CPython 3.6m Windows x86

asammdf-6.4.4-cp36-cp36m-macosx_10_15_x86_64.whl (621.4 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

asammdf-6.4.4-cp36-cp36m-macosx_10_14_x86_64.whl (621.2 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file asammdf-6.4.4.tar.gz.

File metadata

  • Download URL: asammdf-6.4.4.tar.gz
  • Upload date:
  • Size: 564.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4.tar.gz
Algorithm Hash digest
SHA256 631bb38941cb0b1c305f20be9c8edba6896ee7c3494d4a13f1c492bf54567338
MD5 be8278ce7e2f3f778caaf03b70f9858b
BLAKE2b-256 ebe847fdeef819990d757281fbd10425c62dc0491ad6a926e612e5c4bd37f8e4

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 624.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 436babc0525276d239ce5678408e4ed730ae82b52934b6f19cc1fae71200edaf
MD5 4ad61df9fec0c60020f8196fee38b1f7
BLAKE2b-256 048877541f7249ac5097508d9f48d2f8d1a6040c848f55a8d39e5af970280409

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 623.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4e6e9e22e481c985a1d94021aecb70675360c6d26e01d67f73ae562bd2044636
MD5 b9a25dfb007fe851d1f12c1927154b18
BLAKE2b-256 f3ac447b2472cb915e18cb212c5f6940b52bf898ed8ec77b6621d0e3e8b0ba03

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 621.4 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd6aa7fa1b0e03ac2b96af8b6e7f8ef28aed4ea4d4453ffa9723ae148c58f023
MD5 d5ef8f8776a440f7d870fa1f9afd9bad
BLAKE2b-256 7de47a087c70361dfe23514f8278db079ca54ea8cd04f79ae23e34f380bdc66b

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 efd0bd3094b60b8e0f3c33b0144902bedfe572c69b0713b450b2348f50ade9a9
MD5 a7b402d59247323e43ed67dd0128a045
BLAKE2b-256 ef3dfb131f398ca50e082025e2c3f34bc07644b2ffb280aa20d7b24de6360b9b

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 624.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c7929a3c02bce0e095b583d6034ba02506995bbafb9c0420cf78dc3817dcc086
MD5 4d4603438114e6dd96090c46434b31ed
BLAKE2b-256 c2fb0fc40cc8ce70446ecd01f3f2e06fc14c8f22430b87cec0d44a59e74169f6

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 623.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9de232e96c103fa212f997ebea7c7d123b5c62a1f66ff8e4e3383749c78da059
MD5 5198ef0544e7ada7340e60c2122aa66f
BLAKE2b-256 cfd796e4a076921f5639f438494443e6109118a1c98150390817fc98eb4ffc8a

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 621.4 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3bcb8b930308636aad434af8e2b81604e281d5713af50ee88014f09bf5b5e12e
MD5 683523aa19adc3ad915e621c471bc01f
BLAKE2b-256 6033ba4821517da2baeb0991d1554ce5dba1a158c394a09c9e85048c28c1e42a

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4ccd574392a2686b3527e83bca4f696877c6b5cf6cce72d00af6c8f804831459
MD5 959b4507407d1e9827517fa66ea296e8
BLAKE2b-256 7cda85798b216a269f31726acbf2f692d4c2ef2f875a5287375010871ee6e111

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 624.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2adf6d899102772db7a2ff19051526f7263f6783d3e43b2c155089eb95ce90cb
MD5 7a6bf08e37edc1fe869e36710c4e4d3b
BLAKE2b-256 ba170442ab6f0437e1ca6b69690c94fe3a247b3907aa6fc64189e014e2867524

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 623.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 770813197893ab9ee661f163a55fafca8d47e019ddab91072a9771075d49f12e
MD5 8bb3bc01f169d6d6ba0e32c2210b420e
BLAKE2b-256 7070557a1b929c43cff3d678d4a73d3b1ecf7626b1058e5bd205457c5008206b

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 621.4 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3c95f86e565e75566263ff6a724b9db905054e486e006ce65d89cd79fa9fe467
MD5 63acfd95e3933cf7d77334297ecd2be8
BLAKE2b-256 13b65d269e6b745066e993b8e54465d8516039f4c83bd89a4281a863e0ad9ce1

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e1cc5d42d4bdfb80a840585114179304c7209b0b3d5ea74a5155fd4fe0a84faa
MD5 aad0c80c4552c57e935165992cb55381
BLAKE2b-256 2a92507ed669a5491121f46d8b7b0371742397a7bbceca113a226b493b1c19d9

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 624.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5880a8abd08707d091f0c88baf93d7320aae162a52ad036d4bb52def35b30f82
MD5 9a859b2e1354abd12d1b2afe79b590b1
BLAKE2b-256 fd8d92ca23d3373f46952825611637f61335cd6bfd2c011fdbbbe90dc3e12119

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 623.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a4795cc07addb6d5f56944511e8b0b8b7ba1f4e805f4b57c58eb0a7e78519cf2
MD5 ef64adb02fbd6ca9dc20d2d84a355444
BLAKE2b-256 3f73148a6e5f3cd1afd0710a95174a0face9651bd885a249e746ed17e1347567

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 621.4 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9b727028f7b6612f793ba96a66adae047a5f56d26770c1e8ea64c500e9ff141f
MD5 fe03897bc4359915a1ebee02678c1d49
BLAKE2b-256 08826fb8932d6087c1e982d2cff7cb5650b725c8d104eaa1fccc4b708008d86c

See more details on using hashes here.

File details

Details for the file asammdf-6.4.4-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: asammdf-6.4.4-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.4.4-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 63496cd96320241518b5dcd43ff75f9a8e13ea1f7f7c84a3b138ee331ae4f5f2
MD5 14a1e5f3fc5a41c57639f398e5fc0c6a
BLAKE2b-256 5e9be9e907fc2b4e5e0b79d966139c43ef351bf8f903a179c131f51922092414

See more details on using hashes here.

Supported by

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