blurhash-pyside


Nameblurhash-pyside JSON
Version 0.2.6 PyPI version JSON
download
home_pageNone
SummaryEncode or Decode Blurhash strings in a PySide2/6 project.
upload_time2024-07-10 00:27:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9.1
licenseNone
keywords pyside2 pyside6 burhash
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # blurhash-pyside

![GitHub License](https://img.shields.io/github/license/leocov-dev/blurhash-pyside)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/leocov-dev/blurhash-pyside/ci.yml)
![GitHub Release](https://img.shields.io/github/v/release/leocov-dev/blurhash-pyside)
![PyPI - Version](https://img.shields.io/pypi/v/blurhash-pyside)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/blurhash-pyside)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/blurhash-pyside)


Blurhash encoding and decoding for PySide2/6. 
This is a lightweight wrapper using the C++ encoding and decoding functions 
provided by [Nheko-Reborn/blurhash](https://github.com/Nheko-Reborn/blurhash).

- Encode a QImage or QPixmap into a blurhash string
- Decode a blruhash string into a QImage or QPixmap

For more information about Blurhash visit their [official page](https://blurha.sh/).

## Dependencies

This project has no external dependencies other than that you must provide 
either PySide2 or PySide6 in your own project.

The library is pre-compiled for popular platforms and recent Python versions. 
See the [Releases](https://github.com/leocov-dev/blurhash-pyside/releases) or [PyPi](https://pypi.org/project/blurhash-pyside/) page for available wheels.

## Local Development

Requirements:
- Python 3.9+
- Hatch
- CMake 3.27+

Run the example:
```shell
# choose one:
hatch run pyside6:example

# pyside2 may not be available for all python versions or platforms
hatch run pyside2:example
```

### Setup your local environment

Create a repo relative `.venv/` dir:
```shell
hatch env create
```

Run the tests:
```shell
hatch test
```

Build the wheel for your platform:
```shell
hatch build -t wheel
```

Recompile the C++ project:
```shell
hatch run compile
```

The `cmake` project is not intended to be run on its own but it is possible to do it.
The `pybind11` dependency will be available after creating the default virtual environment
and passing its python executable path to `cmake` via `Python_EXECUTABLE`. Some IDE's may
do this for you when a python environment is activated in their configuration.

Manual CMake build
```shell
cmake -S . -B cmake-build-release -G Ninja
cmake --build cmake-build-release -j 8
cmake --install cmake-build-release --prefix src
```

## Acknowledgements

The core C++ code for the blurhash functions was source from https://github.com/Nheko-Reborn/blurhash
under the Boost Software License. Some minor [modifications](extern/blurhash-cpp/README.md) were made.

This project is made possible by [pybind11](https://github.com/pybind/pybind11) and [scikit-build-core](https://github.com/scikit-build/scikit-build-core). 
Multi-platform wheels are generated using the [cibuildwheel](https://github.com/pypa/cibuildwheel) project.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "blurhash-pyside",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9.1",
    "maintainer_email": null,
    "keywords": "pyside2, pyside6, burhash",
    "author": null,
    "author_email": "Leo Covarrubias <leo@leocov.com>",
    "download_url": "https://files.pythonhosted.org/packages/c3/a3/523b0e04456a309234dd3209da6c7548bbb894bb7740d62b8551595ae2bb/blurhash_pyside-0.2.6.tar.gz",
    "platform": null,
    "description": "# blurhash-pyside\n\n![GitHub License](https://img.shields.io/github/license/leocov-dev/blurhash-pyside)\n![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/leocov-dev/blurhash-pyside/ci.yml)\n![GitHub Release](https://img.shields.io/github/v/release/leocov-dev/blurhash-pyside)\n![PyPI - Version](https://img.shields.io/pypi/v/blurhash-pyside)\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/blurhash-pyside)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/blurhash-pyside)\n\n\nBlurhash encoding and decoding for PySide2/6. \nThis is a lightweight wrapper using the C++ encoding and decoding functions \nprovided by [Nheko-Reborn/blurhash](https://github.com/Nheko-Reborn/blurhash).\n\n- Encode a QImage or QPixmap into a blurhash string\n- Decode a blruhash string into a QImage or QPixmap\n\nFor more information about Blurhash visit their [official page](https://blurha.sh/).\n\n## Dependencies\n\nThis project has no external dependencies other than that you must provide \neither PySide2 or PySide6 in your own project.\n\nThe library is pre-compiled for popular platforms and recent Python versions. \nSee the [Releases](https://github.com/leocov-dev/blurhash-pyside/releases) or [PyPi](https://pypi.org/project/blurhash-pyside/) page for available wheels.\n\n## Local Development\n\nRequirements:\n- Python 3.9+\n- Hatch\n- CMake 3.27+\n\nRun the example:\n```shell\n# choose one:\nhatch run pyside6:example\n\n# pyside2 may not be available for all python versions or platforms\nhatch run pyside2:example\n```\n\n### Setup your local environment\n\nCreate a repo relative `.venv/` dir:\n```shell\nhatch env create\n```\n\nRun the tests:\n```shell\nhatch test\n```\n\nBuild the wheel for your platform:\n```shell\nhatch build -t wheel\n```\n\nRecompile the C++ project:\n```shell\nhatch run compile\n```\n\nThe `cmake` project is not intended to be run on its own but it is possible to do it.\nThe `pybind11` dependency will be available after creating the default virtual environment\nand passing its python executable path to `cmake` via `Python_EXECUTABLE`. Some IDE's may\ndo this for you when a python environment is activated in their configuration.\n\nManual CMake build\n```shell\ncmake -S . -B cmake-build-release -G Ninja\ncmake --build cmake-build-release -j 8\ncmake --install cmake-build-release --prefix src\n```\n\n## Acknowledgements\n\nThe core C++ code for the blurhash functions was source from https://github.com/Nheko-Reborn/blurhash\nunder the Boost Software License. Some minor [modifications](extern/blurhash-cpp/README.md) were made.\n\nThis project is made possible by [pybind11](https://github.com/pybind/pybind11) and [scikit-build-core](https://github.com/scikit-build/scikit-build-core). \nMulti-platform wheels are generated using the [cibuildwheel](https://github.com/pypa/cibuildwheel) project.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Encode or Decode Blurhash strings in a PySide2/6 project.",
    "version": "0.2.6",
    "project_urls": {
        "Documentation": "https://github.com/leocov-dev/blurhash-pyside#readme",
        "Issues": "https://github.com/leocov-dev/blurhash-pyside/issues",
        "Releases": "https://github.com/leocov-dev/blurhash-pyside/releases",
        "Source": "https://github.com/leocov-dev/blurhash-pyside"
    },
    "split_keywords": [
        "pyside2",
        " pyside6",
        " burhash"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73e68fb6490e467b173c079795eca33c3a2b4fbb2bd5bd9423ba508da35bb2cd",
                "md5": "2cd17466ef55ab8fd701dd0da1ac806c",
                "sha256": "6f0e898dd08ddc462b4a3d07ea479988fde575b5b0a5f7527fb59d894f464f40"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2cd17466ef55ab8fd701dd0da1ac806c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9.1",
            "size": 56517,
            "upload_time": "2024-07-10T00:26:42",
            "upload_time_iso_8601": "2024-07-10T00:26:42.929268Z",
            "url": "https://files.pythonhosted.org/packages/73/e6/8fb6490e467b173c079795eca33c3a2b4fbb2bd5bd9423ba508da35bb2cd/blurhash_pyside-0.2.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "631f7f6f2745529954b34625d0f96c583c10bfe37f92f3732e8ce93fca2abfbb",
                "md5": "606e411b40b896276991b84e97b33215",
                "sha256": "dd06ab0620697a07604ae807d0a98cde040a96f7605168d0d4e940fa1314a352"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "606e411b40b896276991b84e97b33215",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9.1",
            "size": 63322,
            "upload_time": "2024-07-10T00:26:56",
            "upload_time_iso_8601": "2024-07-10T00:26:56.849626Z",
            "url": "https://files.pythonhosted.org/packages/63/1f/7f6f2745529954b34625d0f96c583c10bfe37f92f3732e8ce93fca2abfbb/blurhash_pyside-0.2.6-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1465e2da69f2d2f0ace931d62f479878c373acf18120729ffa6470b300b8625a",
                "md5": "732d56d822630dd5ebf479eb2bbb1c32",
                "sha256": "8a356829da73195ddbb5609f0576f766f25b257d62ea6dfd5b818411761a13fa"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "732d56d822630dd5ebf479eb2bbb1c32",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9.1",
            "size": 70478,
            "upload_time": "2024-07-10T00:27:07",
            "upload_time_iso_8601": "2024-07-10T00:27:07.128261Z",
            "url": "https://files.pythonhosted.org/packages/14/65/e2da69f2d2f0ace931d62f479878c373acf18120729ffa6470b300b8625a/blurhash_pyside-0.2.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7600dda451aad4e73522be2b855f98aff338a1c267fa09c541203bc4849fe672",
                "md5": "9769f5ba6f5754ed11b4f38eef5a0d58",
                "sha256": "bdd7b1cc821e716759e7450ff82c4cb2675b39ec819eda4c01b0124d4c47dd85"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9769f5ba6f5754ed11b4f38eef5a0d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9.1",
            "size": 63590,
            "upload_time": "2024-07-10T00:27:08",
            "upload_time_iso_8601": "2024-07-10T00:27:08.767898Z",
            "url": "https://files.pythonhosted.org/packages/76/00/dda451aad4e73522be2b855f98aff338a1c267fa09c541203bc4849fe672/blurhash_pyside-0.2.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "464d8a79661a21e4132247846f10e8a646ce4dab90414efd23e822f407a41a5d",
                "md5": "16fc37c080e249c5befed32700f47e7e",
                "sha256": "0c67f44e4ece5c7fd95ab57c25754bf104444f27008f7fb839ee0bd782c95fa4"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16fc37c080e249c5befed32700f47e7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9.1",
            "size": 57746,
            "upload_time": "2024-07-10T00:27:09",
            "upload_time_iso_8601": "2024-07-10T00:27:09.839160Z",
            "url": "https://files.pythonhosted.org/packages/46/4d/8a79661a21e4132247846f10e8a646ce4dab90414efd23e822f407a41a5d/blurhash_pyside-0.2.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66f5d7c0f538afb238de76fd10f297555625d1f00c169b8aab13e6c3a968ccb6",
                "md5": "fb511f7ff5e974e585808ea04605591f",
                "sha256": "300241630dfe2ddebf541224aa554741a7befdab90c671b9bd5215629f2f89a4"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb511f7ff5e974e585808ea04605591f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9.1",
            "size": 64688,
            "upload_time": "2024-07-10T00:27:10",
            "upload_time_iso_8601": "2024-07-10T00:27:10.869638Z",
            "url": "https://files.pythonhosted.org/packages/66/f5/d7c0f538afb238de76fd10f297555625d1f00c169b8aab13e6c3a968ccb6/blurhash_pyside-0.2.6-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "982fb8d99995a97f5436e17b50729be5b644c1f915f53ff82fbd33616d11a2d9",
                "md5": "db535eeb0479432183b33c0e036c155b",
                "sha256": "4ee390f6da450ff346640d35060d2eefdda8d935038c4692116fa395e2a18f87"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db535eeb0479432183b33c0e036c155b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9.1",
            "size": 72360,
            "upload_time": "2024-07-10T00:27:11",
            "upload_time_iso_8601": "2024-07-10T00:27:11.948509Z",
            "url": "https://files.pythonhosted.org/packages/98/2f/b8d99995a97f5436e17b50729be5b644c1f915f53ff82fbd33616d11a2d9/blurhash_pyside-0.2.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "145548e818f99feb5122f1c96030472156ce106267b88b6249638785602747aa",
                "md5": "fa7e295542bf0705cf863aca3cfec2da",
                "sha256": "c35ee35c8d969cd7b7e11dd3e8eb934c04c65d0e530db43d6578cc3bd46b43bb"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa7e295542bf0705cf863aca3cfec2da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9.1",
            "size": 64660,
            "upload_time": "2024-07-10T00:27:13",
            "upload_time_iso_8601": "2024-07-10T00:27:13.463824Z",
            "url": "https://files.pythonhosted.org/packages/14/55/48e818f99feb5122f1c96030472156ce106267b88b6249638785602747aa/blurhash_pyside-0.2.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c2b34c3c056276348735df5b4a0aec4fc15a6981a0d6d7aaa12d7a771e26be5",
                "md5": "6430f370ad15623d1f0133b7164fc832",
                "sha256": "e2e851b16f595a21b53df46eedc29306eca942d2b6df46167fede28cdfeb38e2"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6430f370ad15623d1f0133b7164fc832",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9.1",
            "size": 57109,
            "upload_time": "2024-07-10T00:27:14",
            "upload_time_iso_8601": "2024-07-10T00:27:14.511467Z",
            "url": "https://files.pythonhosted.org/packages/5c/2b/34c3c056276348735df5b4a0aec4fc15a6981a0d6d7aaa12d7a771e26be5/blurhash_pyside-0.2.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16e102ea9f2d0920e9caff4953f9449afc9d93c7050d4755fbf66e5004330043",
                "md5": "dbdb621bec4d7618ae18a6026ced3cd5",
                "sha256": "1e738a4679218e49e750595e443a53872d6b1f6a66a899671308e99fbfff09ea"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbdb621bec4d7618ae18a6026ced3cd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9.1",
            "size": 63399,
            "upload_time": "2024-07-10T00:27:15",
            "upload_time_iso_8601": "2024-07-10T00:27:15.715186Z",
            "url": "https://files.pythonhosted.org/packages/16/e1/02ea9f2d0920e9caff4953f9449afc9d93c7050d4755fbf66e5004330043/blurhash_pyside-0.2.6-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f530f858ce40214b7b9e1554af81670e7d9c36098e8a5dcf833d0c1196704dba",
                "md5": "2564bf9b0f20c05281b5c82a29bb15a6",
                "sha256": "372ab54cbe2683f9352e16b9b07d63fd5518b3f84cd07777d85b697355f51a4c"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2564bf9b0f20c05281b5c82a29bb15a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9.1",
            "size": 71334,
            "upload_time": "2024-07-10T00:27:17",
            "upload_time_iso_8601": "2024-07-10T00:27:17.376814Z",
            "url": "https://files.pythonhosted.org/packages/f5/30/f858ce40214b7b9e1554af81670e7d9c36098e8a5dcf833d0c1196704dba/blurhash_pyside-0.2.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a749c546aba218b6f310b52dfd32ec87c5e719fbbe38353a0d438e79af9cb76a",
                "md5": "cedd9f42bcced96dcfd9ac17e2079b15",
                "sha256": "68c723c14f715a5904a91ba74f83eb03eb64b0c9f75af4db208d94d44bf674e5"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cedd9f42bcced96dcfd9ac17e2079b15",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9.1",
            "size": 64883,
            "upload_time": "2024-07-10T00:27:18",
            "upload_time_iso_8601": "2024-07-10T00:27:18.288153Z",
            "url": "https://files.pythonhosted.org/packages/a7/49/c546aba218b6f310b52dfd32ec87c5e719fbbe38353a0d438e79af9cb76a/blurhash_pyside-0.2.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34f08418f1efe58c8e814ad9111b181083054e5e64f5b8bb0d48168dc686e2e1",
                "md5": "443dae84dd3c0300e4eefb8c36e16356",
                "sha256": "d504c7aa048649cedfebba11ae9ec0dc4cd8e45ae4b3a4db0b60d2d957f8b7a9"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "443dae84dd3c0300e4eefb8c36e16356",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9.1",
            "size": 56558,
            "upload_time": "2024-07-10T00:27:19",
            "upload_time_iso_8601": "2024-07-10T00:27:19.266046Z",
            "url": "https://files.pythonhosted.org/packages/34/f0/8418f1efe58c8e814ad9111b181083054e5e64f5b8bb0d48168dc686e2e1/blurhash_pyside-0.2.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a23f52bea06f57d3789d39f053456ccb567456328823c1bbc8de738d1aa3bc2",
                "md5": "de9b93630548dea8dffaa93da865eb5e",
                "sha256": "565f72bdf90b7e7763da4633eec8108974f9f09a1cc25d9403b735ebbf481ae2"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de9b93630548dea8dffaa93da865eb5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9.1",
            "size": 63418,
            "upload_time": "2024-07-10T00:27:20",
            "upload_time_iso_8601": "2024-07-10T00:27:20.202763Z",
            "url": "https://files.pythonhosted.org/packages/3a/23/f52bea06f57d3789d39f053456ccb567456328823c1bbc8de738d1aa3bc2/blurhash_pyside-0.2.6-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8151c4335d094eb86fa3e7c431b2b00fe95c6bf996997277c97c4a2a80cc6f9d",
                "md5": "081ce19073e2d761c426218c71a90c2d",
                "sha256": "068bcabb026f5863e249c2a9f996e4f911ae6236ea3b991a0a7233a1d91d472f"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "081ce19073e2d761c426218c71a90c2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9.1",
            "size": 70625,
            "upload_time": "2024-07-10T00:27:21",
            "upload_time_iso_8601": "2024-07-10T00:27:21.581667Z",
            "url": "https://files.pythonhosted.org/packages/81/51/c4335d094eb86fa3e7c431b2b00fe95c6bf996997277c97c4a2a80cc6f9d/blurhash_pyside-0.2.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7aaa01e47243ad777ed54394a47a59c5d9201a3863a29d874c8dbab138d0d46",
                "md5": "a4de4312c32cc6c0d733d74c3ed7c892",
                "sha256": "e745f006642d7c01e67caeae6460d3c87a9022f0e3a30c359b8593fcc4f72702"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a4de4312c32cc6c0d733d74c3ed7c892",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9.1",
            "size": 63200,
            "upload_time": "2024-07-10T00:27:22",
            "upload_time_iso_8601": "2024-07-10T00:27:22.658540Z",
            "url": "https://files.pythonhosted.org/packages/c7/aa/a01e47243ad777ed54394a47a59c5d9201a3863a29d874c8dbab138d0d46/blurhash_pyside-0.2.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3a3523b0e04456a309234dd3209da6c7548bbb894bb7740d62b8551595ae2bb",
                "md5": "aeb7cedb0c5da935837ddb6e1bdab695",
                "sha256": "4e6a2785825eeec3ef8de843f0931123f559bc988b4a1a591bef27224bf1a8d2"
            },
            "downloads": -1,
            "filename": "blurhash_pyside-0.2.6.tar.gz",
            "has_sig": false,
            "md5_digest": "aeb7cedb0c5da935837ddb6e1bdab695",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9.1",
            "size": 197858,
            "upload_time": "2024-07-10T00:27:23",
            "upload_time_iso_8601": "2024-07-10T00:27:23.696786Z",
            "url": "https://files.pythonhosted.org/packages/c3/a3/523b0e04456a309234dd3209da6c7548bbb894bb7740d62b8551595ae2bb/blurhash_pyside-0.2.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-10 00:27:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "leocov-dev",
    "github_project": "blurhash-pyside#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "blurhash-pyside"
}
        
Elapsed time: 0.27997s