Metadata-Version: 1.1
Name: pylrc
Version: 0.1.1
Summary: A library for parsing .lrc files
Home-page: https://github.com/doakey3/pylrc
Author: doakey3, SimonIT
Author-email: pylrc.dmodo@spamgourmet.com
License: MIT
Download-URL: https://github.com/doakey3/pylrc/releases/download/0.1.0/pylrc.tar.gz
Description: =====
        PyLRC
        =====
        .. image:: https://img.shields.io/pypi/v/pylrc.svg
        .. image:: https://img.shields.io/pypi/dm/pylrc.svg
        .. image:: https://img.shields.io/github/license/doakey3/pylrc.svg
        
        A python library for parsing and converting .lrc files
        
        Usage
        =====
        
        .. code:: python
        
            import pylrc
            
            lrc_file = open('example.lrc')
            lrc_string = ''.join(lrc_file.readlines())
            lrc_file.close()
            
            subs = pylrc.parse(lrc_string)
            for sub in subs:
                sub.shift(minutes=1, seconds=13, milliseconds=325) # offset by 01:13.325
            
            srt = subs.toSRT() # convert lrc to srt string
            
            lrc_string = subs.toLRC() # convert to lrc string
            
        Installation
        ============
        
        .. code::
        
            sudo pip install pylrc
            
            
            
        
Platform: UNKNOWN
