tilequant


Nametilequant JSON
Version 1.1.0 PyPI version JSON
download
home_page
SummaryTool for quantizing image colors using tile-based palette restrictions
upload_time2023-10-03 15:24:03
maintainer
docs_urlNone
author
requires_python>=3.9
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            tilequant
=========

|build| |pypi-version| |pypi-downloads| |pypi-license| |pypi-pyversions|

.. |build| image:: https://img.shields.io/github/actions/workflow/status/SkyTemple/tilequant/build-test-publish.yml
    :target: https://pypi.org/project/tilequant/
    :alt: Build Status

.. |pypi-version| image:: https://img.shields.io/pypi/v/tilequant
    :target: https://pypi.org/project/tilequant/
    :alt: Version

.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/tilequant
    :target: https://pypi.org/project/tilequant/
    :alt: Downloads

.. |pypi-license| image:: https://img.shields.io/pypi/l/tilequant
    :alt: License (MIT)

.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/tilequant
    :alt: Supported Python versions

Tilequant is a utility to reduce the colors in an image (quantizing). The current version
is based on `Tilequant by Aikku93`_ (the same name is coincidental)).

It does so by limiting each tile (by default an area of 8x8 pixels) of the image
to a subset of colors (a palette). The whole image has one big palette that consists of
those smaller palettes.

This tool is a standalone part of SkyTemple, the ROM editor for
Pokémon Mystery Dungeon Explorers of Sky.
By default it produces images that can be used by SkyTemple.
However the images are probably also useful
for use with other games that have similar restrictions for backgrounds.

Make sure the input image is a RGB image without an alpha channel. The image library used
has some problems with converting other image types to RGB in some cases.

The output is an image with a palettes as shown in the example.

.. image:: https://github.com/SkyTemple/tilequant/raw/master/examples/export_example2.png

(This example is based on an old legacy version).

This tool is not affiliated with Nintendo, Spike Chunsoft or any of the parties involved in
creating Pokémon Mystery Dungeon Explorers of Sky. This is a fan-project.

Installation
------------
Python 3 is required.

Via pip3::

    pip3 install -U tilequant

Usage
-----

.. code::

    Usage: tilequant [OPTIONS] INPUT_IMAGE OUTPUT_IMAGE

      Converts any image into a indexed image containing a number of smaller
      sub-palettes (--num-palettes), each with a fixed color length (--colors-
      per-palette). The conversion will assign each tile in the image one of
      these sub-palettes to use (single-palette-per-tile constraint).

      INPUT_IMAGE is the path of the image to convert and OUTPUT_IMAGE is where
      to save the converted image. All image types supported by PIL (the Python
      image library) can be used. :return:

    Options:
      -n, --num-palettes INTEGER      [Default: 16] Number of palettes in the
                                      output.
      -c, --colors-per-palette INTEGER
                                      [Default: 16] Number of colors per palette.
                                      If transparency is enabled, the first color
                                      in each palette is reserved for it.
      -t, --transparent-color TEXT    A single color value (hex style, eg. 12ab56)
                                      that should be treated as transparent, when
                                      doingthe conversion with transparency
                                      enabled.
      -v, --loglevel [DEBUG|INFO|WARNING|ERROR|FATAL|CRITICAL]
                                      [Default: INFO] Log level.
      --help                          Show this message and exit.


Examples
--------
For the new version no examples exist yet. However to get a general idea, you can view
the examples of the old version in "examples".

Transparency
------------
The actual amount of colors per palette is one lower than specified
and a "transparency color" is added at index 0 of all palettes. If ``transparent-color`` is
specified, the image is scanned for pixels with this color first and in the end, those pixels
will be assigned their local "transparent color" index.

Legacy version
--------------
Originally (before integrating the new and much better newer version based on
`Tilequant by Aikku93`_) there was a pretty bad pure-Python
based version of this tool. It is no longer available in current versions of this lib, to
access it see versions prior to 1.x.

The only thing left over from the legacy implementation is ``Tilequant.simple_convert`` (only accessible via API)
which allows trying to convert images without running any sort of quantization on them, failing if not possible.

.. _Tilequant by Aikku93: https://github.com/Aikku93/tilequant

Special Thanks
--------------

- Aikku93
- Nerketur
- AntyMew
- psy_commando

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "tilequant",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "\"Marco \\\"Capypara\\\" K\u00f6pcke\" <hello@capypara.de>",
    "download_url": "https://files.pythonhosted.org/packages/73/c8/4bba1ead2022099f64e6f295234c91e7b3584e3ba0a25be62b406f75ba53/tilequant-1.1.0.tar.gz",
    "platform": null,
    "description": "tilequant\n=========\n\n|build| |pypi-version| |pypi-downloads| |pypi-license| |pypi-pyversions|\n\n.. |build| image:: https://img.shields.io/github/actions/workflow/status/SkyTemple/tilequant/build-test-publish.yml\n    :target: https://pypi.org/project/tilequant/\n    :alt: Build Status\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/tilequant\n    :target: https://pypi.org/project/tilequant/\n    :alt: Version\n\n.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/tilequant\n    :target: https://pypi.org/project/tilequant/\n    :alt: Downloads\n\n.. |pypi-license| image:: https://img.shields.io/pypi/l/tilequant\n    :alt: License (MIT)\n\n.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/tilequant\n    :alt: Supported Python versions\n\nTilequant is a utility to reduce the colors in an image (quantizing). The current version\nis based on `Tilequant by Aikku93`_ (the same name is coincidental)).\n\nIt does so by limiting each tile (by default an area of 8x8 pixels) of the image\nto a subset of colors (a palette). The whole image has one big palette that consists of\nthose smaller palettes.\n\nThis tool is a standalone part of SkyTemple, the ROM editor for\nPok\u00e9mon Mystery Dungeon Explorers of Sky.\nBy default it produces images that can be used by SkyTemple.\nHowever the images are probably also useful\nfor use with other games that have similar restrictions for backgrounds.\n\nMake sure the input image is a RGB image without an alpha channel. The image library used\nhas some problems with converting other image types to RGB in some cases.\n\nThe output is an image with a palettes as shown in the example.\n\n.. image:: https://github.com/SkyTemple/tilequant/raw/master/examples/export_example2.png\n\n(This example is based on an old legacy version).\n\nThis tool is not affiliated with Nintendo, Spike Chunsoft or any of the parties involved in\ncreating Pok\u00e9mon Mystery Dungeon Explorers of Sky. This is a fan-project.\n\nInstallation\n------------\nPython 3 is required.\n\nVia pip3::\n\n    pip3 install -U tilequant\n\nUsage\n-----\n\n.. code::\n\n    Usage: tilequant [OPTIONS] INPUT_IMAGE OUTPUT_IMAGE\n\n      Converts any image into a indexed image containing a number of smaller\n      sub-palettes (--num-palettes), each with a fixed color length (--colors-\n      per-palette). The conversion will assign each tile in the image one of\n      these sub-palettes to use (single-palette-per-tile constraint).\n\n      INPUT_IMAGE is the path of the image to convert and OUTPUT_IMAGE is where\n      to save the converted image. All image types supported by PIL (the Python\n      image library) can be used. :return:\n\n    Options:\n      -n, --num-palettes INTEGER      [Default: 16] Number of palettes in the\n                                      output.\n      -c, --colors-per-palette INTEGER\n                                      [Default: 16] Number of colors per palette.\n                                      If transparency is enabled, the first color\n                                      in each palette is reserved for it.\n      -t, --transparent-color TEXT    A single color value (hex style, eg. 12ab56)\n                                      that should be treated as transparent, when\n                                      doingthe conversion with transparency\n                                      enabled.\n      -v, --loglevel [DEBUG|INFO|WARNING|ERROR|FATAL|CRITICAL]\n                                      [Default: INFO] Log level.\n      --help                          Show this message and exit.\n\n\nExamples\n--------\nFor the new version no examples exist yet. However to get a general idea, you can view\nthe examples of the old version in \"examples\".\n\nTransparency\n------------\nThe actual amount of colors per palette is one lower than specified\nand a \"transparency color\" is added at index 0 of all palettes. If ``transparent-color`` is\nspecified, the image is scanned for pixels with this color first and in the end, those pixels\nwill be assigned their local \"transparent color\" index.\n\nLegacy version\n--------------\nOriginally (before integrating the new and much better newer version based on\n`Tilequant by Aikku93`_) there was a pretty bad pure-Python\nbased version of this tool. It is no longer available in current versions of this lib, to\naccess it see versions prior to 1.x.\n\nThe only thing left over from the legacy implementation is ``Tilequant.simple_convert`` (only accessible via API)\nwhich allows trying to convert images without running any sort of quantization on them, failing if not possible.\n\n.. _Tilequant by Aikku93: https://github.com/Aikku93/tilequant\n\nSpecial Thanks\n--------------\n\n- Aikku93\n- Nerketur\n- AntyMew\n- psy_commando\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Tool for quantizing image colors using tile-based palette restrictions",
    "version": "1.1.0",
    "project_urls": {
        "Source": "https://github.com/SkyTemple/tilequant/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3b39f38c1911360f3e26fba2b1d0f41ab9c2c006a79e57cd2eaa21e124815ed",
                "md5": "45539f1868f694e993a963d23a280789",
                "sha256": "9d6b693bd7b909eeaf92314b355a31f513a7b5e0a1710140dca5412e661fbf10"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45539f1868f694e993a963d23a280789",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 44305,
            "upload_time": "2023-10-03T15:19:01",
            "upload_time_iso_8601": "2023-10-03T15:19:01.471526Z",
            "url": "https://files.pythonhosted.org/packages/a3/b3/9f38c1911360f3e26fba2b1d0f41ab9c2c006a79e57cd2eaa21e124815ed/tilequant-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5e43a337ce58296ab5aa5a394768ee168c494bfd788e9ecddd771b2e35afe47",
                "md5": "79b9c834477ea865090f2aef3ff9c48d",
                "sha256": "f95a4bb3dcf084c5d9b19c4a4b5f0f0092aeefae83e29ae9441025bd291db666"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79b9c834477ea865090f2aef3ff9c48d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 75200,
            "upload_time": "2023-10-03T15:18:55",
            "upload_time_iso_8601": "2023-10-03T15:18:55.142059Z",
            "url": "https://files.pythonhosted.org/packages/c5/e4/3a337ce58296ab5aa5a394768ee168c494bfd788e9ecddd771b2e35afe47/tilequant-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97bf7165382ecc9319bc8a75d47c039e64c6818102a9984a18008095e5bf50c8",
                "md5": "83d6cf7b6301101ecede5e97e41add97",
                "sha256": "55f29d073d03232a34fd4fd98fecc230aaa2a6e02bdd4cef4a79781005af8e3d"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "83d6cf7b6301101ecede5e97e41add97",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 46849,
            "upload_time": "2023-10-03T15:19:09",
            "upload_time_iso_8601": "2023-10-03T15:19:09.160138Z",
            "url": "https://files.pythonhosted.org/packages/97/bf/7165382ecc9319bc8a75d47c039e64c6818102a9984a18008095e5bf50c8/tilequant-1.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "433465d7081c60b257e3bc51e702257c421ad956e246f18876502b78cbf547d7",
                "md5": "c5026a4180cb84e0e36023828fa0e1a5",
                "sha256": "5b4fd87ba040cb86b7bda9cd73388333b4521292771c45b198ea58a2818f412a"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5026a4180cb84e0e36023828fa0e1a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 50116,
            "upload_time": "2023-10-03T15:19:07",
            "upload_time_iso_8601": "2023-10-03T15:19:07.538196Z",
            "url": "https://files.pythonhosted.org/packages/43/34/65d7081c60b257e3bc51e702257c421ad956e246f18876502b78cbf547d7/tilequant-1.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d06d7d57c0f0e8e939897d451c658723008c55e807c1973438aae591947ba762",
                "md5": "09eede540f545a0c279c6e61e320a8e0",
                "sha256": "96f3e00991e2e1452424fab06461f8089dc3562ea80ee3b6178c7fc63e13918b"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "09eede540f545a0c279c6e61e320a8e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 53714,
            "upload_time": "2023-10-03T15:19:02",
            "upload_time_iso_8601": "2023-10-03T15:19:02.977779Z",
            "url": "https://files.pythonhosted.org/packages/d0/6d/7d57c0f0e8e939897d451c658723008c55e807c1973438aae591947ba762/tilequant-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf2560f83ae75ef66ed715b4ddb4b65ad8588ef2458c684d29253a4cdf4fe1f",
                "md5": "93bfa817a2d7bd99f10734b66ca8f58b",
                "sha256": "8ec49fa172ebd579a2988ac2467a8e9f4e82d4d6e55b55eb6606c0b7f021f7d4"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93bfa817a2d7bd99f10734b66ca8f58b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 75201,
            "upload_time": "2023-10-03T15:18:56",
            "upload_time_iso_8601": "2023-10-03T15:18:56.827467Z",
            "url": "https://files.pythonhosted.org/packages/cd/f2/560f83ae75ef66ed715b4ddb4b65ad8588ef2458c684d29253a4cdf4fe1f/tilequant-1.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "297c48e11023f46dcdf6459f47b739f05f16a7114be00d342d8949d847878543",
                "md5": "6769dcd5241bba3e1307b11f8f9c1650",
                "sha256": "0450edc07ba1529ed3ea568f7d503c4b769bf3efa3dde7fc657e496e7d17f042"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6769dcd5241bba3e1307b11f8f9c1650",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 46852,
            "upload_time": "2023-10-03T15:19:11",
            "upload_time_iso_8601": "2023-10-03T15:19:11.979795Z",
            "url": "https://files.pythonhosted.org/packages/29/7c/48e11023f46dcdf6459f47b739f05f16a7114be00d342d8949d847878543/tilequant-1.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64929ac7cba26eb0cf8f76e01eb3f47aea384752b8dedd44145aa63a8cd5f710",
                "md5": "6edd6c63408cb8bbdb387453df8c6cdc",
                "sha256": "2f0e784e82acc04e12b81831a93e847beab38d6fb89d4e0d41801cd7a36e3656"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6edd6c63408cb8bbdb387453df8c6cdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 50114,
            "upload_time": "2023-10-03T15:19:10",
            "upload_time_iso_8601": "2023-10-03T15:19:10.809338Z",
            "url": "https://files.pythonhosted.org/packages/64/92/9ac7cba26eb0cf8f76e01eb3f47aea384752b8dedd44145aa63a8cd5f710/tilequant-1.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36b4f6ed86520f93e7187de7c4a853517597ce25f387f0b532eb25b2d37db437",
                "md5": "d3970f8edaa44720b2cd421f7655d2a6",
                "sha256": "a8f501342a97b8b31b85f975b39a23516c2483d2b580348bfa37d57253179ab6"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d3970f8edaa44720b2cd421f7655d2a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 53716,
            "upload_time": "2023-10-03T15:19:04",
            "upload_time_iso_8601": "2023-10-03T15:19:04.593586Z",
            "url": "https://files.pythonhosted.org/packages/36/b4/f6ed86520f93e7187de7c4a853517597ce25f387f0b532eb25b2d37db437/tilequant-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d5d4f76296c370f53c9c8c51ad832957485fc3937cd49f15bc24607dd3910f9",
                "md5": "e57eeb6ae72c397026134443586c54dd",
                "sha256": "2c8fd1252b1f3ae10dd9ffec29f1989cc96af00f94937fe53f309684abfcc808"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e57eeb6ae72c397026134443586c54dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 75208,
            "upload_time": "2023-10-03T15:18:58",
            "upload_time_iso_8601": "2023-10-03T15:18:58.468788Z",
            "url": "https://files.pythonhosted.org/packages/7d/5d/4f76296c370f53c9c8c51ad832957485fc3937cd49f15bc24607dd3910f9/tilequant-1.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfb9dc1398c716bfeb2b7cfcdd9c7e874e0ee5eb77c5e60be1da10343ebcef93",
                "md5": "d181b432d39e50d0cf2af4ca70b4b860",
                "sha256": "b6ddc75c2b7dfb7f7b2631a7c81542728d40c77d9a50180e5ff1dcfa5d18e87e"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d181b432d39e50d0cf2af4ca70b4b860",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 46848,
            "upload_time": "2023-10-03T15:19:14",
            "upload_time_iso_8601": "2023-10-03T15:19:14.778986Z",
            "url": "https://files.pythonhosted.org/packages/bf/b9/dc1398c716bfeb2b7cfcdd9c7e874e0ee5eb77c5e60be1da10343ebcef93/tilequant-1.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3903e7c873d0d01fa5a9c0874a8c8c2400748e964d02d1d495cb8689cfa54ca",
                "md5": "2ef2eaf9a4f49929b581fc609b7868d9",
                "sha256": "2491c1d3615dd7ca24339b8bb8ac3d13d7b5f0bd65a9069ecace4b05f939ddc0"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ef2eaf9a4f49929b581fc609b7868d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 50114,
            "upload_time": "2023-10-03T15:19:13",
            "upload_time_iso_8601": "2023-10-03T15:19:13.235240Z",
            "url": "https://files.pythonhosted.org/packages/b3/90/3e7c873d0d01fa5a9c0874a8c8c2400748e964d02d1d495cb8689cfa54ca/tilequant-1.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2844c44b9004cbd91a6d00df58a9164fcac012be2c0660b7d80ab72f54042374",
                "md5": "3109a95764f613b6c0900a9fa1409a5b",
                "sha256": "4fce6f0ac35040de1f1d9d6da106276bcc48639d2be8eb8908d39a3399de0708"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3109a95764f613b6c0900a9fa1409a5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 44305,
            "upload_time": "2023-10-03T15:19:06",
            "upload_time_iso_8601": "2023-10-03T15:19:06.292151Z",
            "url": "https://files.pythonhosted.org/packages/28/44/c44b9004cbd91a6d00df58a9164fcac012be2c0660b7d80ab72f54042374/tilequant-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc558618eb644b71dce103425ef7ce0510e3695c914643e5d95178cfebc3e87e",
                "md5": "9f465786cc377f3c4b5a598fac940f56",
                "sha256": "cdf46b9b4701ff5e186fb8953dea4e68ff99ff971ff7ae69b0a8e7f572e1414a"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f465786cc377f3c4b5a598fac940f56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 75202,
            "upload_time": "2023-10-03T15:18:59",
            "upload_time_iso_8601": "2023-10-03T15:18:59.974979Z",
            "url": "https://files.pythonhosted.org/packages/bc/55/8618eb644b71dce103425ef7ce0510e3695c914643e5d95178cfebc3e87e/tilequant-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ff095bd33a48f1ac76988deb91ea7937240cf572c0f4f29a497b599e65229e8",
                "md5": "6da8cd14484edfe9ae3f42cc234e0f27",
                "sha256": "2a5eed878f994e38b6cb346ffce3f96ee0fa5068a2ca09cfbdfd38ad107e31e6"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6da8cd14484edfe9ae3f42cc234e0f27",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 46852,
            "upload_time": "2023-10-03T15:19:17",
            "upload_time_iso_8601": "2023-10-03T15:19:17.384936Z",
            "url": "https://files.pythonhosted.org/packages/3f/f0/95bd33a48f1ac76988deb91ea7937240cf572c0f4f29a497b599e65229e8/tilequant-1.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67b8f0b33988a93af12d42a92fa4aff2f8ba37fa55ce938f972bcc4ea9351e7d",
                "md5": "0506d3f15855d33b16d794d9c666c2c9",
                "sha256": "83d6811cf65c2cae25b1eb6aa3990ff8f927290731fab2e7266c5455d9bdd82d"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0506d3f15855d33b16d794d9c666c2c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 50109,
            "upload_time": "2023-10-03T15:19:15",
            "upload_time_iso_8601": "2023-10-03T15:19:15.783055Z",
            "url": "https://files.pythonhosted.org/packages/67/b8/f0b33988a93af12d42a92fa4aff2f8ba37fa55ce938f972bcc4ea9351e7d/tilequant-1.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73c84bba1ead2022099f64e6f295234c91e7b3584e3ba0a25be62b406f75ba53",
                "md5": "5001d250e67b208e812ed8451ca58d56",
                "sha256": "b96d60de7953e98fb56de89fa3f30e946c6c18bee89ff8dc0113b149d7724879"
            },
            "downloads": -1,
            "filename": "tilequant-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5001d250e67b208e812ed8451ca58d56",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 90278,
            "upload_time": "2023-10-03T15:24:03",
            "upload_time_iso_8601": "2023-10-03T15:24:03.991342Z",
            "url": "https://files.pythonhosted.org/packages/73/c8/4bba1ead2022099f64e6f295234c91e7b3584e3ba0a25be62b406f75ba53/tilequant-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-03 15:24:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SkyTemple",
    "github_project": "tilequant",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tilequant"
}
        
Elapsed time: 0.11901s