Skip to main content

A package for reading and writing MDF files

Project description

mdfr

ASAM mdf reader in rust

Currently a personal project to learn rust from past experience with python (mdfreader).

mdfr is currently able to be used from python interpreter (using pyO3) to read mdf 3.x and 4.x files. Using rayon crate on many parts of the code allows to have faster parsing in a safe and easy way compared to python. To allow efficient data sharing with many other tools, mdfr stores the data using arrow2. Polars (pandas equivalent) use is therefore also straight forward. It can be used the following way:

import mdfr
# load file metadata in memory
obj = mdfr.Mdf('path/to/file.mdf')
# loads all data in memory
obj.load_all_channels_data_in_memory()
# loads a set of channels in memory, for instance in case there is not enough free memory or for performance
obj.load_channels_data_in_memory({'Channel1', 'Channel2'})
# Returns the numpy array
obj.get_channel_data('channel_name')

# .get_channel_* methods to retrieve channel description, unit, related master name, type and data
# .set_channel_* methods to modify channel description, unit, related master name, type and data
# list of channels in file, or lists of channels grouped by master are available
obj.get_master_channel_names_set()

# To manipulate the file data (cut, resample, merge, etc.), it is possible to use polars:
obj.get_polars_series('channel_name') # returns the a serie
# to get complete dataframe including given channel:
obj.get_polars_dataframe('channel_name')
# add and remove channel
obj.add_channel(channel_name, data, master_channel, master_type, master_flag, unit, description)
# to plot a single channel with matplotlib:
obj.plot('channel_name')

# Export to parquet:
obj.export_to_parquet('file_name', compression_option)
# write to mdf4 file, compressed or not
obj.write('file_name', conpression_flag)

Packaging for pip should come later.

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

mdfr-0.2.1-cp310-none-win_amd64.whl (2.6 MB view hashes)

Uploaded CPython 3.10 Windows x86-64

mdfr-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mdfr-0.2.1-cp310-cp310-macosx_10_7_x86_64.whl (2.6 MB view hashes)

Uploaded CPython 3.10 macOS 10.7+ x86-64

mdfr-0.2.1-cp39-none-win_amd64.whl (2.6 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

mdfr-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mdfr-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mdfr-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mdfr-0.2.1-cp39-cp39-macosx_10_7_x86_64.whl (2.6 MB view hashes)

Uploaded CPython 3.9 macOS 10.7+ x86-64

mdfr-0.2.1-cp38-none-win_amd64.whl (2.6 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

mdfr-0.2.1-cp38-cp38-macosx_11_0_arm64.whl (2.4 MB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mdfr-0.2.1-cp38-cp38-macosx_10_7_x86_64.whl (2.6 MB view hashes)

Uploaded CPython 3.8 macOS 10.7+ x86-64

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