Package that make easy creation of highly customizable fretboards and chords diagrams
- License: GNU Affero General Public License v3.0
- Documentation: https://fretboardgtr.readthedocs.io/en/latest.
To get started simply install the package from PyPI
fretboardgtr
needs to have the following install in order to run :
sudo apt install libcairo2-dev pkg-config
pip install fretboardgtr
from fretboardgtr.fretboard import FretBoard
from fretboardgtr.notes_creators import ScaleFromName
fretboard = FretBoard()
c_major = ScaleFromName(root="C", mode="Ionian").get()
fretboard.add_notes(scale=c_major)
fretboard.export("my_fretboard.svg", format="svg")
All the documentation can be found in the documentation