Metadata-Version: 2.1
Name: mscore3
Version: 1.1.1
Summary: A python library for opening/inspecting/modifying MuseScore3 files.
Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
Description-Content-Type: text/markdown
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Editors
Classifier: Topic :: Multimedia :: Sound/Audio :: MIDI
Requires-Dist: sf2utils
Requires-Dist: console_quiet
Requires-Dist: node_soso
Project-URL: Home, https://github.com/Zen-Master-SoSo/mscore

# mscore3

A python library for opening/inspecting/modifying MuseScore3 files.

## Importing

The import name is "mscore"

## Simple usage

	from mscore import Score

	score = Score(argv[1])
	for part in score.parts():
		if part.name == "Harp":
			for channel in part.instrument().channels():
				channel.port = 4

## Formats

Reads/writes both .mscx and .mscz files.

