Skip to main content

Bindings for Pango for using with Manim.

Project description

ManimPango

PyPI Latest Release PyPI - Wheel PyPI - Downloads PyPI - License PyPI - Python Version Documentation Status

ManimPango is a C binding for Pango using Cython, which is internally used in Manim to render (non-LaTeX) text.

INSTALL

Installing ManimPango is super easy, just use pip. It is manimpango in PyPi.

pip install manimpango

Note:

For Linux Users, installing the binary wheel provided in PyPi may have unexpected side effects.

For example, a folder named fontconfig might be created in the current working directory. That folder would then have a lot of cache files each time you run Manim. In order to avoid this, you will have to install Manimpango from source:.

pip install manimpango --no-binary :all:

Please note that for this kind of installation to work, you must have a C compiler as well as Pango and its dependencies along with the Pango development headers. See BUILDING for more information.

BUILDING

Linux/MacOS

For building ManimPango, you need

  • a C compiler
  • Python's development headers
  • pkg-config
  • Pango along with its development headers and its dependencies.

If you are on MacOS, you can use brew to install those. Using MacPorts is also possible, but their version of Pango is old and will probably not be updated in the near future.

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

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

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

If you are using a clone of this repository, you will need Cython which can be easily installed using pip:

pip install Cython

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

pip install .

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

Please remember to do this inside your poetry shell, if you want to use your Manimpango with Manim.

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
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
  1. Still in the same shell, install Manim using pip install manim.
  2. 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.
  3. 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

pip install Cython

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

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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ManimPango-0.2.2.tar.gz (24.1 kB view details)

Uploaded Source

Built Distributions

ManimPango-0.2.2-cp39-cp39-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

ManimPango-0.2.2-cp39-cp39-win32.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86

ManimPango-0.2.2-cp39-cp39-manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.9

ManimPango-0.2.2-cp39-cp39-manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.9

ManimPango-0.2.2-cp39-cp39-manylinux2010_i686.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

ManimPango-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

ManimPango-0.2.2-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

ManimPango-0.2.2-cp38-cp38-win32.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86

ManimPango-0.2.2-cp38-cp38-manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.8

ManimPango-0.2.2-cp38-cp38-manylinux2014_i686.whl (8.5 MB view details)

Uploaded CPython 3.8

ManimPango-0.2.2-cp38-cp38-manylinux2010_i686.whl (8.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

ManimPango-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

ManimPango-0.2.2-cp37-cp37m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

ManimPango-0.2.2-cp37-cp37m-win32.whl (3.2 MB view details)

Uploaded CPython 3.7m Windows x86

ManimPango-0.2.2-cp37-cp37m-manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.7m

ManimPango-0.2.2-cp37-cp37m-manylinux2014_i686.whl (8.4 MB view details)

Uploaded CPython 3.7m

ManimPango-0.2.2-cp37-cp37m-manylinux2010_i686.whl (8.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

ManimPango-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

ManimPango-0.2.2-cp36-cp36m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

ManimPango-0.2.2-cp36-cp36m-win32.whl (3.2 MB view details)

Uploaded CPython 3.6m Windows x86

ManimPango-0.2.2-cp36-cp36m-manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.6m

ManimPango-0.2.2-cp36-cp36m-manylinux2014_i686.whl (8.4 MB view details)

Uploaded CPython 3.6m

ManimPango-0.2.2-cp36-cp36m-manylinux2010_i686.whl (8.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

ManimPango-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file ManimPango-0.2.2.tar.gz.

File metadata

  • Download URL: ManimPango-0.2.2.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for ManimPango-0.2.2.tar.gz
Algorithm Hash digest
SHA256 1b54a75afbbae481e5ac46a227e6c01d0e9bca996db56886f78bb7aa42560886
MD5 6f81861ade86eb22164572ffa4528c6a
BLAKE2b-256 eab2e51597687ef9bbd8582bafc61557b1e6e1ddf07f4874d2eb808db834a129

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc0cc700dae9e89fd0cef86a92c881a528715c66a19ef0dd30fc0136af14ec3f
MD5 aa1a3a6ec731ea54f6656a4d24bb7c1a
BLAKE2b-256 5f642a4b059e4671dcbb8c1a13c717ee2afa6b4e982207f266da53b663a77b09

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c8f1929632c613cbfd0e543ff55dfa532b45fad017544901703ea30d7729d958
MD5 85230459844af05ee8b9bcff2125658a
BLAKE2b-256 6d05358813f1246b1d7cd967e2af67555a21388ededf51d1f57dd31337f2c704

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59333666d31ca386075c26f61871191370d51dda68e409762acebd644dfb350c
MD5 5e6c8e546f26d95e4d8105ae51af7560
BLAKE2b-256 1c49436f970367643e5265544acbf151c298a6991ffcf01acb53cb304af4aa6f

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7040d3bc30182e12daf39211d29d6dd7ba8b784a7f3ec634eb12a58c1af0639d
MD5 4f2380a1374aa70d932b00cab7bbeb77
BLAKE2b-256 6087dcf042b1541d0323f1479707a9c0f81933e77f01b00b03284b1c4aea9892

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9d69926314f2b687bbb4b080c4403055feafb4c16eec45e6c022c8e65af30d08
MD5 51c2b846cd73747dcb5345002878a0e7
BLAKE2b-256 a4f048b3541b1a3f141ae3070e6eb0bce69b7d8bc25ff28021fa2e992e4054aa

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30856cb7273950fc151cb2cf7d92e4ffed8d06a2dcd161ccafe3f43bc61fad2d
MD5 5a6afcc38919570aa8c9155ec92b7714
BLAKE2b-256 00068775e864b33996255bc0cde6cc6e9fe257857be4c0dc2a835518434a756f

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7e19887518a38b0246b3b2841f6d1c924e590fdddb7fc07efbd9964e540769a
MD5 8311576728ef4ca52e86c4fc3e16a8cb
BLAKE2b-256 8cac77db65d9e912e9213cbfb8f3c4ca059210198ef4ab39c8c1ec44c90ad5b3

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8cc28ac8fbff36e5cf52dd95b4406dfbd66cb161768b4ac5babb08f15c7244ef
MD5 94d94879d3367f29a7682599ceaf0f1d
BLAKE2b-256 77542d870f47da6b53de51af812f087810f159b3e96b63ab41fc64e1ba7d22a5

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b85262ce20572aae126bce7c148139e4dbd2d726022159289c36bcadea927de4
MD5 0138d1754bb39bd558b6a58f7214dd35
BLAKE2b-256 b0535eb4cb9ad5cf678a74c42cf0aab8822de6de38aadc2b82980f2b0a91364d

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 714485d0f81274ab64b2373c406e23849ae4ec36601c1391d2f13e61654185ac
MD5 1872e471b9c9ed0abd0179f312e9ea2b
BLAKE2b-256 931ac767db0fa122d5c9fe6300e959a981aae1fc6e0d8f7b8f0fc8fec412884c

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f6402831c43090510b663f2e8522c3f1da69a1805ffde0ec120a45614076837
MD5 e44d0260d3b18d8c2c78a81e787ac018
BLAKE2b-256 c0510010a223b8de6c06d6c66af2a6f53e6e9daa603cece9446642e8a08dd3b4

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf0593e3ea0f9f2064ec871e258865ae590b520b45cd4c1eb43498dc44fa6850
MD5 2b442c8c50cf931b3d907efb52f65ccc
BLAKE2b-256 98967a7d6ff4564cf4d6ffe440d1ed3b9df34ed23d7ced7505518a99e30639e5

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f8300574e5b2454a32b41553c1c5ac1341cf07890708313eb86bccad74ae9d43
MD5 0e601d27e891f62a55a3b390b1c3cdd9
BLAKE2b-256 8617db32736a1194e1793e6ed478f619fef544b74ac4e31dd2da09b4639e3906

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f8a14c4b863b6d3b8a7ea294b7544ae0156b4402e55b1afb6f122ab32af33054
MD5 705a0ee932d675f5e3068b7a1b6ce20d
BLAKE2b-256 dd9136e75819b82d885cc70ff459b08cd3165f0e1f22475ecb199e3b4341b1b4

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec61775acf21bf2b1afa00516c2a8ed50caeacd8d9542e70b416e0075b36a075
MD5 e7d5bb3043fc06aeb6c87e9abc5d99d0
BLAKE2b-256 ddb365ce26b5076005727175842f30c92fc21a1e5143e8ce4098e86e62fc074b

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45a89385c9ae69c8621f7a8d60055ae22070ad1d71721800b2a9b88bd0d45638
MD5 bddaa4a03b5229c8afa45479a048b51d
BLAKE2b-256 dd11baf70946a2dba747cd1ce79fa312fdd7f4db09edb90922c54f8bf5278652

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c728df27a684131885dd168cf6058a63c4a46f35a30ef215ce0235c1baf8c2a1
MD5 81a24b07cd136b0e4c28ee821a33be32
BLAKE2b-256 36bb47a435425b976fcbcec85fa4bc94d7f5e37720f0c2cd3566762a6501d514

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7607981e69579445c0b6ca84f2534da1ccc95e0611f7d3aae7984c91f10f4f37
MD5 d28c617b44c4f9a88af9f67c42cb383a
BLAKE2b-256 e19c7355c5a79897bbcf1e7aa0c8e4104e0ab7551871a1062f08d5b18a279d87

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ddc1515f6d29b25f85d2f5b75d058ad6093b334b456c575c754e87574ec05c8d
MD5 5a8142d7f8d1bf1113026c0c590ed6eb
BLAKE2b-256 084f5c4478ac523a79fb87caa761032994cde49392275614aaa815796f3dd6b3

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f8b09e765707012fa3b357baa3e0f3bc9233047ce9e85c95bce3908becd7ff67
MD5 8dee4e7abacc08ccd33a47b4d9bd8687
BLAKE2b-256 e5565a528152b12e5ca7be4eac337450f3731ba3e356449cf6efad58b07eeb51

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b53febf1046ee2c494f16ea8653a7945468696549c011bbae8ed9ec7a7340879
MD5 702d1a4bb9923888c9acbb84e48d5b34
BLAKE2b-256 653cdb108b7b331a90352d98e621df03c79e2a5578472c7e8640c438feb25508

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc1f3e90de3ba645d1c94db86e0ac669dc16b6757cc0ead6bb9cb3876d854077
MD5 9997f713903f093866fd98e2edfc944a
BLAKE2b-256 fcfd4b15c7c02c6562184148fbcd46e433ec6d4dc3fab6dda3faf6acfa62275c

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0a7797de35c2a0107bd2d5d389c151bd0745d61ec3c5e0d3e537859c8e3414c0
MD5 79ba1b994d41273ae229c3ad5ff33c54
BLAKE2b-256 b38f42a79048880455b4f07aa9163443de5a9765c9b133bc2abb1e9176729280

See more details on using hashes here.

File details

Details for the file ManimPango-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ManimPango-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for ManimPango-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 107b620e5c634ea58bc4ecfcb1480e791c814426a3d21aa79ce8092f30936e8f
MD5 1f73fba72fbf5cf336d15fc5aab8a81b
BLAKE2b-256 ceb54913daffa985212cb58f78629805c2f80301fdd7ef44694e4d12a6eaac02

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page