Metadata-Version: 2.1
Name: pypat
Version: 0.2.2
Summary: A Python library that makes playing audio simple.
Home-page: https://github.com/tnewman/pat
Author: Thomas Newman
License: UNKNOWN
Description: # pypat
        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/tree/nodejs-support#Prerequisites) before installing.
        
        ## Install
        ```bash
        pip3 install pypat
        ```
        
        ## Example
        ```python
        >>> import pypat
        
        # Play a file
        >>> pypat.play('amerika.mpga')
        
        # Play a file asynchronously
        >>> pypat.play_async('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
