python-mingus icon indicating copy to clipboard operation
python-mingus copied to clipboard

Mingus is a music package for Python

Results 66 python-mingus issues
Sort by recently updated
recently updated
newest added

The `is_asymmetrical` function was misspelled consistently as `is_assymetrical` in the documentation which threw me for a bit of a loop, so this is a quick minor PR to correct that.

Mingus version 0.6.1 To reproduce: ``` from mingus.containers.note_container import NoteContainer chord9 = NoteContainer() for note in ["C", "E", "G", "B", "D-5"]: chord9.add_note(note) print(chord9.determine()) # Succeeds chord11 = NoteContainer() try: for...

bug

Hi! I'm total beginner to Python, a little bit more knowledge about music theory, but I'm learning both, and have so much fun and excitement! :) Let's say I would...

core.diatonic module non-existant in the current version of mingus. Completely missing. Makes following the tutorial a little hard.

A call like `from_shorthand('C7sus4')` resulted in an "Unknown shorthand" error. I noticed that some other entries in `chord_shorthand_meaning` were not present in `chord_shorthand` so I added these as well. To...

why has this yet to be merged? https://github.com/bspaans/python-mingus/pull/87

just spent a ton of time trying to figure out why everything in the library wasn't installing. It was. On the tutorial you have "import mingus.extra.LilyPond as LilyPond" but it...

Links in wiki used to point to https://github.com/bspaans/python-mingus/mingus_examples/ (which doesn't work). I changed this to the canonical link for mingus_examples, which is: https://github.com/bspaans/python-mingus/blob/HEAD/mingus_examples

Hello! My question is, What is the concise way to determine the chord from note indices? Suppose I have Eb major triad: ``` chord = ["Eb", "G", "Bb"] chords.determine(chord) #...