Metadata-Version: 1.2
Name: chparse
Version: 0.0.0
Summary: Parse Clone Hero charts with ease!.
Home-page: https://github.com/Kenny2github/chparse
Author: Ken Hilton
License: GPLv3+
Description: chparse - Parse Clone Hero charts with ease!
        
        Installation
        ============
        
        Install the stable build via::
        
            pip install chparse
        
        Or install the latest development (unstable) build via::
        
            git clone https://github.com/Kenny2github/chparse.git
            cd chparse
            python setup.py install
        
        Example Usage
        =============
        
        Assuming your .chart file is named "notes.chart"...
        
        .. code-block:: python
        
            >>> import chparse
            >>> with open('notes.chart') as chartfile:
            ...     chart = chparse.load(chartfile)
            >>> chart.instruments[chparse.EXPERT][chparse.GUITAR].notes[0]
            <Note: 0 = N 3 0 (<Flags.NONE: 0>)>
Keywords: file format parser
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Markup
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=2.7
