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.3.tar.gz (24.4 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

ManimPango-0.2.3-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.3-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

ManimPango-0.2.3-cp38-cp38-manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

ManimPango-0.2.3-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.3-cp37-cp37m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

ManimPango-0.2.3-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.3-cp36-cp36m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

ManimPango-0.2.3-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.3.tar.gz.

File metadata

  • Download URL: ManimPango-0.2.3.tar.gz
  • Upload date:
  • Size: 24.4 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.3.tar.gz
Algorithm Hash digest
SHA256 6fe4fe0a8623b52de96393e9b2275cce7734ff92e674391e6a10baac84abf4de
MD5 645b67924f2a38a5b33760691ef5bfb2
BLAKE2b-256 842deb5595ca237a0e3c6057d2f11185edded6c36e5b415e50c7bb5e28ba64b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 515649c1dd574121efa2cb3654a3fef8491bd2c4fafdd4176edda41d0720ea49
MD5 11714217449085a1607ba1b1920bf0fa
BLAKE2b-256 3885dea7ae70ed08c58959dee65224ec55a79388df937528db40e7dc769a34b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8a603f3ee8eaa1bb87f67bd8ad4bc8b2e7e9b61d34601c16ecbc090d449a2358
MD5 65ae02f9a54a97ac11c5c3937cf4db1f
BLAKE2b-256 c1e09439e5e5ad25630a49ae98803823203d91dea7672b1344ed5854fbd49c9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67f3eb4bd4d5f947eb38d9502a38a036b7ebe48b1f8ef2f7a744fe63c0a37187
MD5 a0118670055d5199735105e85dab988f
BLAKE2b-256 a0cda493932a209ea590f6843fd664689c34fac7561322409075bbd73b060e54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df835d47ea19bf1091f80336a8d6d436ce1c0aab1760f601d2501b37e5ed98d8
MD5 4c12d8fd1190c0554c91b1a9a89ad08f
BLAKE2b-256 ffb856568ae48c13c3ce43034fa69b10c16a31a34d32ac6e4ce0301f975c2a25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 172b19bda5fa855a2d72ac25d070df24d2c446cee27396ae62c7fd939ba45c51
MD5 a83b8dc4c62ba93f93d81fd56ed0d71a
BLAKE2b-256 80b3e874fe78d8763f18f067ce483943b323e210b4f60e5b97cbb5c873701089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8fead8edac9dfc3529c58f292e7d9edbffe5862ff006435df2fc3952500f273
MD5 f0f8f91642bf0c89bff31c7fb8571e8e
BLAKE2b-256 611a9f751d471d46f1f18be8b99449d2b219b42944f5105f0c0fbe92a855d37a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 17061f2aae5d52ecf6d0ade23d4f6ccd8d8bd17069a55b18d5f9b52e48214354
MD5 cab6584d1a57c742838cb611c06b49fa
BLAKE2b-256 917fc0ddaf138d073bfcec89c6d634db47015394b174402efb4cb5e8c85e07de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e6a42c26dcc9ceb69fe3928144e6e0adcd1eaadd2940f01b45bd523126d3ac2a
MD5 ad85b615bfcc2e2e9e6d783f416700a7
BLAKE2b-256 0ee05a410fd29d539629db591f40eb146976a5bad9003e19a4930932f925e8e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.8 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.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a3f34d3e90cbc3c2e9b484706df8e8408adb600c41abd396ed8bc159555fe9e
MD5 5e8f8c9d2afebf7f3a9ee766218c7093
BLAKE2b-256 2dcf7c8716b457fa4208889b22afc77c391f175699aa2216e8e62279d4b85f5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a946655fbe7668a5cdc05101b2dee9c21cdeb5efd30ce80a20a4d7f9d2213f1
MD5 8ab7f63a0d08bdcf86b0771d09039ddd
BLAKE2b-256 e4ab533dc59a52ac67dff17b65c80f5ae2216bd744fb364730665528c66d29cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 43b008b6a40bf8838ffd0bfd35643b7870731e58b7d7bde00e9d75a5f404effe
MD5 009ea91e1c9fb3f8f2d13f8b63eb4925
BLAKE2b-256 024837d9c3d69023be3eb797c1ef47952d88ad0b031192029507e3302b489f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7737bf65eb8e524a7937ecbdb77cd5c43918d8813b8b546c558d94adfe1a35d3
MD5 359e2fd89c80ceebf373072ae6633b57
BLAKE2b-256 759e0788aff4184bcbd48a661231d5d711dbd4aaa976861a75d3afb911675063

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bb0355cd4653d1cbbc14c8d499929718e73ce0124e0ee71efdc07781b5f89f1a
MD5 2b8db3cde4e5b50ee493c2a27328d225
BLAKE2b-256 77ab0e639607fd63674f2dd248354046cee406c5bdd67308717e37255c54dfe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b3191f458b978d3da3cecc1eac9267d4e7e33be209c6c38c5b6c35370eec079e
MD5 7362eb9ef6a7b996f8c665a05094a521
BLAKE2b-256 d15812e1119f0aa71bf9ad2df6d8fdb071ee8ef3d4bd0122bc97eadbb55d4616

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 470dbec83eb3ebdc9ca969bac5614a0656f9262bc06baf97b631d8ab812c891b
MD5 2e6268402b5fff3fcb329f27aa68c5fb
BLAKE2b-256 78761146507165cacbd48716c9753d6b51c8e5354612ed16deeb9c0b5ec75eb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec1df0e89f794f6c48e6c89f16b7999aa748898ddaa884447bdd0fd2024014cc
MD5 12511df90bcc7e6450b54326b4dc5d44
BLAKE2b-256 8d62a15b6fb64b94001d4c6c383896823ce5dffe26c2e07b968a951784dd27ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed9509ac237f0f45f2456b07573ed3f5a34dd9431f0b643cd876b429d992e3e0
MD5 b54d19b500c1b79d16c66c3523880289
BLAKE2b-256 78bfaba37a81eedceab70dfb96c3e64024b04df8b3afe432f630f1f7339a1186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc1299e166e10361bb42003e54ef22713d52aea14a30fbac42184e803a4f8839
MD5 79405699adf82f8b92699ab64f72a0ff
BLAKE2b-256 c8c01ead922db2501db4fd3a57829a4b6e1a72ef49ea529ba893ba2c9823f3b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 25ea6c6122fa098af0fdf24642468aa615fd82d468abdfd2238c08dc574f0421
MD5 5a265a7669c7635e1b0009fdf8f92873
BLAKE2b-256 71f137aa3eb09c53f7ca539c01e234fd307eb53275c98216f6d671d164134463

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 890bc0fb0f9459702faca23c9182ac9b69a7cee00038367385980eeb22ec19e5
MD5 1c6ef99273b06da39016c00ea35332da
BLAKE2b-256 548f94fabf50a4b553350323eee2ad69ec387f57e594e3164c365f441e13e8f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 244c97e5a8fc9b0cdce6205f4f08675ea0d74d98d70af81025d1670633d46e12
MD5 b02c978c1c05bab5b7cbb6bc66717cdc
BLAKE2b-256 5d2f4667246ddc8bff37b07f719ace1a3c1640d6a73634d53a18eb7f78cb582d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 803cabe0e861b901803b488157d110b055fb6f4ab9f39f72c80dafaab7e04329
MD5 748c3ba59ed66ab15de8dc588ab26f14
BLAKE2b-256 06f6166ddf405ec9e08102822f16334298ff4898bab6f7c22f0b3a930b086bad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 81d95566af85e85840269299244ff4c8bc0b9f9346a1323e782d9a42ec0837e9
MD5 594b1aee48b3361210c1ea446bdf47eb
BLAKE2b-256 6c2d86f9099d0b50c3fafd6bb805817976343610c18c08b5db1aa32c9e2d9778

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ManimPango-0.2.3-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.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d35c2f3708aa0ffb4790ae46599be5402393cbd5336a2995c3fa2c2448007bb
MD5 efd7aa84f377392f3ab39342021d5046
BLAKE2b-256 8c5de60728adf0c85114c166985206fba639aca4227594360e37942e868424f1

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