Ms3

Latest version: v2.6.0

Safety actively analyzes 724305 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 9

2.2.0

What's Changed

- Changing the instrumentation to "Drumset" by \arinaLozhkina in
[https://github.com/johentsch/ms3/pull/84]{.title-ref}\_\_
- More robust updating of score instrumentation by modifying
`metadata.tsv` and calling `ms3 metadata --instrumentation`
- Ensures playback with the correct MIDI instrument
- Handles a change to `Drumset` correctly in terms of changing
clef, removing key signature, and playback
- MSCX class API for creating score excerpts by \leobruneau in
[https://github.com/johentsch/ms3/pull/91]{.title-ref}\_\_
- score excerpts can now be stored using
`score.mscx.store_excerpt()`
- batch excerpt creation via `MSCX.store_phrase_excerpts()` and
`MSCX.store_random_excerpts()`
- Improved algorithm for computing `mc_offset` including bugfix by
\johentsch in
[https://github.com/johentsch/ms3/pull/95]{.title-ref}\_\_
- Updated schema mechanism following the first trial by \johentsch in
[https://github.com/johentsch/ms3/pull/97]{.title-ref}\_\_
- `quarterbeats_all_endings` column now added to all facet
dataframes by default
- schema URLs now use the dedicated
[DCMLab/frictionless_schemas](https://github.com/DCMLab/frictionless_schemas/)
and the amount of required schemas was reduced drastically
- no schemas are stored for `events` anymore
- `rests` and `notes_and_rests` do not include non-sensical
empty columns anymore
- `chords` is the only remaining facet where the abundance of
schemas due to high combinatoriality of column names is
(somewhat) justified.
- Renamed columns:
- in unfolded dataframes, `quarterbeats` is now called
`quarterbeats_playthrough`
- in the `chords` facet, `metronome_visible` is now called
`tempo_visible`
- documentation now hosted at
[https://ms3.readthedocs.io/]{.title-ref}\_\_

New Contributors

- \leobruneau made their first contribution in
[https://github.com/johentsch/ms3/pull/91]{.title-ref}\_\_

**Full Changelog**:
[https://github.com/johentsch/ms3/compare/v2.1.1...v2.2.0]{.title-ref}\_\_

2.1.1

- Message headers in `.warnings` files now come without trailing `--`.
- This version is able to correctly IGNORED_WARNINGS even if the
header ends on a trailing `--` (copied from a `.warnings` file
generated by an older version of ms3).
- adds the low-level function
`ms3.bs4_parser._MSCX_bs4.make_excerpt`{.interpreted-text
role="meth"} that returns the new object type
`ms3.bs4_parser.Excerpt`. High-level API in preparation (91).

2.1.0

This update includes a few minor bug fixes but some heavy updating of
the code internals:

- pandas\>=2.0.0 is now supported
- the `function_logger` decorator has been removed and replaced with
a function argument that defaults to the `module_logger`
- all modules which have seen a commit since the previous tag have
been fully linted using pre-commit hooks
- the filelock problem that made a couple of test fail under Windows
since the early days has been resolved (by using pytest\'s
`tmp_path` fixture instad of `NamedTemporaryFile`).
- `make_ml()` (responsible for creating measure tables) was refactored
and should be much more legible (and easier to adapt and extend in
the future)

**Full Changelog**:
[https://github.com/johentsch/ms3/compare/v2.0.1\...v2.1.0]{.title-ref}\_\_

2.0.1

- Allow metronome mark to appear in MC 2

2.0.0

Breaking changes

- Renamed MultiIndex levels:
- The column `fname` has been renamed to `piece`. This concerns
especially `metadata.tsv` where it is used as index, but also
the MultiIndex of concatenated facets such as those output by
`Parse.get_facet()` or `ms3 transform`.
- The last (right-most) index level, which used to be called
`<facet>_i` in some cases, is now consistently called `i`.
- When extracting TSV files:
- The possibility to assign custom suffixes to the extracted
facets has been replaced by default suffixes separated by a full
stop. For example, the notes for the MuseScore file
`MS3/filename.mscx` will be extracted to
`notes/filename.notes.tsv` by default.
- Every extracted TSV file comes with a JSON descriptor file
following the [frictionless
specification](https://specs.frictionlessdata.io/) for metadata.
This replaces the `csv-metadata.json` files that were following
the [CSV on the Web](https://csvw.org/) specification.
- The frictionless schemas used in the JSON descriptor files are
stored in the `schemas` folder of the ms3 package in YAML
format. Their filenames are truncated hashes computed from the
included column/field names and they are stored in a folder
pertaining to the facet in question. This comes with the
advantage that schemas do not have to be written out in every
descriptor: Instead, the `schema` field contains the URL of the
schema file, allowing to update the schema specifications at a
later point, e.g. with added or more elaborate descriptions.
- Validation errors are written into `.errors` files stored next
to the resource descriptor in question.
- The command `ms3 transform`, by default, outputs the concatenated
facets as a single ZIP file that comes with a [frictionless
DataPackage descriptor](https://specs.frictionlessdata.io/) (for the
parameters added to the command, see below). The concatenated files
are now named `<corpus_name>.<facet>.tsv` (previously
`concatenated_<facet>.tsv`).

New features

- It is now possible to batch-edit the instrumentation in many scores
at once by changing the relevant column(s) in `metadata.tsv` and
calling `ms3 metadata --instrumentation`.
- Since `ms3 transform` now outputs zipped [frictionless
DataPackages](https://specs.frictionlessdata.io/) by default
(meaning that all concatenated facets are described in the same
package descriptor JSON file), it comes with additional parameters:
- `--unzipped` to output the package as uncompressed TSV files
rather than as single ZIP file.
- `--resources` to create a frictionless resource descriptor per
concatenated facet instead of a package descriptor.
- `--safe` to prevent overwriting existing files.
- The `ms3 extract` command now has a `--corpuswise` option allowing
to parse and extract one corpus after the other, avoiding the need
to parse all scores at once and keep them in memory before beginning
the extraction.
- The parser throws a warning if a score does not have a metronome
mark at the beginning (which can be hidden). This is to encourage
the inclusion of information on the basic beat unit (in 6/8 meter,
e.g., the metronome unit is typically a dotted quarter) and pace to
every score for better comparability.

Bugfixes

- For the `IGNORED_WARNINGS` file.
- For the `--threshold` argument of the `ms3 review` command.
- Writing and reading the `volta_mcs` column of `metadata.tsv`.
- 60, 63, 78, 79

Internal changes

- `utils.py` has been turned into a Python package containing the
mocules `constants`, `functions`, and `frictionless`.
- Not using the `frac` alias for `fractions.Fraction` anymore.
- The version number is not manually stored as a constant, instead it
is automatically written into `_version.py` upon initialization.

Other

This version contains the final version of the paper *A parser for
MuseScore 3 files and data factory for annotated music corpora* for
publication in the Journal of Open Source Software (JOSS).

1.2.12

This last version of ms3 1.x uses the \_version.py file introduced in
8f40b16.

Page 2 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.