Metadata-Version: 2.1
Name: simple-pygame
Version: 0.0.2
Summary: A Python library that provides many features using Pygame and other libraries.
Author: YoutuberTom
Project-URL: Homepage, https://github.com/YoutuberTom/Simple_Pygame
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

![Simple Pygame logo](https://raw.githubusercontent.com/YoutuberTom/Simple_Pygame/main/docs/images/Logo.png)

### Simple Pygame is a [Python](https://www.python.org/) library that provides many features using [Pygame](https://www.pygame.org/news) and other libraries. It can help you create multimedia applications much easier and save you a lot of time.

# **Installation:**

    pip install simple_pygame

# **Dependencies:**

- ### pygame >= 2.1.2
- ### moviepy >= 1.0.3
- ### pyaudio >= 0.2.13

# **Example:**

## In this example we play a mp3 file:

    import simple_pygame
    simple_pygame.init()

    if __name__ == "__main__":
        music = simple_pygame.mixer.Music("Music.mp3")
        music.play()

        while music.get_busy():
            pass

### **Note**: You can play any file contains audio that supported by ffmpeg.

# **License:**

### This library is distributed under [MIT license](https://github.com/YoutuberTom/Simple_Pygame/blob/main/LICENSE).
