Skip to content

v1.3.0 Attributes

Choose a tag to compare

@Teque5 Teque5 released this 08 Jan 18:56
· 15 commits to main since this release
99065b7

New ways to use SigMF

When properties are part of sigmf global fields, they can now be read and written via attributes:

import sigmf
meta = sigmf.fromfile("some.sigmf-data")

sample_rate = meta.sample_rate # reads from metadata["global"]["core::sample_rate"]
num_channels = meta.num_channels # reads from metadata["global"]["core::num_channels"]
meta.author = "Bruce Wayne" # writes to metadata["global"]["core::author"]

What's Changed

New Contributors

Full Changelog: v1.2.12...v1.3.0