Metadata-Version: 2.1
Name: pmma
Version: 5.0.16
Summary: Python Multi-Media API (PMMA) is a multi-purpose API designed to make working on multi-media projects easier and faster!
Home-page: https://github.com/PycraftDeveloper/PMMA
Author: PycraftDev
Author-email: thomasjebbo@gmail.com
Project-URL: Bug Tracker, https://github.com/PycraftDeveloper/PMMA/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md

<div align="center">

  ![PMMA logo](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/SmallLogo.png)
</div>


# PMMA (Python Multi-Media API)

![PyPI - Wheel](https://img.shields.io/pypi/wheel/pmma) ![Python 3.8](https://img.shields.io/badge/python-3.8-blue) ![Python 3.9](https://img.shields.io/badge/python-3.9-blue) ![Python 3.10](https://img.shields.io/badge/python-3.10-blue) ![Python 3.11](https://img.shields.io/badge/python-3.11-blue) ![Windows](https://img.shields.io/badge/platform-Windows-blue?logo=windows) ![Linux](https://img.shields.io/badge/platform-Linux-yellow?logo=linux) ![macOS](https://img.shields.io/badge/platform-macOS-lightgrey?logo=apple) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/PycraftDeveloper/pmma) ![GitHub commits since latest release](https://img.shields.io/github/commits-since/PycraftDeveloper/pmma/latest)

PMMA is a Python module targeted at helping you build applications in the Python programming language. It does this by providing its own tools covering areas like 2D graphics, noise generation, audio and video playback, event handling, text rendering and much more. The API has two fundamental goals; to make application development in Python easier, whilst also focusing on improving the performance and efficiency of the end result. The API is also being engineered with compatibility with other python modules, like [Pygame](https://github.com/pygame/pygame), [PIL](https://github.com/python-pillow/Pillow) and [Numpy](https://github.com/numpy/numpy) and is ideal for prototyping, application development, simulations, graphics intensive tasks and game development.

## Contents

* [Development Progress](https://github.com/PycraftDeveloper/PMMA?tab=readme-ov-file#development-progress)
* [Installation](https://github.com/PycraftDeveloper/PMMA/blob/main/README.md#installation)
* [Build Guide](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/BuildGuides/intro.md#pmma-build-guide)
* [Troubleshooting](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/Troubleshooting/into.md#pmma-troubleshooting)
* [Credits](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/Troubleshooting/into.md#pmma-credits)
* [About](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/Troubleshooting/into.md#pmma-about)

## Development Progress

![Progress on PMMA v5.0.0](https://geps.dev/progress/100)

We are currently working on the next major update to PMMA, version 5.x.x. This update features a complete API rework with a significant proportion being re-written in C++ for a significant performance and efficiency improvement. This major update will also introduce all the features lacking from previous iterations of PMMA, including text rendering, aggregated events for text input and improvements to the accuracy and variety of procedural noise generation. If you want to check out our current progress list, you can find it here: [Progress on PMMA 5](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/DevelopmentProgress.md#progress-on-pmma-5)

## Installation

You can install the latest version of PMMA from PyPi using the command: `pip install pmma' or you can head over to the website here: [PMMA on PyPi](https://pypi.org/project/pmma/) to select a custom version to install.

### Requirements

In order to install PMMA 5 and newer, you must ensure you meet the following criteria:

| Category | Requirement |
| :-------- | :------: |
| Operating System | `Windows`, `ALT Linux 10+`, `RHEL 9+`, `Debian 11+`, `Fedora 34+`, `Mageia 8+`, `Photon OS 3.0 (with updates)`, `Ubuntu 21.04+` **Architecture**: `64-bit (x64)`<br><br>`MacOS` **Architecture**:  `arm-64` |
| Python Version | `3.8.x`, `3.9.x`, `3.10.x`, `3.11.x` |
| `pip` Version | `20.3 or newer` |

_Note: If your platform is not listed here then you can attempt to build your own version of PMMA using our [build guide](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/BuildGuides/intro.md)!_

<details><summary>Additional Technical Requirements</summary>

_Please note, these requirements are only needed by users installing PMMA onto Linux machines and in most cases the operating systems listed above should be compatible._

* In order for PMMA to work as expected, you must be using either X-Lib, or Wayland. This means that Ubuntu 21.04 DESKTOP will work, but Ubuntu 21.04 SERVER is unlikely to.
* Additionally, you will need `glibc 2.28` or newer, this can be checked on linux using the command `ldd --version` (root not required). The result should be on the first line as shown in the image below:

![Example output](https://github.com/user-attachments/assets/bcd09e5a-8f2e-4a39-b323-dd15f94efe8b)

</details>
</br>

> For older versions of PMMA, there are no hardware requirements.

_If you encounter any issues or problems then check out our [troubleshooting page](https://github.com/PycraftDeveloper/PMMA/blob/main/repository/Troubleshooting/into.md#pmma-troubleshooting)._

## Credits

PMMA is made possible thanks to the following:

C/C++ projects (used in PMMA 5 and newer)
* LIBZ - 1.3.1 - https://github.com/madler/zlib
* Libpng - 1.6.49 - https://github.com/glennrp/libpng
* GLFW - 3.4 - https://github.com/glfw/glfw
* FreeType - 2-13-3 - https://gitlab.freedesktop.org/freetype/freetype
* GLM - 0.9.3.2 - https://github.com/icaven/glm
* GLAD - 2.0.8 - https://github.com/Dav1dde/glad
* HarfBuzz - 11.2.1 - https://github.com/harfbuzz/harfbuzz
* flat_hash_map - N/A - https://github.com/skarupke/flat_hash_map
* STB - N/A - https://github.com/nothings/stb

Python projects (used in PMMA 1 and newer)
* PyAV - latest - https://github.com/PyAV-Org/PyAV
* Cython - latest - https://github.com/cython/cython
* GetOSTheme - latest - https://github.com/FHPythonUtils/GetOSTheme
* MoviePy - latest - https://github.com/Zulko/moviepy
* Num2Words - latest - https://github.com/savoirfairelinux/num2words
* Pedalboard - latest - https://github.com/spotify/pedalboard
* Pillow - latest - https://github.com/python-pillow/Pillow
* Pprofile - latest - https://github.com/vpelletier/pprofile
* Psutil - latest - https://github.com/giampaolo/psutil
* PyADL - latest - https://github.com/nicolargo/pyadl
* Pyrr - latest - https://github.com/adamlwgriffiths/Pyrr
* Requests - latest - https://github.com/psf/requests
* Send2Trash - latest - https://github.com/arsenetar/send2trash
* SoundDevice - latest - https://github.com/spatialaudio/python-sounddevice/
* SoundFile - latest - https://github.com/bastibe/python-soundfile
* Waiting - latest - https://github.com/vmalloc/waiting
* Watchdog - latest - https://github.com/gorakhargosh/watchdog/
* PyWin32 - latest - https://github.com/mhammond/pywin32
* WMI - latest - https://timgolden.me.uk/python/wmi/

NONE of the projects mentioned above are owned or maintained by PycraftDeveloper the maker of this repository, who would also like to say a big thank you to all the teams working on these projects!

You can check out our licenses and the licenses of all the C/C++ projects PMMA uses as standard [here](https://github.com/PycraftDeveloper/PMMA/tree/main/pmma/licenses) or on your installed version of PMMA (version 5 or later) under `pmma/licenses`.

_Note: If you spot a problem in our licensing or distribution of third party dependencies please raise the problem as [an issue here](https://github.com/PycraftDeveloper/PMMA/issues) with the title-prefix: 'LICENSING: ' and we will respond to these problems as soon as possible. Thanks!_

## About

We have worked on numerous large applications using the Python programming language. Most notably [Pycraft](https://github.com/PycraftDeveloper/Pycraft) which is our flagship project, an OpenGL based game using Python. Every time we write these large projects, we often find ourselves writing the same utility programs - which are small programs that help to eliminate complexity in our larger program files. So we decided to combine all of these utility programs into this project, PMMA which is intended then to make writing these larger applications easier as we don't need to keep re-using the same utility programs. The benefits don't stop there though as we are also ensuring this API is as fast and efficient as possible.

Please note that PMMA is currently in a developmental state, meaning that the API is subject to change - we are hoping to remove this warning and improve backwards compatibility in PMMA 6.
