MCPcopy Create free account
hub / github.com/bspaans/python-mingus / dominant_seventh

Function dominant_seventh

mingus/core/chords.py:275–282  ·  view source on GitHub ↗

Build a dominant seventh on note. Example: >>> dominant_seventh('C') ['C', 'E', 'G', 'Bb']

(note)

Source from the content-addressed store, hash-verified

273
274
275def dominant_seventh(note):
276 """Build a dominant seventh on note.
277
278 Example:
279 >>> dominant_seventh('C')
280 ['C', 'E', 'G', 'Bb']
281 """
282 return major_triad(note) + [intervals.minor_seventh(note)]
283
284
285def half_diminished_seventh(note):

Callers 4

dominant_ninthFunction · 0.85
dominant_flat_fiveFunction · 0.85
lydian_dominant_seventhFunction · 0.85
hendrix_chordFunction · 0.85

Calls 1

major_triadFunction · 0.85

Tested by

no test coverage detected