Metadata-Version: 2.1
Name: epsound
Version: 0.0.5
Summary: Sound player library
Home-page: https://github.com/EPC-MSU/epsound
Author: EPC MSU
Author-email: goncharovush@physlab.ru
License: MIT
Description: # epsound
        
        Minimalistic cross-platform library for playing sounds (from wav files).
        * Works on windows and linux.
        * Supports devices with architecture x86, x64 and arm.
        * Provides minimal latency when starting and stopping sound playback.
        * Suitable for adding sound effects to a device where you want to ensure maximum response speed.
        
        Repository: https://github.com/EPC-MSU/epsound
        ## Prerequisites
        
        Your linux system should have the following installed to successfully complete
        ```bash
             $ sudo apt-get install libasound2-dev
        ```
        
        ## Installation:
        
        Installation is very simple:
        ```bash
        pip install epsound
        ```
        
        ## Working example:
        
        ```Python
        import epsound
        import time
        
        if __name__ == "__main__":
            # Let's create object of class WavPlayer and add sound from file with name "one" to him
            p = epsound.WavPlayer()
            p.add_sound(file="sound.wav", name="one")
            # Then let's play sound 1 sec
            p.play("one")
            time.sleep(1)
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
