Metadata-Version: 1.1
Name: pylrc
Version: 0.0.3
Summary: A library for parsing .lrc files
Home-page: https://github.com/doakey3/pylrc
Author: doakey3
Author-email: pylrc.dmodo@spamgourmet.com
License: MIT
Download-URL: https://github.com/doakey3/pylrc/tarball/0.0.3
Description-Content-Type: UNKNOWN
Description: =====
        PyLRC
        =====
        
        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)
            subs.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
