Metadata-Version: 2.0
Name: pychord
Version: 0.0.2
Summary: A library to handle musical chords in python.
Home-page: https://github.com/yuma-m/pychord
Author: Yuma Mihira
Author-email: info@yurax2.com
License: MIT
Keywords: music chord
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License

pychord
=======

A library to handle musical chords in python. If you want to know more
about chord, please see https://en.wikipedia.org/wiki/Chord\_(music)

Installation
------------

.. code:: sh

    $ pip install pychord

Usage
-----

.. code:: python

    >>> from pychord import Chord
    >>> c = Chord("Am7")
    >>> print c.info()
    Am7
    root=A
    quality=m7
    appended=[]
    on=None


