Metadata-Version: 2.1
Name: pypat
Version: 0.6.1
Summary: A Python library that makes playing audio simple.
Home-page: https://github.com/tnewman/pat
Author: Thomas Newman
Author-email: tnewman@users.noreply.github.com
License: UNKNOWN
Description: # pypat
        [![pypi](https://img.shields.io/pypi/v/pypat.svg)](https://pypi.org/project/pypat)
        ![cicd](https://github.com/tnewman/pat/workflows/PAT%20CI/CD/badge.svg)
        
        pypat is a Python library that makes playing audio simple. pypat uses FFmpeg to provide 
        robust support for virtually any audio format and SDL2 to play back audio.
        
        ## Prerequisites
        Install [Prerequisites](https://github.com/tnewman/pat#Prerequisites) before installing.
        
        ## Install
        ```bash
        pip3 install pypat
        ```
        
        ## Example
        ```python
        >>> import pypat
        
        # Play a file
        >>> pypat.play('amerika.mpga')
        
        # Skip the current file
        >>> pypat.skip()
        
        # Pause audio playback
        >>> pypat.pause()
        
        # Resume audio playback
        >>> pypat.resume()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
