wordcloud


Namewordcloud JSON
Version 1.9.3 PyPI version JSON
download
home_page
SummaryA little word cloud generator
upload_time2023-12-09 14:06:30
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![licence](http://img.shields.io/badge/licence-MIT-blue.svg?style=flat)](https://github.com/amueller/word_cloud/blob/master/LICENSE)
[![DOI](https://zenodo.org/badge/21369/amueller/word_cloud.svg)](https://zenodo.org/badge/latestdoi/21369/amueller/word_cloud)


word_cloud
==========

A little word cloud generator in Python. Read more about it on the [blog
post][blog-post] or the [website][website].

The code is tested against Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12.

## Installation

If you are using pip:

    pip install wordcloud

If you are using conda, you can install from the `conda-forge` channel:

    conda install -c conda-forge wordcloud


#### Installation notes

wordcloud depends on `numpy`, `pillow`, and `matplotlib`.

If there are no wheels available for your version of python, installing the
package requires having a C compiler set up. Before installing a compiler, report
an issue describing the version of python and operating system being used.


## Examples

Check out [examples/simple.py][simple] for a short intro. A sample output is:

![Constitution](examples/constitution.png)

Or run [examples/masked.py][masked] to see more options. A sample output is:

![Alice in Wonderland](examples/alice.png)

Getting fancy with some colors:
![Parrot with rainbow colors](examples/parrot_new.png)

Generating wordclouds for Arabic:

![Arabic wordlcloud](examples/arabic_example.png)


## Command-line usage

The `wordcloud_cli` tool can be used to generate word clouds directly from the command-line:

	$ wordcloud_cli --text mytext.txt --imagefile wordcloud.png

If you're dealing with PDF files, then `pdftotext`, included by default with many Linux distribution, comes in handy:

	$ pdftotext mydocument.pdf - | wordcloud_cli --imagefile wordcloud.png

In the previous example, the `-` argument orders `pdftotext` to write the resulting text to stdout, which is then piped to the stdin of `wordcloud_cli.py`.

Use `wordcloud_cli --help` so see all available options.

[blog-post]: http://peekaboo-vision.blogspot.de/2012/11/a-wordcloud-in-python.html
[website]: http://amueller.github.io/word_cloud/
[simple]: examples/simple.py
[masked]: examples/masked.py
[reddit-cloud]: https://github.com/amueller/reddit-cloud
[wc2]: http://www.reddit.com/user/WordCloudBot2
[wc2top]: http://www.reddit.com/user/WordCloudBot2/?sort=top
[chat-stats]: https://github.com/popcorncolonel/Chat_stats
[twitter-word-cloud-bot]: https://github.com/defacto133/twitter-wordcloud-bot
[twitter-wordnuvola]: https://twitter.com/wordnuvola
[imgur-wordnuvola]: http://defacto133.imgur.com/all/
[intprob]: http://peekaboo-vision.blogspot.de/2012/11/a-wordcloud-in-python.html#bc_0_28B


## Licensing
The wordcloud library is MIT licenced, but contains DroidSansMono.ttf, a true type font by Google, that is apache licensed.
The font is by no means integral, and any other font can be used by setting the ``font_path`` variable when creating a ``WordCloud`` object.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "wordcloud",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Andreas Mueller <t3kcit+wordcloud@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7c/60/5f927145b65de0f299079db846c89fa031d56e4df9764607add12a03714e/wordcloud-1.9.3.tar.gz",
    "platform": null,
    "description": "[![licence](http://img.shields.io/badge/licence-MIT-blue.svg?style=flat)](https://github.com/amueller/word_cloud/blob/master/LICENSE)\n[![DOI](https://zenodo.org/badge/21369/amueller/word_cloud.svg)](https://zenodo.org/badge/latestdoi/21369/amueller/word_cloud)\n\n\nword_cloud\n==========\n\nA little word cloud generator in Python. Read more about it on the [blog\npost][blog-post] or the [website][website].\n\nThe code is tested against Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12.\n\n## Installation\n\nIf you are using pip:\n\n    pip install wordcloud\n\nIf you are using conda, you can install from the `conda-forge` channel:\n\n    conda install -c conda-forge wordcloud\n\n\n#### Installation notes\n\nwordcloud depends on `numpy`, `pillow`, and `matplotlib`.\n\nIf there are no wheels available for your version of python, installing the\npackage requires having a C compiler set up. Before installing a compiler, report\nan issue describing the version of python and operating system being used.\n\n\n## Examples\n\nCheck out [examples/simple.py][simple] for a short intro. A sample output is:\n\n![Constitution](examples/constitution.png)\n\nOr run [examples/masked.py][masked] to see more options. A sample output is:\n\n![Alice in Wonderland](examples/alice.png)\n\nGetting fancy with some colors:\n![Parrot with rainbow colors](examples/parrot_new.png)\n\nGenerating wordclouds for Arabic:\n\n![Arabic wordlcloud](examples/arabic_example.png)\n\n\n## Command-line usage\n\nThe `wordcloud_cli` tool can be used to generate word clouds directly from the command-line:\n\n\t$ wordcloud_cli --text mytext.txt --imagefile wordcloud.png\n\nIf you're dealing with PDF files, then `pdftotext`, included by default with many Linux distribution, comes in handy:\n\n\t$ pdftotext mydocument.pdf - | wordcloud_cli --imagefile wordcloud.png\n\nIn the previous example, the `-` argument orders `pdftotext` to write the resulting text to stdout, which is then piped to the stdin of `wordcloud_cli.py`.\n\nUse `wordcloud_cli --help` so see all available options.\n\n[blog-post]: http://peekaboo-vision.blogspot.de/2012/11/a-wordcloud-in-python.html\n[website]: http://amueller.github.io/word_cloud/\n[simple]: examples/simple.py\n[masked]: examples/masked.py\n[reddit-cloud]: https://github.com/amueller/reddit-cloud\n[wc2]: http://www.reddit.com/user/WordCloudBot2\n[wc2top]: http://www.reddit.com/user/WordCloudBot2/?sort=top\n[chat-stats]: https://github.com/popcorncolonel/Chat_stats\n[twitter-word-cloud-bot]: https://github.com/defacto133/twitter-wordcloud-bot\n[twitter-wordnuvola]: https://twitter.com/wordnuvola\n[imgur-wordnuvola]: http://defacto133.imgur.com/all/\n[intprob]: http://peekaboo-vision.blogspot.de/2012/11/a-wordcloud-in-python.html#bc_0_28B\n\n\n## Licensing\nThe wordcloud library is MIT licenced, but contains DroidSansMono.ttf, a true type font by Google, that is apache licensed.\nThe font is by no means integral, and any other font can be used by setting the ``font_path`` variable when creating a ``WordCloud`` object.\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A little word cloud generator",
    "version": "1.9.3",
    "project_urls": {
        "Homepage": "https://github.com/amueller/word_cloud"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c9eedf685caa682eefb71c9e827def4604d699da7c3cbf50aa3f577553c33e",
                "md5": "781c2238daf8157f1d2a521868f01cb0",
                "sha256": "5fce423a24e6ca1b89b2770a7c6917d6e26f04bcfefa601cf61819b2fc0770c4"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "781c2238daf8157f1d2a521868f01cb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 172579,
            "upload_time": "2023-12-09T14:04:35",
            "upload_time_iso_8601": "2023-12-09T14:04:35.762838Z",
            "url": "https://files.pythonhosted.org/packages/03/c9/eedf685caa682eefb71c9e827def4604d699da7c3cbf50aa3f577553c33e/wordcloud-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "762d6850fc318aca19bf153cba2a7e0db3060412a46611d8792056bf407bf144",
                "md5": "5299d7291ee2ba01ae2526eb0d8f51d9",
                "sha256": "3b6adfc1465b9176b8bc602745dd3ed8ea782b006a81cb59eab3dde92ad9f94c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5299d7291ee2ba01ae2526eb0d8f51d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 168439,
            "upload_time": "2023-12-09T14:04:38",
            "upload_time_iso_8601": "2023-12-09T14:04:38.206174Z",
            "url": "https://files.pythonhosted.org/packages/76/2d/6850fc318aca19bf153cba2a7e0db3060412a46611d8792056bf407bf144/wordcloud-1.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90be1a7a488f5edcfae6746ffb91e792a1795b6cc058364ea6888b3878d3476f",
                "md5": "ccb0055d9e07d6f7c6b371f180e8170d",
                "sha256": "ad6db37a6f5abeba51a5d503228ea320d4f2fa774864103e7b24acd9dd86fd0e"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccb0055d9e07d6f7c6b371f180e8170d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 511098,
            "upload_time": "2023-12-09T14:04:40",
            "upload_time_iso_8601": "2023-12-09T14:04:40.349100Z",
            "url": "https://files.pythonhosted.org/packages/90/be/1a7a488f5edcfae6746ffb91e792a1795b6cc058364ea6888b3878d3476f/wordcloud-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caacd5836caf274b67a6ed7fa8271e119b3f6d5ee8938949b419c5d64b0140c4",
                "md5": "16f9eb8313d51637e12f840d7082e221",
                "sha256": "5e74ac99e9582873d7ee28bd03e125dcf73ae46666d55fb4c13e82e90c0e074a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "16f9eb8313d51637e12f840d7082e221",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 494706,
            "upload_time": "2023-12-09T14:04:41",
            "upload_time_iso_8601": "2023-12-09T14:04:41.891501Z",
            "url": "https://files.pythonhosted.org/packages/ca/ac/d5836caf274b67a6ed7fa8271e119b3f6d5ee8938949b419c5d64b0140c4/wordcloud-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2db8e351b54fec0f52ce53d229e99bc3b8541fa9a7d59e8dade60a22db63abe6",
                "md5": "a93cae0f045553f9d56eb33064899676",
                "sha256": "4001317c0e3b5cb6fd106228ddcd27524d1caf9ae468b3c2c2fc571c6ce56b22"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a93cae0f045553f9d56eb33064899676",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 492381,
            "upload_time": "2023-12-09T14:04:44",
            "upload_time_iso_8601": "2023-12-09T14:04:44.178821Z",
            "url": "https://files.pythonhosted.org/packages/2d/b8/e351b54fec0f52ce53d229e99bc3b8541fa9a7d59e8dade60a22db63abe6/wordcloud-1.9.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c32282aa9a1136833ea11ad19f668ec2ce955b1fbf2f92d116e704b29c28a9ed",
                "md5": "4cd8875d2dc88dc5c296c80acfef7dd6",
                "sha256": "5f86042e5ce12e2795798033a56f0246906b4d7d9027d554b6cd951ce2fd342a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cd8875d2dc88dc5c296c80acfef7dd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 513278,
            "upload_time": "2023-12-09T14:04:46",
            "upload_time_iso_8601": "2023-12-09T14:04:46.354846Z",
            "url": "https://files.pythonhosted.org/packages/c3/22/82aa9a1136833ea11ad19f668ec2ce955b1fbf2f92d116e704b29c28a9ed/wordcloud-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0586e1158f2a967208b91762afb3687533009ddf13b1bed54458e6ce93ecb03",
                "md5": "f2f7bcccbae693a68e65cb892f247f3f",
                "sha256": "3b90f0390c0a05ba4b4580fb765a3d45d8d21519b50ca5006d6dbdc2a0b86507"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f2f7bcccbae693a68e65cb892f247f3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 290173,
            "upload_time": "2023-12-09T14:04:48",
            "upload_time_iso_8601": "2023-12-09T14:04:48.524815Z",
            "url": "https://files.pythonhosted.org/packages/b0/58/6e1158f2a967208b91762afb3687533009ddf13b1bed54458e6ce93ecb03/wordcloud-1.9.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "757acad3b21a91cc55abe06f70146b564f20d9db2aee9631fdee580283bd5e1e",
                "md5": "fc5218af3e8713a328e09073cde0d058",
                "sha256": "6f7977285df9254b8704d3f895c06814a6183c6c89e140d6281848c076635e91"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fc5218af3e8713a328e09073cde0d058",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 299990,
            "upload_time": "2023-12-09T14:04:50",
            "upload_time_iso_8601": "2023-12-09T14:04:50.512374Z",
            "url": "https://files.pythonhosted.org/packages/75/7a/cad3b21a91cc55abe06f70146b564f20d9db2aee9631fdee580283bd5e1e/wordcloud-1.9.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "394a2684863905b72fceea24edaa10e3e16bc742a184042f463f3b09883d75b0",
                "md5": "343093b73635223783bae30af7e2b94a",
                "sha256": "7ced0d5c946d82cfc778febafe3eedeb0bae07dd57ea4f21fe06b9ec8225ab31"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "343093b73635223783bae30af7e2b94a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 172394,
            "upload_time": "2023-12-09T14:04:51",
            "upload_time_iso_8601": "2023-12-09T14:04:51.970456Z",
            "url": "https://files.pythonhosted.org/packages/39/4a/2684863905b72fceea24edaa10e3e16bc742a184042f463f3b09883d75b0/wordcloud-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac66937d1d73389c0b501c928c4d8513653063d2b40272dff70d0e283d8b9144",
                "md5": "4a9e2a87987cbe10b906c7f67266f1cf",
                "sha256": "6f5499e6360219e61808dc0d2b00cd5104f78a82d2ae8f7986df04731713835f"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a9e2a87987cbe10b906c7f67266f1cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 168299,
            "upload_time": "2023-12-09T14:04:53",
            "upload_time_iso_8601": "2023-12-09T14:04:53.377665Z",
            "url": "https://files.pythonhosted.org/packages/ac/66/937d1d73389c0b501c928c4d8513653063d2b40272dff70d0e283d8b9144/wordcloud-1.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40adc22887189c23cc133ae7cbad48c71312f1a962b960fe7f51fd792808a307",
                "md5": "0fd45b9710ac48ac13b95c804070e69e",
                "sha256": "cb1e8bb7d60f7a90fa8439c7b56dd1df60766115fd57480ac0d83ca5204e0117"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fd45b9710ac48ac13b95c804070e69e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 548338,
            "upload_time": "2023-12-09T14:04:55",
            "upload_time_iso_8601": "2023-12-09T14:04:55.424749Z",
            "url": "https://files.pythonhosted.org/packages/40/ad/c22887189c23cc133ae7cbad48c71312f1a962b960fe7f51fd792808a307/wordcloud-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce270b81f0160883f366678d59df4a6e8cb1921934b2f8086de8dfb9540b0b10",
                "md5": "a934d95906a050c61d136e7f31812c2f",
                "sha256": "6e33328044db5c01487f2a3a023b5476947942dacd6a5dc8c217fa039f6c5bd9"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a934d95906a050c61d136e7f31812c2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 528633,
            "upload_time": "2023-12-09T14:04:57",
            "upload_time_iso_8601": "2023-12-09T14:04:57.667498Z",
            "url": "https://files.pythonhosted.org/packages/ce/27/0b81f0160883f366678d59df4a6e8cb1921934b2f8086de8dfb9540b0b10/wordcloud-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04083390a827a6f3f4605d35f2fbb755c9e5d7a08b904b63266bff17fa255c72",
                "md5": "3de0ec9003501b990dd4f6f82284421e",
                "sha256": "998dc0dc8fcbff88f566f17cb5e0eb3bb21fcafd387b0670be6c14feacaf4cdc"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3de0ec9003501b990dd4f6f82284421e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 523490,
            "upload_time": "2023-12-09T14:04:59",
            "upload_time_iso_8601": "2023-12-09T14:04:59.247464Z",
            "url": "https://files.pythonhosted.org/packages/04/08/3390a827a6f3f4605d35f2fbb755c9e5d7a08b904b63266bff17fa255c72/wordcloud-1.9.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "583ce803ad055fe511e33f091e5aedfdbb7f82adf67eb96dcbd80f075f95a6a1",
                "md5": "b26ef57a705b36f949557ad7a3b5616b",
                "sha256": "e1a1c3cfa86b605a19711ec58920ccb694dca9d5c9d00b373f4d5952d63793e9"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b26ef57a705b36f949557ad7a3b5616b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 549004,
            "upload_time": "2023-12-09T14:05:01",
            "upload_time_iso_8601": "2023-12-09T14:05:01.730664Z",
            "url": "https://files.pythonhosted.org/packages/58/3c/e803ad055fe511e33f091e5aedfdbb7f82adf67eb96dcbd80f075f95a6a1/wordcloud-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6da7dff6e4f86739e383a5922be6198930c6705d953f37a2815ddfa6b11e3880",
                "md5": "16fe0985696b063cd284a3644fbb2698",
                "sha256": "f504e3291256c0b6fca044602f8f0e5cb56b7c33724cde9d279c4077fa5b6d27"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "16fe0985696b063cd284a3644fbb2698",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 289823,
            "upload_time": "2023-12-09T14:05:03",
            "upload_time_iso_8601": "2023-12-09T14:05:03.699522Z",
            "url": "https://files.pythonhosted.org/packages/6d/a7/dff6e4f86739e383a5922be6198930c6705d953f37a2815ddfa6b11e3880/wordcloud-1.9.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5b0247159f61c5d5d6647171bef84430b7efad4db504f0229674024f3a4f7f2",
                "md5": "59dc68e0f2d3fd135b8b3aaefd1bd89c",
                "sha256": "103c9b0465e1cf5b7a38b49ab1c3a0b0301762fa56602ac79287f9d22b46ade3"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59dc68e0f2d3fd135b8b3aaefd1bd89c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 300164,
            "upload_time": "2023-12-09T14:05:06",
            "upload_time_iso_8601": "2023-12-09T14:05:06.370958Z",
            "url": "https://files.pythonhosted.org/packages/f5/b0/247159f61c5d5d6647171bef84430b7efad4db504f0229674024f3a4f7f2/wordcloud-1.9.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85c0399a255a2306867cc876de471547c8f727d940c2636c1311d354898e5851",
                "md5": "c16dbe9f98a59e1bf444a681d62ed944",
                "sha256": "dfea303fc1dec4811e4a5671a8021a89724b6fa70639d059ad30c492932be447"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c16dbe9f98a59e1bf444a681d62ed944",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 174069,
            "upload_time": "2023-12-09T14:05:08",
            "upload_time_iso_8601": "2023-12-09T14:05:08.318997Z",
            "url": "https://files.pythonhosted.org/packages/85/c0/399a255a2306867cc876de471547c8f727d940c2636c1311d354898e5851/wordcloud-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03cb8228555eff393b3e86be815ecb5d506fc18ccfe3b8427b5c1ac2944c4ced",
                "md5": "c6efd87acce44889c254048e0e9843e2",
                "sha256": "512f3c9a2e8579269a33ac9219d042fd0cc5a3a524ee68079238a3e4efe2b879"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c6efd87acce44889c254048e0e9843e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 169434,
            "upload_time": "2023-12-09T14:05:10",
            "upload_time_iso_8601": "2023-12-09T14:05:10.316726Z",
            "url": "https://files.pythonhosted.org/packages/03/cb/8228555eff393b3e86be815ecb5d506fc18ccfe3b8427b5c1ac2944c4ced/wordcloud-1.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c68317f69e39c76913064d1ee60e08f9fb3eacf019c2085f5bdfd2b87bc304b9",
                "md5": "6c6d276713af2891f952758c05b6b383",
                "sha256": "d00d916509a17b432032161d492ed7f30b2ebd921303090fe1d2b57011a49cc0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c6d276713af2891f952758c05b6b383",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 541632,
            "upload_time": "2023-12-09T14:05:12",
            "upload_time_iso_8601": "2023-12-09T14:05:12.007459Z",
            "url": "https://files.pythonhosted.org/packages/c6/83/17f69e39c76913064d1ee60e08f9fb3eacf019c2085f5bdfd2b87bc304b9/wordcloud-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3fe1e877865f6e2119c044ab706a31ff20228764f702af12c15fc592f9667f1",
                "md5": "dfd8f92751e1c98469bda6d185de5e34",
                "sha256": "d5e0e7bbd269a62baa63ea2175faea4d74435c0ad828f3d5999fa4c33ebe0629"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dfd8f92751e1c98469bda6d185de5e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 519625,
            "upload_time": "2023-12-09T14:05:14",
            "upload_time_iso_8601": "2023-12-09T14:05:14.052687Z",
            "url": "https://files.pythonhosted.org/packages/a3/fe/1e877865f6e2119c044ab706a31ff20228764f702af12c15fc592f9667f1/wordcloud-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a41b6bc50f44fd7e51feb9765ed4a6f81fcb8eeafb1c4a1d4853a069a9d98055",
                "md5": "e74f9c588cc8aa0b2906208589744fbc",
                "sha256": "483aa4f8d17b9744a3b238269593d1794b962fc757a72a9e7e8468c2665cffb7"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e74f9c588cc8aa0b2906208589744fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 516073,
            "upload_time": "2023-12-09T14:05:16",
            "upload_time_iso_8601": "2023-12-09T14:05:16.229020Z",
            "url": "https://files.pythonhosted.org/packages/a4/1b/6bc50f44fd7e51feb9765ed4a6f81fcb8eeafb1c4a1d4853a069a9d98055/wordcloud-1.9.3-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d80f9cafd71562e168b093ba4373917d9c1d51fa4cbbd015b2b6ee770f07357",
                "md5": "aa719be2c687da39686caf24da66d094",
                "sha256": "64b342a79553970fa04083761d041067323219ad62b5550a496e42436d23cbb3"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa719be2c687da39686caf24da66d094",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 544135,
            "upload_time": "2023-12-09T14:05:17",
            "upload_time_iso_8601": "2023-12-09T14:05:17.748681Z",
            "url": "https://files.pythonhosted.org/packages/4d/80/f9cafd71562e168b093ba4373917d9c1d51fa4cbbd015b2b6ee770f07357/wordcloud-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77c0bc14fd7fa96e5b544aac4e9e65b5dd6f753d72184da35e35eb0b24c4dde4",
                "md5": "2e472274b15d426f4c1af2d1c7420362",
                "sha256": "419acfe0b1d1227b9e3e14ec1bb6c40fd7fa652df4adf81f0ba3e00daca500b5"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2e472274b15d426f4c1af2d1c7420362",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 291251,
            "upload_time": "2023-12-09T14:05:19",
            "upload_time_iso_8601": "2023-12-09T14:05:19.790413Z",
            "url": "https://files.pythonhosted.org/packages/77/c0/bc14fd7fa96e5b544aac4e9e65b5dd6f753d72184da35e35eb0b24c4dde4/wordcloud-1.9.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfa0b8fa5f2d7147a7675e2cab99108f7d8d524b67481f81f289cdb2b64ed1ab",
                "md5": "6f4850e72874020006b5b92e2f026ba9",
                "sha256": "2061a9978a6243107ce1a8a9fa24f421b03a0f7e620769b6f5075857e75aa615"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6f4850e72874020006b5b92e2f026ba9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 301393,
            "upload_time": "2023-12-09T14:05:21",
            "upload_time_iso_8601": "2023-12-09T14:05:21.336527Z",
            "url": "https://files.pythonhosted.org/packages/bf/a0/b8fa5f2d7147a7675e2cab99108f7d8d524b67481f81f289cdb2b64ed1ab/wordcloud-1.9.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18d72e894c5358bbb688bec3c6bf825c07f904b1dcf2a14245cf7e99bc52ec05",
                "md5": "ae4870c26ef578f03918675a28780453",
                "sha256": "21f47fabe189f39532378759300a624ae166519dfafbd6a22cfe65b14a7d104d"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae4870c26ef578f03918675a28780453",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 173073,
            "upload_time": "2023-12-09T14:05:23",
            "upload_time_iso_8601": "2023-12-09T14:05:23.655334Z",
            "url": "https://files.pythonhosted.org/packages/18/d7/2e894c5358bbb688bec3c6bf825c07f904b1dcf2a14245cf7e99bc52ec05/wordcloud-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cbb902e68291e5d30ceab13f496986c78dc78acf7253e789e1d1c72124f033e",
                "md5": "f5af8b6d18a96bd67de47f08782c5966",
                "sha256": "524065f8a5a79e00748f45efbeacd25ac1d15850e0d0588753b17a8b2de2a6a7"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5af8b6d18a96bd67de47f08782c5966",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 489414,
            "upload_time": "2023-12-09T14:05:25",
            "upload_time_iso_8601": "2023-12-09T14:05:25.838609Z",
            "url": "https://files.pythonhosted.org/packages/4c/bb/902e68291e5d30ceab13f496986c78dc78acf7253e789e1d1c72124f033e/wordcloud-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d517765cfbe4ab1957d2d490b8597170df1d888ee6d44ae226042078d3729a8f",
                "md5": "59539063d3aaa6aa23691e727fa0b361",
                "sha256": "5b2bb53492bc8663ba90a300bbd2da7be5059f9ad192ed1150e9bbbda8016c9a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "59539063d3aaa6aa23691e727fa0b361",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 470369,
            "upload_time": "2023-12-09T14:05:27",
            "upload_time_iso_8601": "2023-12-09T14:05:27.374990Z",
            "url": "https://files.pythonhosted.org/packages/d5/17/765cfbe4ab1957d2d490b8597170df1d888ee6d44ae226042078d3729a8f/wordcloud-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6499e20f89fb34137acd7aaa3330af0861839ef4f78cb98a7ed34bc61a62099",
                "md5": "f2b2915613b563d64c6f01f84fe38423",
                "sha256": "643243474faee460e7d08944d3e529c58d0cbf8be11626fbb918ee8ccb913a23"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f2b2915613b563d64c6f01f84fe38423",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 473401,
            "upload_time": "2023-12-09T14:05:29",
            "upload_time_iso_8601": "2023-12-09T14:05:29.596590Z",
            "url": "https://files.pythonhosted.org/packages/c6/49/9e20f89fb34137acd7aaa3330af0861839ef4f78cb98a7ed34bc61a62099/wordcloud-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9444d1f47a364bbc839fd37fa9ec37ca8be1620d68991d105db51041422bb460",
                "md5": "6a2ec9ae947f86343d30483be56c6ff9",
                "sha256": "d95f44739a6972abfb97c12656999952dd28ed03700ee8b6efe35d688d489b36"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a2ec9ae947f86343d30483be56c6ff9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 491193,
            "upload_time": "2023-12-09T14:05:31",
            "upload_time_iso_8601": "2023-12-09T14:05:31.471462Z",
            "url": "https://files.pythonhosted.org/packages/94/44/d1f47a364bbc839fd37fa9ec37ca8be1620d68991d105db51041422bb460/wordcloud-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43b17579a4b869c7d8724ae56980f70ffd96079f8c8005b726b99c4b44f3c125",
                "md5": "356945d0ba17e264bf3ce920fb4fab47",
                "sha256": "e56364c8829d399397a649501f834c12751ab106cba488ba8d86d532889b528c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "356945d0ba17e264bf3ce920fb4fab47",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 290147,
            "upload_time": "2023-12-09T14:05:33",
            "upload_time_iso_8601": "2023-12-09T14:05:33.130280Z",
            "url": "https://files.pythonhosted.org/packages/43/b1/7579a4b869c7d8724ae56980f70ffd96079f8c8005b726b99c4b44f3c125/wordcloud-1.9.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b12a489555dd7cdc8ee87e8dab071b6697271dfc57fc00fbe9b9e04c80354ea",
                "md5": "7dba16c6f03ff0549380f3720e8f3f4b",
                "sha256": "78f4a3fd3526884e4f526ae070bcb47401766c48c9cb6488933f608f810fadae"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7dba16c6f03ff0549380f3720e8f3f4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 300232,
            "upload_time": "2023-12-09T14:05:34",
            "upload_time_iso_8601": "2023-12-09T14:05:34.756230Z",
            "url": "https://files.pythonhosted.org/packages/4b/12/a489555dd7cdc8ee87e8dab071b6697271dfc57fc00fbe9b9e04c80354ea/wordcloud-1.9.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52440211b8dc942acb29cf5dc08f278c0c5ea84b591908bd5df28f7c426ad6b6",
                "md5": "cf33b46616d106d49d4eef8527190273",
                "sha256": "0058cf08573c99283fe189e93354d20ca8c9a8aac7207d96e74b93aedd02cdcc"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf33b46616d106d49d4eef8527190273",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 172778,
            "upload_time": "2023-12-09T14:05:36",
            "upload_time_iso_8601": "2023-12-09T14:05:36.164978Z",
            "url": "https://files.pythonhosted.org/packages/52/44/0211b8dc942acb29cf5dc08f278c0c5ea84b591908bd5df28f7c426ad6b6/wordcloud-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ab7c4e3c0587bccec98df7db6d2d3a0d891f670a914caeeb18a13a787268ec8",
                "md5": "5c3d7684205533ec9b9e4cb780685fea",
                "sha256": "47d6918381a8a816141bdd391376bff703ec5aa3a6bd88631097a5e2963ebd1a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c3d7684205533ec9b9e4cb780685fea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 168650,
            "upload_time": "2023-12-09T14:05:37",
            "upload_time_iso_8601": "2023-12-09T14:05:37.575627Z",
            "url": "https://files.pythonhosted.org/packages/1a/b7/c4e3c0587bccec98df7db6d2d3a0d891f670a914caeeb18a13a787268ec8/wordcloud-1.9.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2e90e717dbf8c31a4e9ead9fa48a4b691c48209f9cbb3d774caeca991d217eb",
                "md5": "68ee7f6de41e19c0f259e6fd04f357cf",
                "sha256": "05aa3269c5af573cfb11e269de0fe73c2c72aefdd90cdb41368744e7d8bc7507"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68ee7f6de41e19c0f259e6fd04f357cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 520142,
            "upload_time": "2023-12-09T14:05:39",
            "upload_time_iso_8601": "2023-12-09T14:05:39.007784Z",
            "url": "https://files.pythonhosted.org/packages/b2/e9/0e717dbf8c31a4e9ead9fa48a4b691c48209f9cbb3d774caeca991d217eb/wordcloud-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6bfe6c87e5f11455aeffc4f84daadd6da42b66707b4c24c061f657ecea3ffe9",
                "md5": "350e98be9fc04b1c59d550a156ba6a3d",
                "sha256": "d74e206f42af172db4d3c0054853523bf46070b12f0626493a56599957dd2196"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "350e98be9fc04b1c59d550a156ba6a3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 504123,
            "upload_time": "2023-12-09T14:05:40",
            "upload_time_iso_8601": "2023-12-09T14:05:40.532571Z",
            "url": "https://files.pythonhosted.org/packages/e6/bf/e6c87e5f11455aeffc4f84daadd6da42b66707b4c24c061f657ecea3ffe9/wordcloud-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa886d7e99788c76458b88c694f3ea6ea2e9e605e94a6603a594d5be30c96f13",
                "md5": "60d21cb3c6b06b67795aca3dbeed9c51",
                "sha256": "1932726635c8ed12bb74201d2a6b07f18c2f732aecadb9ae915832485241991f"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "60d21cb3c6b06b67795aca3dbeed9c51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 509687,
            "upload_time": "2023-12-09T14:05:42",
            "upload_time_iso_8601": "2023-12-09T14:05:42.085779Z",
            "url": "https://files.pythonhosted.org/packages/aa/88/6d7e99788c76458b88c694f3ea6ea2e9e605e94a6603a594d5be30c96f13/wordcloud-1.9.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5310119f1501694b3e6de50d48e2deee6051ba6bdf119a8f9f8eff5926aa386e",
                "md5": "ebf3511f4721cf055bf1ae32c5eb4b65",
                "sha256": "038de1701e7853c41850644453f1c9e69f878e480d42efae154684a47fd59f1a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebf3511f4721cf055bf1ae32c5eb4b65",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 530677,
            "upload_time": "2023-12-09T14:05:43",
            "upload_time_iso_8601": "2023-12-09T14:05:43.649054Z",
            "url": "https://files.pythonhosted.org/packages/53/10/119f1501694b3e6de50d48e2deee6051ba6bdf119a8f9f8eff5926aa386e/wordcloud-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a42cc6e41cb39a623e9a076611508739f9a6b7632b358b2225c7f4b58138e85",
                "md5": "2cbe05cd11dd06c3522a4b30f8cf6663",
                "sha256": "19aa05f60d9261301e4942fd1b1c4b458d903f24c12d2bd1c6ecbb752697a2f3"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "2cbe05cd11dd06c3522a4b30f8cf6663",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 290822,
            "upload_time": "2023-12-09T14:05:45",
            "upload_time_iso_8601": "2023-12-09T14:05:45.216554Z",
            "url": "https://files.pythonhosted.org/packages/9a/42/cc6e41cb39a623e9a076611508739f9a6b7632b358b2225c7f4b58138e85/wordcloud-1.9.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96b1f89962836d9a00dba0dc1336d8c2d4c8c8375db9884d329b35f00f483144",
                "md5": "679396feafa2baf472bc4e8f39c5eff1",
                "sha256": "ab5bae12cf27d8de986e4d4518d4778f2b56c660b250b631ff805024038311a1"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "679396feafa2baf472bc4e8f39c5eff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 300699,
            "upload_time": "2023-12-09T14:05:46",
            "upload_time_iso_8601": "2023-12-09T14:05:46.704681Z",
            "url": "https://files.pythonhosted.org/packages/96/b1/f89962836d9a00dba0dc1336d8c2d4c8c8375db9884d329b35f00f483144/wordcloud-1.9.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07189e2bc9d5ee2c88514f368c8ccc82aae4f07392ccda41dc1706fe4cf52a0e",
                "md5": "a959ea8238b29ccb0c933b3c4be91317",
                "sha256": "888d088f54a897b8597da2fae3954d74b1f7251f7d311bbcc30ec3c6987d3605"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a959ea8238b29ccb0c933b3c4be91317",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 173182,
            "upload_time": "2023-12-09T14:05:49",
            "upload_time_iso_8601": "2023-12-09T14:05:49.007463Z",
            "url": "https://files.pythonhosted.org/packages/07/18/9e2bc9d5ee2c88514f368c8ccc82aae4f07392ccda41dc1706fe4cf52a0e/wordcloud-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78083834d47dc30f3add3899e5bdc5a371194d23e649e2923ce15a66c9903976",
                "md5": "0238334a62749c2750512056a8c876bb",
                "sha256": "daa6cfa11ce24e7eb4e42dc896dae4f74ae2166cf90ec997996300566e6811d1"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0238334a62749c2750512056a8c876bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 168970,
            "upload_time": "2023-12-09T14:05:50",
            "upload_time_iso_8601": "2023-12-09T14:05:50.436291Z",
            "url": "https://files.pythonhosted.org/packages/78/08/3834d47dc30f3add3899e5bdc5a371194d23e649e2923ce15a66c9903976/wordcloud-1.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32524fb51dde6c6a57669501e51ef205feb7520ce7b2dda100b30bb588e02866",
                "md5": "914cc1b54af255c65cfc37f05383c801",
                "sha256": "387dc2bd528ff6bb661451f2a9fd4ccf74b86072d7a2c868285d4c0cf26abeb4"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "914cc1b54af255c65cfc37f05383c801",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 513648,
            "upload_time": "2023-12-09T14:05:51",
            "upload_time_iso_8601": "2023-12-09T14:05:51.979678Z",
            "url": "https://files.pythonhosted.org/packages/32/52/4fb51dde6c6a57669501e51ef205feb7520ce7b2dda100b30bb588e02866/wordcloud-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e39e40fd13613cf73c522b7fd7bdb2f6572c5399b24db792e68fc508cda8d0b",
                "md5": "12749b22e360b9ae4f4fdc7502a8e76c",
                "sha256": "40c32a324319db610b40f387a2a0b42d091817958a5272e0a4c4eb6a158588b5"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "12749b22e360b9ae4f4fdc7502a8e76c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 497488,
            "upload_time": "2023-12-09T14:05:54",
            "upload_time_iso_8601": "2023-12-09T14:05:54.035241Z",
            "url": "https://files.pythonhosted.org/packages/1e/39/e40fd13613cf73c522b7fd7bdb2f6572c5399b24db792e68fc508cda8d0b/wordcloud-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb9d3536ce9da99aafdf527ab830a14ff12c24173b13b9cb377077cf5459c19",
                "md5": "60100263c50a87e730c06c706d30deba",
                "sha256": "8078c6c58db4ccb893f120354e7e08bc48a5a5aac3e764f9008bc96a769b208c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "60100263c50a87e730c06c706d30deba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 495569,
            "upload_time": "2023-12-09T14:05:55",
            "upload_time_iso_8601": "2023-12-09T14:05:55.920923Z",
            "url": "https://files.pythonhosted.org/packages/3e/b9/d3536ce9da99aafdf527ab830a14ff12c24173b13b9cb377077cf5459c19/wordcloud-1.9.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b5eea1812ec366f512498060e5c70e60efcdb39bbcebe1ca7ff41929e421e61",
                "md5": "da450783d967af8e50e8d8ab5fba61b8",
                "sha256": "81f15eb60abc1676808bb85e2edfdbdc0a9011383f2a729c1c2a0cb941516768"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da450783d967af8e50e8d8ab5fba61b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 515969,
            "upload_time": "2023-12-09T14:05:57",
            "upload_time_iso_8601": "2023-12-09T14:05:57.667142Z",
            "url": "https://files.pythonhosted.org/packages/8b/5e/ea1812ec366f512498060e5c70e60efcdb39bbcebe1ca7ff41929e421e61/wordcloud-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5857ba66e9b8680e9b0d76a1c87d2386ffa86472a568aa193c6707a4857a0639",
                "md5": "e6da77e112ef6402ae5410a028a92e51",
                "sha256": "1d1680bf6c3d1b2f8e3bd02ccfa868fee2655fe13cf5b9e9905251050448fbbd"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e6da77e112ef6402ae5410a028a92e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 290872,
            "upload_time": "2023-12-09T14:05:59",
            "upload_time_iso_8601": "2023-12-09T14:05:59.182951Z",
            "url": "https://files.pythonhosted.org/packages/58/57/ba66e9b8680e9b0d76a1c87d2386ffa86472a568aa193c6707a4857a0639/wordcloud-1.9.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d067ebbc7e0c6da1753d7c30c2ca47c6bd11dbf2259cfa9c98151f4ab3d8b950",
                "md5": "ec6a95866831f8696c95022e1f57fcc2",
                "sha256": "c0f458681e4d49be36064f21bfb1dc8d8c3021fe30e474ee634666b4f84fd851"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ec6a95866831f8696c95022e1f57fcc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 300584,
            "upload_time": "2023-12-09T14:06:00",
            "upload_time_iso_8601": "2023-12-09T14:06:00.998501Z",
            "url": "https://files.pythonhosted.org/packages/d0/67/ebbc7e0c6da1753d7c30c2ca47c6bd11dbf2259cfa9c98151f4ab3d8b950/wordcloud-1.9.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f744fc3055b4b5acf9301414c0f6d9df3fe70f4705b108e36481f2b93bec75d0",
                "md5": "143d8f5b637c5b45ce1e1c4c8c367bb0",
                "sha256": "baea9ac88ec1ab317461c75834b64ad5dad12a02c4f2384dd546eac3c316dbbb"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "143d8f5b637c5b45ce1e1c4c8c367bb0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 157279,
            "upload_time": "2023-12-09T14:06:02",
            "upload_time_iso_8601": "2023-12-09T14:06:02.531056Z",
            "url": "https://files.pythonhosted.org/packages/f7/44/fc3055b4b5acf9301414c0f6d9df3fe70f4705b108e36481f2b93bec75d0/wordcloud-1.9.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f2cc5153f6ae80132f42ab183064f532375d9440e0484395a983974b5e2f54d",
                "md5": "62ee06212daa68c776bc7f2d99450b65",
                "sha256": "e6956b9f0d0eb14a12f46d41aebb4e7ad2d4c2ec417cc7c586bebd2ddc9c8311"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62ee06212daa68c776bc7f2d99450b65",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 172027,
            "upload_time": "2023-12-09T14:06:04",
            "upload_time_iso_8601": "2023-12-09T14:06:04.280011Z",
            "url": "https://files.pythonhosted.org/packages/7f/2c/c5153f6ae80132f42ab183064f532375d9440e0484395a983974b5e2f54d/wordcloud-1.9.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8362b8dc0a4a89864b69355edf57367dbfc3e18d69f429bb4ca07a51ae276bc",
                "md5": "435608d485e7dc5e3defef2faac1abe3",
                "sha256": "d221b4d0d1d2a1d79286c41d8a4c0ce70065488f153e5d81cc0be7fb494ff10f"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "435608d485e7dc5e3defef2faac1abe3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 172956,
            "upload_time": "2023-12-09T14:06:05",
            "upload_time_iso_8601": "2023-12-09T14:06:05.897368Z",
            "url": "https://files.pythonhosted.org/packages/b8/36/2b8dc0a4a89864b69355edf57367dbfc3e18d69f429bb4ca07a51ae276bc/wordcloud-1.9.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdfa034250802f186bb0b5584e2e21dc77e4909bfe77a257956294f771833b4c",
                "md5": "4c4296ca8f16819bf618e400a690822a",
                "sha256": "db39dbe91dd31ffb667edcd496f4eeb85ceea397fef4ad51d0766ab934088cc7"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c4296ca8f16819bf618e400a690822a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 295201,
            "upload_time": "2023-12-09T14:06:07",
            "upload_time_iso_8601": "2023-12-09T14:06:07.329892Z",
            "url": "https://files.pythonhosted.org/packages/bd/fa/034250802f186bb0b5584e2e21dc77e4909bfe77a257956294f771833b4c/wordcloud-1.9.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb4e4f3e13f0768507d92d0ceccbbb5d473486e1dcc8c730b1117a22883ea2bc",
                "md5": "01970f6c8aaeb79fe296f6e7c0b107d9",
                "sha256": "a6ae5db43807ca10f5c77dd2d22c78f8f9399758cc5ac6afd7f3c19e58b75d66"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01970f6c8aaeb79fe296f6e7c0b107d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 156428,
            "upload_time": "2023-12-09T14:06:09",
            "upload_time_iso_8601": "2023-12-09T14:06:09.435291Z",
            "url": "https://files.pythonhosted.org/packages/bb/4e/4f3e13f0768507d92d0ceccbbb5d473486e1dcc8c730b1117a22883ea2bc/wordcloud-1.9.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "803bafbec935c2471f45b7b9e4af19392f7529cd67152fa525c228a0338c7b3b",
                "md5": "de319ee3decd833afe5b2f418b247a61",
                "sha256": "2a1c431f20ee28a8840f2552a89bd8332c455c318f4de7b6c2ca3159b76df4f0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de319ee3decd833afe5b2f418b247a61",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 171233,
            "upload_time": "2023-12-09T14:06:10",
            "upload_time_iso_8601": "2023-12-09T14:06:10.841618Z",
            "url": "https://files.pythonhosted.org/packages/80/3b/afbec935c2471f45b7b9e4af19392f7529cd67152fa525c228a0338c7b3b/wordcloud-1.9.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "560174a95629406cb3cbbac401ba713c2abdfc2334f1256aa3261751359c4b7a",
                "md5": "ec3c37b62ae9339187606dc7057cb3a5",
                "sha256": "1847ca4466e2b1588478dd8eb87fa7baa28515b37ab7926471595e8ac81e6578"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ec3c37b62ae9339187606dc7057cb3a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 172470,
            "upload_time": "2023-12-09T14:06:12",
            "upload_time_iso_8601": "2023-12-09T14:06:12.194937Z",
            "url": "https://files.pythonhosted.org/packages/56/01/74a95629406cb3cbbac401ba713c2abdfc2334f1256aa3261751359c4b7a/wordcloud-1.9.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a72fce51f003cda4510d7865bcabf740ec3e0b56f21e553141b03e2ff324f2a6",
                "md5": "4becbfdbb8e683a261f2969eca5c1126",
                "sha256": "7b0e14e4dfcff7dee331df7880a2031e352e95a7d30e74ff152f162488b04179"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4becbfdbb8e683a261f2969eca5c1126",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 294605,
            "upload_time": "2023-12-09T14:06:14",
            "upload_time_iso_8601": "2023-12-09T14:06:14.280546Z",
            "url": "https://files.pythonhosted.org/packages/a7/2f/ce51f003cda4510d7865bcabf740ec3e0b56f21e553141b03e2ff324f2a6/wordcloud-1.9.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34d78cae0e00806ee3189690d00d39d27e8e1d665a9924c8c7bded5c3a078ceb",
                "md5": "679bdfbeffa4769359e1a8f7991546bc",
                "sha256": "f1c0cff6037a3dc46437537a31925f3895d742fb6d67af71194149763de16a76"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "679bdfbeffa4769359e1a8f7991546bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 156591,
            "upload_time": "2023-12-09T14:06:16",
            "upload_time_iso_8601": "2023-12-09T14:06:16.583440Z",
            "url": "https://files.pythonhosted.org/packages/34/d7/8cae0e00806ee3189690d00d39d27e8e1d665a9924c8c7bded5c3a078ceb/wordcloud-1.9.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fb342cdac86b114056b2f50087ea25bc76318276d89a19ae7462367ac6aeee6",
                "md5": "e463a449c5dc8d815f7cb9c09e8a79d9",
                "sha256": "8a36788c5c79604653327675023cbd97c68813640887b51ce651bb4f5c28c88b"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e463a449c5dc8d815f7cb9c09e8a79d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 171344,
            "upload_time": "2023-12-09T14:06:18",
            "upload_time_iso_8601": "2023-12-09T14:06:18.011037Z",
            "url": "https://files.pythonhosted.org/packages/7f/b3/42cdac86b114056b2f50087ea25bc76318276d89a19ae7462367ac6aeee6/wordcloud-1.9.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21ea0acc01fbb5e211c8e3b3cef9eaa947d8882c006c956c736cbeca222e89f3",
                "md5": "b6b9ee54f5546faf0eee8948eccc77d3",
                "sha256": "3e3907c6496e197a9c4be76770c5ff8a03eddbdfe5a151a55e4eedeaa45ab3ad"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b6b9ee54f5546faf0eee8948eccc77d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 172586,
            "upload_time": "2023-12-09T14:06:19",
            "upload_time_iso_8601": "2023-12-09T14:06:19.502351Z",
            "url": "https://files.pythonhosted.org/packages/21/ea/0acc01fbb5e211c8e3b3cef9eaa947d8882c006c956c736cbeca222e89f3/wordcloud-1.9.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb6b8891938714e77103f6f7be741bced71443714d3ef6d3b2e1308d885fba97",
                "md5": "33443aeca22900d1a403f2c7842aeb2e",
                "sha256": "65e6f6b68eecb85c326ae19729dd4151fcdebffc2142c9ee882dc2de955210d0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33443aeca22900d1a403f2c7842aeb2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 294725,
            "upload_time": "2023-12-09T14:06:21",
            "upload_time_iso_8601": "2023-12-09T14:06:21.192083Z",
            "url": "https://files.pythonhosted.org/packages/fb/6b/8891938714e77103f6f7be741bced71443714d3ef6d3b2e1308d885fba97/wordcloud-1.9.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99a9d37ce3634ee743819ebfc8e75a01c6e13f2be401c12f3b5af41cbc9a8866",
                "md5": "4ebe87ca17573a328122ff26ed857cf8",
                "sha256": "0c8e18c4afa025819332efffe8008267a83a9c54fe72ae1bc889ddce0eec470d"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ebe87ca17573a328122ff26ed857cf8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 157112,
            "upload_time": "2023-12-09T14:06:23",
            "upload_time_iso_8601": "2023-12-09T14:06:23.380052Z",
            "url": "https://files.pythonhosted.org/packages/99/a9/d37ce3634ee743819ebfc8e75a01c6e13f2be401c12f3b5af41cbc9a8866/wordcloud-1.9.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "345c59ee9e6e59fc052cfe626f50deecdf81e6e1ce2c3153156be41d592c7bd4",
                "md5": "f8826aaf369c0de2e801399d7e804128",
                "sha256": "4df25cb5dd347e43d53e02a009418f5776e7651063aff991865da8f6336bf193"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8826aaf369c0de2e801399d7e804128",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 171926,
            "upload_time": "2023-12-09T14:06:24",
            "upload_time_iso_8601": "2023-12-09T14:06:24.738285Z",
            "url": "https://files.pythonhosted.org/packages/34/5c/59ee9e6e59fc052cfe626f50deecdf81e6e1ce2c3153156be41d592c7bd4/wordcloud-1.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ac717c260789242dddd74822deb1234a6e5376169af8bd27dc90292a4d63c4",
                "md5": "cd57b7e397b74bdbd2ab6cb1d13c89d3",
                "sha256": "53489ad22d58be3896ec16ed47604832e393224c89f7d7eed040096b07141ac4"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cd57b7e397b74bdbd2ab6cb1d13c89d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 172815,
            "upload_time": "2023-12-09T14:06:26",
            "upload_time_iso_8601": "2023-12-09T14:06:26.295465Z",
            "url": "https://files.pythonhosted.org/packages/f0/ac/717c260789242dddd74822deb1234a6e5376169af8bd27dc90292a4d63c4/wordcloud-1.9.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63de6d244b5e9ca970869343755a1e43e2b3c165dd9d08908f5c788014b974ec",
                "md5": "92002073deffbd5a2211a49ac03f3a72",
                "sha256": "61de4a5f3bfd33e0cb013cce6143bcf71959f3cd8536650b90134d745a553c2c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "92002073deffbd5a2211a49ac03f3a72",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 295032,
            "upload_time": "2023-12-09T14:06:28",
            "upload_time_iso_8601": "2023-12-09T14:06:28.148688Z",
            "url": "https://files.pythonhosted.org/packages/63/de/6d244b5e9ca970869343755a1e43e2b3c165dd9d08908f5c788014b974ec/wordcloud-1.9.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c605f927145b65de0f299079db846c89fa031d56e4df9764607add12a03714e",
                "md5": "d69116a30287b3ef0db9bedaa523b371",
                "sha256": "a9aa738d63ed674a40f0cc31adb83f4ca5fc195f03a6aff6e010d1f5807d1c58"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d69116a30287b3ef0db9bedaa523b371",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 27563752,
            "upload_time": "2023-12-09T14:06:30",
            "upload_time_iso_8601": "2023-12-09T14:06:30.941486Z",
            "url": "https://files.pythonhosted.org/packages/7c/60/5f927145b65de0f299079db846c89fa031d56e4df9764607add12a03714e/wordcloud-1.9.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-09 14:06:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amueller",
    "github_project": "word_cloud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "wordcloud"
}
        
Elapsed time: 0.15747s