Skip to main content

A tool to generate stringed instrument visual aids

Project description

scales

A tool to generate stringed instrument visual aids

Installation

Install using:

pip install scales.py

Then import it like so:

from scales import Scales

Usage

Scales objects take at least the scale parameter, which should be a list of notes. They can be drawn using the draw function, where start and stop are the range of frets to show (defaults to showing 15 frets if not specified).

For example:

a_mixo = ['A', 'B', 'C#', 'D', 'E', 'F#', 'G']
six_string = Scales(title='A Mixolydian', scale=a_mixo)
six_string.draw(start=11, stop=15)

a_mix

By default, it will assume a 6 string guitar in standard tuning, but you can specify other tunings like:

c_major = ['C', 'D', 'E', 'F', 'G', 'A', 'B']
ukulele = Scales(title='C Major on Ukulele', strings=['G', 'C', 'E', 'A'], scale=c_major)
ukulele.draw()

c_maj_uke

Scales can be drawn without making it an object:

g_chord = ['G', 'B', 'D']
Scales(title='Open G', scale=g_chord).draw(stop=3)

open_g

Other helpful uses

Scales can be used to generate blank visuals to print out. Heres a blank 6 string fretboard:

Scales([]).draw()

Or a blank open chord chart:

Scales([]).draw(stop=3)

Dependencies

Library Description
matplotlib 2D plotting library
numpy Fundamental package for scientific computing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scales.py-0.1.2.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

scales.py-0.1.2-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page