Metadata-Version: 1.1
Name: srt
Version: 1.2.0
Summary: A tiny library for parsing, modifying, and composing SRT files.
Home-page: https://github.com/cdown/srt
Author: Chris Down
Author-email: chris@chrisdown.name
License: Public Domain
Description: |travis| |coveralls|
        
        .. |travis| image:: https://travis-ci.org/cdown/srt.svg?branch=develop
          :target: https://travis-ci.org/cdown/srt
          :alt: Test status
        
        .. |coveralls| image:: https://coveralls.io/repos/cdown/srt/badge.svg?branch=develop&service=github
          :target: https://coveralls.io/github/cdown/srt?branch=develop
          :alt: Coverage
        
        srt is a tiny Python library for parsing, modifying, and composing `SRT
        files`_. Take a look at the quickstart_ for a basic overview of the library.
        `Detailed API documentation`_ is also available.
        
        Want to see some examples of its use? Take a look at the `tools shipped with
        the library`_.
        
        Why choose this library?
        ------------------------
        
        - Extremely lightweight, excluding docstrings/comments/etc around 200 SLOC
        - High quality test suite using Hypothesis_
        - `100% test coverage`_ (including branches)
        - `Well documented API`_, at both a high and low level
        - Native support for Python 2 and 3
        - No dependencies outside of the standard library
        - Tolerant of many common errors found in real-world SRT files
        - Completely Unicode compliant
        - `Released into the public domain`_
        - Real world tested — used in production to process thousands of SRT files
          every day
        
        
        .. _quickstart: http://srt.readthedocs.org/en/latest/quickstart.html
        .. _`Detailed API documentation`: http://srt.readthedocs.org/en/latest/api.html
        .. _`SRT files`: https://en.wikipedia.org/wiki/SubRip#SubRip_text_file_format
        .. _Hypothesis: https://github.com/DRMacIver/hypothesis
        .. _`100% test coverage`: https://coveralls.io/github/cdown/srt?branch=develop
        .. _`Well documented API`: http://srt.readthedocs.org/en/latest/index.html
        .. _`Released into the public domain`: https://cr.yp.to/publicdomain.html
        .. _`tools shipped with the library`: https://github.com/cdown/srt/tree/develop/srt_tools
        
        Installation
        ------------
        
        To install the latest stable version from PyPi:
        
        .. code::
        
            pip install -U srt
        
        To install the latest development version directly from GitHub:
        
        .. code::
        
            pip install -U git+https://github.com/cdown/srt.git@develop
        
        Testing
        -------
        
        .. code::
        
           pip install tox
           tox -e quick
        
        .. _Tox: https://tox.readthedocs.org
        
Keywords: srt
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Text Processing
