Metadata-Version: 2.1
Name: pyfxr
Version: 0.1.0
Summary: SFXR clone using Pygame and Cython
Home-page: https://github.org/lordmauve/pyfxr
Author: Daniel Pope
Author-email: mauve@mauveweb.co.uk
License: UNKNOWN
Description: # pyfxr
        
        Sound effects generation for Python, compatible with Pygame and Pyglet.
        
        
        ## Pygame Usage
        
        ```
        # Set mixer to 44kHz mono
        pygame.mixer.pre_init(44100, channels=1)
        
        # Generate a sound
        tone = pygame.mixer.Sound(
            buffer=pyfxr.pluck(duration=1.0, pitch='A4')
        )
        
        # Play it
        tone.play()
        ```
        
        ## Pyglet Usage
        
        ```
        # Generate a sound
        explosion = pyglet.media.StaticSource(pyfxr.explosion())
        
        # Play it
        explosion.play()
        ```
        
        ## GUI
        
        A Pygame GUI is in development, to explore the feature set and create music!
        
        This can be run with `python main.py`.
        
        ![Screenshot](docs/_static/keyboard.png)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: gui
