ManimPango


NameManimPango JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://manimpango.manim.community/
SummaryBindings for Pango for using with Manim.
upload_time2023-10-14 18:20:33
maintainerThe Manim Community Developers
docs_urlNone
authorNaveen M K
requires_python>=3.8
licenseMIT
keywords cython pango cairo manim
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # ManimPango

<p align="center">
    <a href="https://pypi.org/project/manimpango/"><img src="https://img.shields.io/pypi/v/manimpango.svg?style=flat&logo=pypi" alt="PyPI Latest Release"></a>
    <a href="https://pypi.org/project/manimpango/"><img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/manimpango"></a>
    <a href="https://pypi.org/project/manimpango/"><img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/manimpango"></a>
    <a href="https://choosealicense.com/licenses/mit/"><img alt="PyPI - License" src="https://img.shields.io/pypi/l/manimpango"></a>
    <a href="https://pypi.org/project/manimpango/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/ManimPango.svg?style=flat"></a>
    <a href='https://manimpango.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/manimpango/badge/?version=latest' alt='Documentation Status' /></a>
    <br>
    <img src="https://github.com/ManimCommunity/manimpango/workflows/Build%20Wheels/badge.svg">
</p>

**ManimPango** is a C binding for [Pango](https://pango.gnome.org/) using [Cython](https://cython.org/), which is internally used in [Manim](https://www.manim.community) to render (non-LaTeX) text.



## INSTALL

Installing **ManimPango** is super easy, just use `pip`. It is [`manimpango`](https://pypi.org/project/manimpango/) in PyPi.

```sh
pip install manimpango
```

For **Linux Users**, there are no Wheels. You must have a C compiler as well as **Pango** and its dependencies along with the **Pango** development headers. See [BUILDING](#BUILDING) for more information.

## WORKFLOW SETUP / CONTRIBUTING

To make it easier for developers to contribute, we have a pre-commit workflow that will check for `black` formatting and `flake` checking.

```sh
pip install pre-commit
pre-commit install
```

## BUILDING

### Linux/MacOS

For building **ManimPango**, you need
* a C compiler
* Python's development headers
* [`pkg-config`](https://www.freedesktop.org/wiki/Software/pkg-config/)
* [Pango](https://pango.gnome.org) along with its development headers and its dependencies.

If you are on MacOS, you can use [brew](https://brew.sh) to install those. Using [MacPorts](https://www.macports.org) is also possible, but their version of **Pango** is old and will probably not be updated in the near future.

```sh
brew install pango pkg-config
```

If you are on Linux, you can use a system package manager to do so. For example, if you are on Debian based system, you can use `apt`

```sh
apt install libpango1.0-dev pkg-config python3-dev
```

**Arch Linux:** `pacman -S pango pkgconf`

**Fedora:** `dnf install pango-devel pkg-config python3-devel`

Or similar in your system's package manager.

#### Using `tar` archives

If you don't want to contribute to this repository, you can use the tar archives published in PyPi, or just use `pip` to install using

```sh
pip install manimpango --no-binary :all:
```

**Note**: `pip` by default uses wheels, so make sure to pass the `--no-binary` parameter.

#### Using `git` clones / Contributing

Please remember to do this inside your virtual environment, if you want to use your **Manimpango** with **Manim**.

```sh
python -m venv ./venv
source venv/bin/activate # Linux/macOS
venv\Scripts\activate # Windows
```

If you are using a clone of this repository, you will need [Cython](https://cython.org) which can be easily installed using `pip`:

```sh
pip install Cython
```

After that you can use `pip` to install the clone with the following command:

```sh
pip install -e .
pip install -r requirements-dev.txt .
```

Next, run the setup script:

```sh
python setup.py build_ext -i
```

After installation is complete, you should be able to run pytest:

```sh
pytest
```

You will need to this way if you want to *contribute* to **ManimPango**.

### Contributing with Windows

*If you are a normal user, don't read this, you have wheels which you can just install directly using pip.*

If you want to contribute to **ManimPango** and you are on Windows, this section is for you.

As Windows does not include a C compiler by default, you will first need to install one. You have two choices:

1. MinGW/Msys2

2. Visual Studio

#### MinGW/Msys2

1. Download **MSYS2** from the download link provided on their page https://www.msys2.org/#installation and install it according to their instructions.
2. Once you have **MSYS2** installed,  it offers you three different shells: the **MinGW32** shell, the **MinGW64** shell and **MSYS** shell. In order for the following steps to work, you have to open the **MSYS2 MinGW64** shell (you can search for this). Small hint: it has a blue color logo.
3. Run the following commands to install Python, Pango, Cython, Numpy, Scipy, Pillow, Pycairo and ffmpeg
```sh
pacman -S mingw-w64-x86_64-python
pacman -S mingw-w64-x86_64-python-pip
pacman -S mingw-w64-x86_64-pango
pacman -S mingw-w64-x86_64-cython
pacman -S mingw-w64-x86_64-python-numpy
pacman -S mingw-w64-x86_64-python-scipy
pacman -S mingw-w64-x86_64-python-pillow
pacman -S mingw-w64-x86_64-python-cairo
pacman -S mingw-w64-x86_64-ffmpeg
```
4. Still in the same shell, install **Manim** using `pip install manim`.
5. Finally, get your clone of **ManimPango**, `cd` into that directory and then run `pip install -e .`.
**Note** You can't use it with your regular Python version. It will cause weird errors if you do so. For working with **ManimPango**, you must be inside the `MSYS2 MINGW64 shell`.
6. You can then use `manim` inside that shell, to run **Manim**.
**Hint**: If you want to try out Python interactively, you can open `idle` using the command `python -m idlelib`  inside that shell.

#### Visual Studio

First, install Visual Studio as specified in https://wiki.python.org/moin/WindowsCompilers. Possibly Visual Studio Build Tools 2019 with Windows10 SDK.

Then run the script at `packing/download_dlls.py`. This will get a **Pango** build along with `pkg-config` and install it at `C:\cibw\vendor`. Add `C:\cibw\vendor\bin` and `C:\cibw\vendor\pkg-config\bin` to PATH.

**Note:** You can change the install location by editing line 24 of the file `packing/download_dlls.py`.

Then set an environment variable `PKG_CONFIG_PATH`=`C:\cibw\vendor\lib\pkgconfig`.

Then you can install Cython using

```sh
pip install Cython
```

Finally, you can install your local **ManimPango** clone just like any other python package by typing:

```sh
pip install .
```

**Important**: You have to to use https://docs.python.org/3/library/os.html#os.add_dll_directory before running **ManimPango**. Alternatively, you need to copy the `dll` at `C:\cibw\vendor\bin` to the folder where **ManimPango** is compiled.  This is applicable for Python 3.8 and above.

```python
import os
os.add_dll_directory('C:\cibw\vendor\bin')
```

## Code of Conduct

Our full code of conduct, and how we enforce it, can be read on [our website](https://docs.manim.community/en/latest/conduct.html).

## License

This project is licensed under MIT License. The wheels distributed on PyPI contains compiled version of Pango and Cairo subject to terms of the GNU LGPL and other licenses. Consult the licenses of each library for more informations.
            

Raw data

            {
    "_id": null,
    "home_page": "https://manimpango.manim.community/",
    "name": "ManimPango",
    "maintainer": "The Manim Community Developers",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "cython,pango,cairo,manim",
    "author": "Naveen M K",
    "author_email": "naveen@manim.community",
    "download_url": "https://files.pythonhosted.org/packages/48/5b/d1249c3d90324a1d4dce4711e507c8ec87addca61d1304ffa55513783ba3/ManimPango-0.5.0.tar.gz",
    "platform": "Linux",
    "description": "# ManimPango\n\n<p align=\"center\">\n    <a href=\"https://pypi.org/project/manimpango/\"><img src=\"https://img.shields.io/pypi/v/manimpango.svg?style=flat&logo=pypi\" alt=\"PyPI Latest Release\"></a>\n    <a href=\"https://pypi.org/project/manimpango/\"><img alt=\"PyPI - Wheel\" src=\"https://img.shields.io/pypi/wheel/manimpango\"></a>\n    <a href=\"https://pypi.org/project/manimpango/\"><img alt=\"PyPI - Downloads\" src=\"https://img.shields.io/pypi/dm/manimpango\"></a>\n    <a href=\"https://choosealicense.com/licenses/mit/\"><img alt=\"PyPI - License\" src=\"https://img.shields.io/pypi/l/manimpango\"></a>\n    <a href=\"https://pypi.org/project/manimpango/\"><img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/ManimPango.svg?style=flat\"></a>\n    <a href='https://manimpango.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/manimpango/badge/?version=latest' alt='Documentation Status' /></a>\n    <br>\n    <img src=\"https://github.com/ManimCommunity/manimpango/workflows/Build%20Wheels/badge.svg\">\n</p>\n\n**ManimPango** is a C binding for [Pango](https://pango.gnome.org/) using [Cython](https://cython.org/), which is internally used in [Manim](https://www.manim.community) to render (non-LaTeX) text.\n\n\n\n## INSTALL\n\nInstalling **ManimPango** is super easy, just use `pip`. It is [`manimpango`](https://pypi.org/project/manimpango/) in PyPi.\n\n```sh\npip install manimpango\n```\n\nFor **Linux Users**, there are no Wheels. You must have a C compiler as well as **Pango** and its dependencies along with the **Pango** development headers. See [BUILDING](#BUILDING) for more information.\n\n## WORKFLOW SETUP / CONTRIBUTING\n\nTo make it easier for developers to contribute, we have a pre-commit workflow that will check for `black` formatting and `flake` checking.\n\n```sh\npip install pre-commit\npre-commit install\n```\n\n## BUILDING\n\n### Linux/MacOS\n\nFor building **ManimPango**, you need\n* a C compiler\n* Python's development headers\n* [`pkg-config`](https://www.freedesktop.org/wiki/Software/pkg-config/)\n* [Pango](https://pango.gnome.org) along with its development headers and its dependencies.\n\nIf you are on MacOS, you can use [brew](https://brew.sh) to install those. Using [MacPorts](https://www.macports.org) is also possible, but their version of **Pango** is old and will probably not be updated in the near future.\n\n```sh\nbrew install pango pkg-config\n```\n\nIf you are on Linux, you can use a system package manager to do so. For example, if you are on Debian based system, you can use `apt`\n\n```sh\napt install libpango1.0-dev pkg-config python3-dev\n```\n\n**Arch Linux:** `pacman -S pango pkgconf`\n\n**Fedora:** `dnf install pango-devel pkg-config python3-devel`\n\nOr similar in your system's package manager.\n\n#### Using `tar` archives\n\nIf you don't want to contribute to this repository, you can use the tar archives published in PyPi, or just use `pip` to install using\n\n```sh\npip install manimpango --no-binary :all:\n```\n\n**Note**: `pip` by default uses wheels, so make sure to pass the `--no-binary` parameter.\n\n#### Using `git` clones / Contributing\n\nPlease remember to do this inside your virtual environment, if you want to use your **Manimpango** with **Manim**.\n\n```sh\npython -m venv ./venv\nsource venv/bin/activate # Linux/macOS\nvenv\\Scripts\\activate # Windows\n```\n\nIf you are using a clone of this repository, you will need [Cython](https://cython.org) which can be easily installed using `pip`:\n\n```sh\npip install Cython\n```\n\nAfter that you can use `pip` to install the clone with the following command:\n\n```sh\npip install -e .\npip install -r requirements-dev.txt .\n```\n\nNext, run the setup script:\n\n```sh\npython setup.py build_ext -i\n```\n\nAfter installation is complete, you should be able to run pytest:\n\n```sh\npytest\n```\n\nYou will need to this way if you want to *contribute* to **ManimPango**.\n\n### Contributing with Windows\n\n*If you are a normal user, don't read this, you have wheels which you can just install directly using pip.*\n\nIf you want to contribute to **ManimPango** and you are on Windows, this section is for you.\n\nAs Windows does not include a C compiler by default, you will first need to install one. You have two choices:\n\n1. MinGW/Msys2\n\n2. Visual Studio\n\n#### MinGW/Msys2\n\n1. Download **MSYS2** from the download link provided on their page https://www.msys2.org/#installation and install it according to their instructions.\n2. Once you have **MSYS2** installed,  it offers you three different shells: the **MinGW32** shell, the **MinGW64** shell and **MSYS** shell. In order for the following steps to work, you have to open the **MSYS2 MinGW64** shell (you can search for this). Small hint: it has a blue color logo.\n3. Run the following commands to install Python, Pango, Cython, Numpy, Scipy, Pillow, Pycairo and ffmpeg\n```sh\npacman -S mingw-w64-x86_64-python\npacman -S mingw-w64-x86_64-python-pip\npacman -S mingw-w64-x86_64-pango\npacman -S mingw-w64-x86_64-cython\npacman -S mingw-w64-x86_64-python-numpy\npacman -S mingw-w64-x86_64-python-scipy\npacman -S mingw-w64-x86_64-python-pillow\npacman -S mingw-w64-x86_64-python-cairo\npacman -S mingw-w64-x86_64-ffmpeg\n```\n4. Still in the same shell, install **Manim** using `pip install manim`.\n5. Finally, get your clone of **ManimPango**, `cd` into that directory and then run `pip install -e .`.\n**Note** You can't use it with your regular Python version. It will cause weird errors if you do so. For working with **ManimPango**, you must be inside the `MSYS2 MINGW64 shell`.\n6. You can then use `manim` inside that shell, to run **Manim**.\n**Hint**: If you want to try out Python interactively, you can open `idle` using the command `python -m idlelib`  inside that shell.\n\n#### Visual Studio\n\nFirst, install Visual Studio as specified in https://wiki.python.org/moin/WindowsCompilers. Possibly Visual Studio Build Tools 2019 with Windows10 SDK.\n\nThen run the script at `packing/download_dlls.py`. This will get a **Pango** build along with `pkg-config` and install it at `C:\\cibw\\vendor`. Add `C:\\cibw\\vendor\\bin` and `C:\\cibw\\vendor\\pkg-config\\bin` to PATH.\n\n**Note:** You can change the install location by editing line 24 of the file `packing/download_dlls.py`.\n\nThen set an environment variable `PKG_CONFIG_PATH`=`C:\\cibw\\vendor\\lib\\pkgconfig`.\n\nThen you can install Cython using\n\n```sh\npip install Cython\n```\n\nFinally, you can install your local **ManimPango** clone just like any other python package by typing:\n\n```sh\npip install .\n```\n\n**Important**: You have to to use https://docs.python.org/3/library/os.html#os.add_dll_directory before running **ManimPango**. Alternatively, you need to copy the `dll` at `C:\\cibw\\vendor\\bin` to the folder where **ManimPango** is compiled.  This is applicable for Python 3.8 and above.\n\n```python\nimport os\nos.add_dll_directory('C:\\cibw\\vendor\\bin')\n```\n\n## Code of Conduct\n\nOur full code of conduct, and how we enforce it, can be read on [our website](https://docs.manim.community/en/latest/conduct.html).\n\n## License\n\nThis project is licensed under MIT License. The wheels distributed on PyPI contains compiled version of Pango and Cairo subject to terms of the GNU LGPL and other licenses. Consult the licenses of each library for more informations.",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Bindings for Pango for using with Manim.",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "https://manimpango.manim.community/",
        "Homepage": "https://manimpango.manim.community/",
        "Release notes": "https://github.com/ManimCommunity/ManimPango/releases/",
        "Source": "https://github.com/ManimCommunity/manimpango"
    },
    "split_keywords": [
        "cython",
        "pango",
        "cairo",
        "manim"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8371766cd5c911470b67b52dec6344c661ac5f1fcbb7ebd85460fb2f025c48a0",
                "md5": "9305ee41655c227399e8a62eb80603aa",
                "sha256": "b3309536038e11a4020bf5422d36b691e5583d38f616311c75527faa853fa948"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9305ee41655c227399e8a62eb80603aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4116705,
            "upload_time": "2023-10-14T18:39:25",
            "upload_time_iso_8601": "2023-10-14T18:39:25.555633Z",
            "url": "https://files.pythonhosted.org/packages/83/71/766cd5c911470b67b52dec6344c661ac5f1fcbb7ebd85460fb2f025c48a0/ManimPango-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e2302c48e0f72f6143020abaf04e2ae3cca40f4ba0bd4e3be0e1c2fd038f221",
                "md5": "4b6712dbd537d41abf82d2f1e3b002ba",
                "sha256": "7e301f0d2ceeb05b82dbb5ddd1e2397b6de7ef4ab556d04c0765eb29f18be981"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "4b6712dbd537d41abf82d2f1e3b002ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3430661,
            "upload_time": "2023-10-14T18:39:28",
            "upload_time_iso_8601": "2023-10-14T18:39:28.343100Z",
            "url": "https://files.pythonhosted.org/packages/2e/23/02c48e0f72f6143020abaf04e2ae3cca40f4ba0bd4e3be0e1c2fd038f221/ManimPango-0.5.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b0d2d8520038f65192fd1fd8061b52dc2193358761abcfc00128d1abd0c260b",
                "md5": "6b5b329913dd673247001ae6766b809f",
                "sha256": "26053a59e352c11e33fa224be6fde095a08c9db2665895ada7689fdeb225064c"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b5b329913dd673247001ae6766b809f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4074923,
            "upload_time": "2023-10-14T18:39:30",
            "upload_time_iso_8601": "2023-10-14T18:39:30.512494Z",
            "url": "https://files.pythonhosted.org/packages/5b/0d/2d8520038f65192fd1fd8061b52dc2193358761abcfc00128d1abd0c260b/ManimPango-0.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8180510be2b2392651bed2be604464d85f2b65fa3c338b6e3927fd7c3574190d",
                "md5": "a9e21cddb30ec30e3fe1ef71dd3859ab",
                "sha256": "f8a866a03c8a569dfaf08035748aea5c56f5e729d12682aae5d25fbe837a6270"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9e21cddb30ec30e3fe1ef71dd3859ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4116762,
            "upload_time": "2023-10-14T18:39:33",
            "upload_time_iso_8601": "2023-10-14T18:39:33.446893Z",
            "url": "https://files.pythonhosted.org/packages/81/80/510be2b2392651bed2be604464d85f2b65fa3c338b6e3927fd7c3574190d/ManimPango-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bba6b86f7fd0121ce58e2c23ada1ffd1910c8b3fa43500c8fc5c18932a7e48e",
                "md5": "fed64110f3b20a7d658a6bd6ebfc1676",
                "sha256": "5de05ac673b1ac597cc3e4e0e05756195b387f8f96b81cd03767a9f12f8af3f4"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "fed64110f3b20a7d658a6bd6ebfc1676",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3430534,
            "upload_time": "2023-10-14T18:39:35",
            "upload_time_iso_8601": "2023-10-14T18:39:35.462619Z",
            "url": "https://files.pythonhosted.org/packages/9b/ba/6b86f7fd0121ce58e2c23ada1ffd1910c8b3fa43500c8fc5c18932a7e48e/ManimPango-0.5.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d420142b4597beabd3c0dfa913cf455873408c740c64fbf809db9538a2c374a7",
                "md5": "5da30cf3641f55d204794862a20dcad6",
                "sha256": "86e68c085e455d4bd607c2f63fcce41d1496a873dde29c413a3fbd98ff99c258"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5da30cf3641f55d204794862a20dcad6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4074993,
            "upload_time": "2023-10-14T18:39:37",
            "upload_time_iso_8601": "2023-10-14T18:39:37.213246Z",
            "url": "https://files.pythonhosted.org/packages/d4/20/142b4597beabd3c0dfa913cf455873408c740c64fbf809db9538a2c374a7/ManimPango-0.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2872787d902d255d42301473f898922a39963ce913c1c6b2bea80ba78be77d2c",
                "md5": "6e7e724eabb6f3d672e863b04b946b4e",
                "sha256": "bf4a09fe1989763ea041fcce044ce501d89678bcc14084949f6792fc3b204517"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e7e724eabb6f3d672e863b04b946b4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4117555,
            "upload_time": "2023-10-14T18:39:39",
            "upload_time_iso_8601": "2023-10-14T18:39:39.349346Z",
            "url": "https://files.pythonhosted.org/packages/28/72/787d902d255d42301473f898922a39963ce913c1c6b2bea80ba78be77d2c/ManimPango-0.5.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ae9b2b5995d0e2223d6fcbce6ae019ebc50fcbcbf9b802693e017b382550e6c",
                "md5": "7bffe0772329ad24708fb5c16339fd42",
                "sha256": "0b5e47755cce7848fa268b5f77f17fc4fe363d30f5412fef845560df26dece82"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "7bffe0772329ad24708fb5c16339fd42",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3430655,
            "upload_time": "2023-10-14T18:39:41",
            "upload_time_iso_8601": "2023-10-14T18:39:41.736208Z",
            "url": "https://files.pythonhosted.org/packages/4a/e9/b2b5995d0e2223d6fcbce6ae019ebc50fcbcbf9b802693e017b382550e6c/ManimPango-0.5.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffd026acb86744a4ca8c6acd890a33e8d653db072c00547bfb419f4db4464f2c",
                "md5": "c7656ceaf09f352fef15717fcdf60ddc",
                "sha256": "aef7151c210fce42518eff7a00e4b07d497a2516e13945d56b9b4a6427fae3f6"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7656ceaf09f352fef15717fcdf60ddc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4075380,
            "upload_time": "2023-10-14T18:39:43",
            "upload_time_iso_8601": "2023-10-14T18:39:43.772425Z",
            "url": "https://files.pythonhosted.org/packages/ff/d0/26acb86744a4ca8c6acd890a33e8d653db072c00547bfb419f4db4464f2c/ManimPango-0.5.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36b66c9f5df4c87f595c0bd2a85664e3af93b76788246b1d97237353ca76398f",
                "md5": "7ae7791742b8e2da7d613426b6dc44e0",
                "sha256": "f1b614dc33b1cc012ef38a49b04def005e80a14592bdd389be91a9073a71be30"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ae7791742b8e2da7d613426b6dc44e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4116926,
            "upload_time": "2023-10-14T18:39:45",
            "upload_time_iso_8601": "2023-10-14T18:39:45.834869Z",
            "url": "https://files.pythonhosted.org/packages/36/b6/6c9f5df4c87f595c0bd2a85664e3af93b76788246b1d97237353ca76398f/ManimPango-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "222bce62ec59314600bd4b26a46a11595558030bf122da250e44fb2faf0ad769",
                "md5": "1c0daad34c5eed14ffbd47056120ed48",
                "sha256": "d135fbc2049b3cb22fa941e7333c10a42b29aa080871dd4e80d169da2337b797"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1c0daad34c5eed14ffbd47056120ed48",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3430782,
            "upload_time": "2023-10-14T18:39:48",
            "upload_time_iso_8601": "2023-10-14T18:39:48.231485Z",
            "url": "https://files.pythonhosted.org/packages/22/2b/ce62ec59314600bd4b26a46a11595558030bf122da250e44fb2faf0ad769/ManimPango-0.5.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1a7ba872f5d4efd8def28f269ae8f25ac32e36b78f5c3871b1c75c6645fdf21",
                "md5": "927ae8e455f8004a14ab385a77d80a87",
                "sha256": "9bb032625d5c663c4727bae61870e3c16696278c569c98a094b14953f22a70c8"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "927ae8e455f8004a14ab385a77d80a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4075406,
            "upload_time": "2023-10-14T18:39:49",
            "upload_time_iso_8601": "2023-10-14T18:39:49.962644Z",
            "url": "https://files.pythonhosted.org/packages/c1/a7/ba872f5d4efd8def28f269ae8f25ac32e36b78f5c3871b1c75c6645fdf21/ManimPango-0.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8acdf06beab9d0029feed191912725536247f4d9ad0ce3892cc242791b3fc3e1",
                "md5": "1bfc457101ce6615dcaeafa9d1eae82f",
                "sha256": "5d58e736ccf2afb3398c42ad1d478b84176785ad19cb994dfc9575030bfd040f"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bfc457101ce6615dcaeafa9d1eae82f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4116707,
            "upload_time": "2023-10-14T18:39:52",
            "upload_time_iso_8601": "2023-10-14T18:39:52.212321Z",
            "url": "https://files.pythonhosted.org/packages/8a/cd/f06beab9d0029feed191912725536247f4d9ad0ce3892cc242791b3fc3e1/ManimPango-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fa4c7015f817221b7039076e848335f1356534ab47d95e6d56d7a2f8e1de21b",
                "md5": "341734648b5313c781f02cbd165581d1",
                "sha256": "8c453e9511d5888c92aa1f7b120b7f3318fc21fd7a4862156c9b094986f2e17d"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "341734648b5313c781f02cbd165581d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3430570,
            "upload_time": "2023-10-14T18:39:54",
            "upload_time_iso_8601": "2023-10-14T18:39:54.092724Z",
            "url": "https://files.pythonhosted.org/packages/3f/a4/c7015f817221b7039076e848335f1356534ab47d95e6d56d7a2f8e1de21b/ManimPango-0.5.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1282f05b9760b89b8b08132d9cf76e3258dc88c869356bec4103d66865fe277",
                "md5": "20d410e30186f695841d5b9d97ed30e9",
                "sha256": "b81d815b1a5e78376ae9b6aa2d7606d38cc19e31eb89480471462bbdf0fcd3c7"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "20d410e30186f695841d5b9d97ed30e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4074930,
            "upload_time": "2023-10-14T18:39:55",
            "upload_time_iso_8601": "2023-10-14T18:39:55.952733Z",
            "url": "https://files.pythonhosted.org/packages/a1/28/2f05b9760b89b8b08132d9cf76e3258dc88c869356bec4103d66865fe277/ManimPango-0.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "485bd1249c3d90324a1d4dce4711e507c8ec87addca61d1304ffa55513783ba3",
                "md5": "38722b83f4dbf78aa08e02015c47234d",
                "sha256": "299913bbccb0f15954b64401cf9df24607e1a01edda589ea77de1ed4cc2bc284"
            },
            "downloads": -1,
            "filename": "ManimPango-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "38722b83f4dbf78aa08e02015c47234d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4076375,
            "upload_time": "2023-10-14T18:20:33",
            "upload_time_iso_8601": "2023-10-14T18:20:33.928224Z",
            "url": "https://files.pythonhosted.org/packages/48/5b/d1249c3d90324a1d4dce4711e507c8ec87addca61d1304ffa55513783ba3/ManimPango-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-14 18:20:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ManimCommunity",
    "github_project": "ManimPango",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "manimpango"
}
        
Elapsed time: 0.13086s