Metadata-Version: 2.1
Name: pychordpro
Version: 0.1
Summary: A simple package to create, edit, compile files in the ChordPro file format.
Home-page: https://github.com/FraKappa/pychordpro
Author: Kappa
Author-email: f.cappetti.05@gmail.com
License: MIT
Download-URL: https://github.com/FraKappa/pychordpro/archive/v_01.tar.gz
Description: # pychordpro
        
        pychordpro is a simple Python package that allows to easly interact with the [ChordPro](https://www.chordpro.org/) file format.
        
        ## Installation
        
        To install the package you can simply type:
        
        ```
        pip install pychordpro
        ```
        
        ## Example Usage
        
        ```py
        import pychordpro
        
        song = Song(filename='mysong.cho', notes='latin')
        song.open()
        
        print(song.read())
        
        song.transpose(1)
        song.config('config.json')
        
        song.compile()
        ```
        
        ## Methods
        
        All the functions and methods are basically Python transcriptions of the [command line options](https://www.chordpro.org/chordpro/using-chordpro/) for ChordPro, so you will have to install the ChordPro file transformation program as well.
        
        However you can easily see the source code [here](https://github.com/FraKappa/pychordpro/blob/master/chordpro/chordpro.py).
        
        ChordPro installation guides for:
        * [Linux](https://www.chordpro.org/chordpro/chordpro-install-on-linux/)
        * [Windows](https://www.chordpro.org/chordpro/chordpro-install-on-windows/)
        * [Mac OS/X](https://www.chordpro.org/chordpro/chordpro-install-on-mac-osx/)
Keywords: chordpro,music
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
