Metadata-Version: 2.0
Name: pychord
Version: 0.0.3
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 :: Utilities
Classifier: License :: OSI Approved :: MIT License

pychord
=======

A library to handle musical chords in python.

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

.. code:: sh

    $ pip install pychord

Usage
-----

Create a Chord
~~~~~~~~~~~~~~

.. code:: python

    from pychord import Chord
    c = Chord("Am7")
    print c.info()

::

    Am7
    root=A
    quality=m7
    appended=[]
    on=None

Transpose a Chord
~~~~~~~~~~~~~~~~~

.. code:: python

    from pychord import Chord
    c = Chord("Am7/G")
    c.transpose(3)
    print c

::

    Cm7/Bb

Links
-----

-  https://pypi.python.org/pypi/pychord
-  https://github.com/yuma-m/pychord

License
-------

MIT License


