wordcloud


Namewordcloud JSON
Version 1.9.4 PyPI version JSON
download
home_pageNone
SummaryA little word cloud generator
upload_time2024-11-10 14:36:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License
keywords
VCS
bugtrack_url
requirements matplotlib numpy pillow cython
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, 3.13.

## 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": null,
    "name": "wordcloud",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Andreas Mueller <t3kcit+wordcloud@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/03/a1/0530b9001b05dcd13de21c2d4d821db5365dade5180242179fbc39372c57/wordcloud-1.9.4.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, 3.13.\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.4",
    "project_urls": {
        "Homepage": "https://github.com/amueller/word_cloud"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab021ab9282e5922ccd23b67050151476a4a32a7678d59bad4aa46534615afa",
                "md5": "aabc650f85de14e2e6e5b8d05602a89d",
                "sha256": "61a84e7311fce8415943edcb7b2ba65b4bfec1dc6dff8fe5a8ea76e278447fb2"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aabc650f85de14e2e6e5b8d05602a89d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 171753,
            "upload_time": "2024-11-10T14:34:59",
            "upload_time_iso_8601": "2024-11-10T14:34:59.532145Z",
            "url": "https://files.pythonhosted.org/packages/8a/b0/21ab9282e5922ccd23b67050151476a4a32a7678d59bad4aa46534615afa/wordcloud-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54e57969f3b4a58bd4ac19e60e86f6a23925c19416ec065725b530f40c692e0e",
                "md5": "4d89fb1c3fe206860a076e6ff7794302",
                "sha256": "8e8752750726f31385f364823d3ef1d9c8ec829e5c07706c36beb40679945c71"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4d89fb1c3fe206860a076e6ff7794302",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 167716,
            "upload_time": "2024-11-10T14:35:01",
            "upload_time_iso_8601": "2024-11-10T14:35:01.300808Z",
            "url": "https://files.pythonhosted.org/packages/54/e5/7969f3b4a58bd4ac19e60e86f6a23925c19416ec065725b530f40c692e0e/wordcloud-1.9.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc2aa6d5c03decbe145858e777e80dbbf92697da9728c9d0c71c1c81a2d68e35",
                "md5": "91a173424dcdd076bec7dd427a576c6c",
                "sha256": "990dfd6dd43a1c7fa156be865eb98aba167a986b65f56cbf50e24772107fcd70"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91a173424dcdd076bec7dd427a576c6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 511106,
            "upload_time": "2024-11-10T14:35:02",
            "upload_time_iso_8601": "2024-11-10T14:35:02.592543Z",
            "url": "https://files.pythonhosted.org/packages/dc/2a/a6d5c03decbe145858e777e80dbbf92697da9728c9d0c71c1c81a2d68e35/wordcloud-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e21e663284794aedbaeb58939d3df391725de6d3966d4f742f6ff37ae7181a1b",
                "md5": "9a78493af74fb0702e3265afa534ec57",
                "sha256": "a70fe8999cd63aec64daa0377b720be6e5ff344963b828caeb4c2a081599a3a0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9a78493af74fb0702e3265afa534ec57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 493431,
            "upload_time": "2024-11-10T14:35:03",
            "upload_time_iso_8601": "2024-11-10T14:35:03.765664Z",
            "url": "https://files.pythonhosted.org/packages/e2/1e/663284794aedbaeb58939d3df391725de6d3966d4f742f6ff37ae7181a1b/wordcloud-1.9.4-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": "2f76971e2689430555fb1a04f148a4888f0b4d20873f19d1e04c02ff1e613b60",
                "md5": "35cc645c2de85a6b3072317f049b2a53",
                "sha256": "37dcd5500cc2ea02950739390e89e2efa6624c2f54b5e2df1ee961fce685b2d7"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "35cc645c2de85a6b3072317f049b2a53",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 514561,
            "upload_time": "2024-11-10T14:35:05",
            "upload_time_iso_8601": "2024-11-10T14:35:05.367163Z",
            "url": "https://files.pythonhosted.org/packages/2f/76/971e2689430555fb1a04f148a4888f0b4d20873f19d1e04c02ff1e613b60/wordcloud-1.9.4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7640eb530e49348f8acac2351843f886f74ea6f17e99c349aad6d583029d60f7",
                "md5": "ba4a2ac5d78a2aa7e19a6f4cde056adb",
                "sha256": "f5cc5c902dc2492b9fc0e29a1f5c688422d7e6eb9e5c0e43f0331d1c8e1341ba"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba4a2ac5d78a2aa7e19a6f4cde056adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 530938,
            "upload_time": "2024-11-10T14:35:07",
            "upload_time_iso_8601": "2024-11-10T14:35:07.071398Z",
            "url": "https://files.pythonhosted.org/packages/76/40/eb530e49348f8acac2351843f886f74ea6f17e99c349aad6d583029d60f7/wordcloud-1.9.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c556ac3d6bab585ac2a9fc7d3aec4f25832188ad1d7d81815dbca9e7017709e6",
                "md5": "d8ec260d49d88f6cf18064d752b18392",
                "sha256": "c20fbb51af2046c940b4fead4bafffc30b4191f5fb477c3af844446d8956bfd4"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d8ec260d49d88f6cf18064d752b18392",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 289958,
            "upload_time": "2024-11-10T14:35:08",
            "upload_time_iso_8601": "2024-11-10T14:35:08.993854Z",
            "url": "https://files.pythonhosted.org/packages/c5/56/ac3d6bab585ac2a9fc7d3aec4f25832188ad1d7d81815dbca9e7017709e6/wordcloud-1.9.4-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79597a85f2be948999e16b88574cc8341524a4042b4544d1904b08a652f7f415",
                "md5": "de7b4807bfa7cb5491f40db6e7b7f778",
                "sha256": "61a153e76d73c72f5cc6c89ee80ddad70758a207c3c6b1d86be8635ec70164f1"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de7b4807bfa7cb5491f40db6e7b7f778",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 299767,
            "upload_time": "2024-11-10T14:35:10",
            "upload_time_iso_8601": "2024-11-10T14:35:10.877393Z",
            "url": "https://files.pythonhosted.org/packages/79/59/7a85f2be948999e16b88574cc8341524a4042b4544d1904b08a652f7f415/wordcloud-1.9.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32073d355f71fb32f9d780d0099ece83dd10f0b9b71a9359cd468f3c25c52bfc",
                "md5": "1528af4d552e86bd44302027fc29d48a",
                "sha256": "af168eeaed67a675f35b5668a7804c4d64f8e4f62a273b909eb5cc39efc4c294"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1528af4d552e86bd44302027fc29d48a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 171653,
            "upload_time": "2024-11-10T14:35:12",
            "upload_time_iso_8601": "2024-11-10T14:35:12.542876Z",
            "url": "https://files.pythonhosted.org/packages/32/07/3d355f71fb32f9d780d0099ece83dd10f0b9b71a9359cd468f3c25c52bfc/wordcloud-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa5f34a0c0be52dc95f96aa1197f03ad5d5c58a9901c74f050d21a3e1b21ebf9",
                "md5": "1918e266eb0aa242743a9012cf086d92",
                "sha256": "3092bf85cb20158c8b90d78650dc0226985109ac6fe13a0086ac47b9581b62ce"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1918e266eb0aa242743a9012cf086d92",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 167608,
            "upload_time": "2024-11-10T14:35:13",
            "upload_time_iso_8601": "2024-11-10T14:35:13.555972Z",
            "url": "https://files.pythonhosted.org/packages/fa/5f/34a0c0be52dc95f96aa1197f03ad5d5c58a9901c74f050d21a3e1b21ebf9/wordcloud-1.9.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eed367ccdab9d2756f8b30b0669015840cd5fdb5f062a2d621d67f033cf3dd54",
                "md5": "80573fb19061b0ff07315522c04a4449",
                "sha256": "ddfb852f551681f5e33feb934505e060952b6aa98aaa48c781cdbf101f84e7cc"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80573fb19061b0ff07315522c04a4449",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 547933,
            "upload_time": "2024-11-10T14:35:15",
            "upload_time_iso_8601": "2024-11-10T14:35:15.220758Z",
            "url": "https://files.pythonhosted.org/packages/ee/d3/67ccdab9d2756f8b30b0669015840cd5fdb5f062a2d621d67f033cf3dd54/wordcloud-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ba544f374424cceab8db931ea4bf48a78d9969e5fd3e6c47d84d0e2276c0bd6",
                "md5": "e9efbb401b4458d9d3ace959f03b6e6d",
                "sha256": "57ad8064a634a4870fcd00a9694c0a7839c6dfbac3d32522c69d5e1e9cbfd911"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9efbb401b4458d9d3ace959f03b6e6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 528539,
            "upload_time": "2024-11-10T14:35:16",
            "upload_time_iso_8601": "2024-11-10T14:35:16.328300Z",
            "url": "https://files.pythonhosted.org/packages/9b/a5/44f374424cceab8db931ea4bf48a78d9969e5fd3e6c47d84d0e2276c0bd6/wordcloud-1.9.4-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": "fc5f2ab2ce735e4dc8775888ddb2fb12c91d2a4208cffb5861a49b3191da74e9",
                "md5": "af53168d3f4bef5a20e4b6fcdf652293",
                "sha256": "ea14858973ad8561a20a5475eb8d7ad33622bc5f27c60206fbb3e10a036cee26"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "af53168d3f4bef5a20e4b6fcdf652293",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 548667,
            "upload_time": "2024-11-10T14:35:17",
            "upload_time_iso_8601": "2024-11-10T14:35:17.886825Z",
            "url": "https://files.pythonhosted.org/packages/fc/5f/2ab2ce735e4dc8775888ddb2fb12c91d2a4208cffb5861a49b3191da74e9/wordcloud-1.9.4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943e54fc6d268dc6404d878b2e49a587b6f92440d08cb5d6bb6b8f1b575efef3",
                "md5": "459cf1073c2a98d1fb67f766cb1251b3",
                "sha256": "b27759f12dd235468ff8c1df875b106b23dbf2c74aae05cdcdc3ccd8e23ea89c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "459cf1073c2a98d1fb67f766cb1251b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 567875,
            "upload_time": "2024-11-10T14:35:19",
            "upload_time_iso_8601": "2024-11-10T14:35:19.643984Z",
            "url": "https://files.pythonhosted.org/packages/94/3e/54fc6d268dc6404d878b2e49a587b6f92440d08cb5d6bb6b8f1b575efef3/wordcloud-1.9.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28a7ca3e02c86080332c3af55c581ba0a79c4c25b12bc49fcd2bbbbeeec7a490",
                "md5": "0348c5b707b427ce4a50d6d9e90f449b",
                "sha256": "0ac3d87627022fb8cce17297298be96c91185edd55ecf8906f89f981b55974f0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0348c5b707b427ce4a50d6d9e90f449b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 289607,
            "upload_time": "2024-11-10T14:35:20",
            "upload_time_iso_8601": "2024-11-10T14:35:20.709224Z",
            "url": "https://files.pythonhosted.org/packages/28/a7/ca3e02c86080332c3af55c581ba0a79c4c25b12bc49fcd2bbbbeeec7a490/wordcloud-1.9.4-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0009abb305dce85911b8fba382926cfc57f2f257729e25937fdcc63f3a1a67f9",
                "md5": "d40e3b2dea10f945940dc58f08ca90fe",
                "sha256": "85368249df056527f1b64e80e68636abb61f0f6bd2d1c430894d2af1feea7f73"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d40e3b2dea10f945940dc58f08ca90fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 299928,
            "upload_time": "2024-11-10T14:35:21",
            "upload_time_iso_8601": "2024-11-10T14:35:21.826194Z",
            "url": "https://files.pythonhosted.org/packages/00/09/abb305dce85911b8fba382926cfc57f2f257729e25937fdcc63f3a1a67f9/wordcloud-1.9.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d5db51a970694ca5feda24cec7dbd37a63bcecd3e5735386840b0ed883bd3df",
                "md5": "62b80100947ddee276a639ede320383e",
                "sha256": "3910494ce5acb27731fd5678d146e8aa8f588d5fdb455810c817ff4b84ee0f67"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62b80100947ddee276a639ede320383e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 173370,
            "upload_time": "2024-11-10T14:35:23",
            "upload_time_iso_8601": "2024-11-10T14:35:23.495577Z",
            "url": "https://files.pythonhosted.org/packages/3d/5d/b51a970694ca5feda24cec7dbd37a63bcecd3e5735386840b0ed883bd3df/wordcloud-1.9.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4071a82829127bbf4f9d46de5c6009b7c095a450fa8f0fb466f788a62eeae11",
                "md5": "7e50ce77fd9343c76578d96e7c8fd078",
                "sha256": "1b1c29a0089ee90778700cc96305fa830a6a5bbb342eaaa59d6ac8d37a9b232f"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e50ce77fd9343c76578d96e7c8fd078",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 168868,
            "upload_time": "2024-11-10T14:35:24",
            "upload_time_iso_8601": "2024-11-10T14:35:24.550110Z",
            "url": "https://files.pythonhosted.org/packages/c4/07/1a82829127bbf4f9d46de5c6009b7c095a450fa8f0fb466f788a62eeae11/wordcloud-1.9.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afad9ec4ded660b95c265ec4de2688ac1d0940bb06e609193c200853ba0e7db6",
                "md5": "d51a3411efb6734d0996f259f3e5ac53",
                "sha256": "f369ae7bef16341c2bb208e658d5e4c56517046eb6176f89ac95525eaf8ace09"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d51a3411efb6734d0996f259f3e5ac53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 539171,
            "upload_time": "2024-11-10T14:35:25",
            "upload_time_iso_8601": "2024-11-10T14:35:25.640555Z",
            "url": "https://files.pythonhosted.org/packages/af/ad/9ec4ded660b95c265ec4de2688ac1d0940bb06e609193c200853ba0e7db6/wordcloud-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49efa9aad2400d5f68fca8efd6b75fb5067b7c91abcf9f9cfd5cc4cd3dc955ba",
                "md5": "7d21e1c3e27ccb63edcab4a11db6d4f1",
                "sha256": "9ec6ffba61ca20123e7c09103a5692bbc3163f75ee0bdc7893e80e0e2786ccd2"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7d21e1c3e27ccb63edcab4a11db6d4f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 518450,
            "upload_time": "2024-11-10T14:35:26",
            "upload_time_iso_8601": "2024-11-10T14:35:26.817796Z",
            "url": "https://files.pythonhosted.org/packages/49/ef/a9aad2400d5f68fca8efd6b75fb5067b7c91abcf9f9cfd5cc4cd3dc955ba/wordcloud-1.9.4-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": "d1b0320b69ad1976a351649e778ccc1d899791010661736179614434f5229cdf",
                "md5": "903bae7a5651c1ecd85dc4ca8fe28e3c",
                "sha256": "cdc4aac2bcce77fd91dbfe91db5a8c0cdc239e10d8954356d2ebf79a3b43646c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "903bae7a5651c1ecd85dc4ca8fe28e3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 542195,
            "upload_time": "2024-11-10T14:35:28",
            "upload_time_iso_8601": "2024-11-10T14:35:28.003830Z",
            "url": "https://files.pythonhosted.org/packages/d1/b0/320b69ad1976a351649e778ccc1d899791010661736179614434f5229cdf/wordcloud-1.9.4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ddbc9c3f2d6e1af3f8b2488da4d14d731ecaf8ba990bdaed1d0f9e3f9c6aa5e",
                "md5": "b83d30cdbbc93997fe6e46d555829b69",
                "sha256": "e4942fbed48a88a0c42c5b0a057651fc09d26b31be8b6c069adaaa5051836040"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b83d30cdbbc93997fe6e46d555829b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 559512,
            "upload_time": "2024-11-10T14:35:31",
            "upload_time_iso_8601": "2024-11-10T14:35:31.172940Z",
            "url": "https://files.pythonhosted.org/packages/7d/db/c9c3f2d6e1af3f8b2488da4d14d731ecaf8ba990bdaed1d0f9e3f9c6aa5e/wordcloud-1.9.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3be307b2ba29f9502ea2fa5f8553d1674f0b811cc97f6d4f88a5ef374f91a75",
                "md5": "82608958cccab7add92e185dd9876951",
                "sha256": "96b801fe4b2aa39bb6c5e68b4a74c81fd8996dd5fb5cea31fda518dc5f77ad82"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "82608958cccab7add92e185dd9876951",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 291061,
            "upload_time": "2024-11-10T14:35:32",
            "upload_time_iso_8601": "2024-11-10T14:35:32.374379Z",
            "url": "https://files.pythonhosted.org/packages/b3/be/307b2ba29f9502ea2fa5f8553d1674f0b811cc97f6d4f88a5ef374f91a75/wordcloud-1.9.4-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9746a15f68f59bc90032bfcf62eca796a5675be95e1aaf84f7861e1bfcfa8e5",
                "md5": "7f699f342a1257592d047ef06c4bda5f",
                "sha256": "360977705d0808a1795fcbe98afb5dc4833cb4bb8e421cbb10e93ef0bce816ff"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7f699f342a1257592d047ef06c4bda5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 301186,
            "upload_time": "2024-11-10T14:35:34",
            "upload_time_iso_8601": "2024-11-10T14:35:34.166729Z",
            "url": "https://files.pythonhosted.org/packages/b9/74/6a15f68f59bc90032bfcf62eca796a5675be95e1aaf84f7861e1bfcfa8e5/wordcloud-1.9.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1263b9ae330ea5ce8cb1fd363290e39acd3440d66a111e22a388c71327dbfdd7",
                "md5": "1d1221df1abeb331b31c8f73758b77d4",
                "sha256": "88c4c99f43b13df0e812fac0e4680cca2afd3ce16ade506812127ed7c7b9d132"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d1221df1abeb331b31c8f73758b77d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 172336,
            "upload_time": "2024-11-10T14:35:36",
            "upload_time_iso_8601": "2024-11-10T14:35:36.034464Z",
            "url": "https://files.pythonhosted.org/packages/12/63/b9ae330ea5ce8cb1fd363290e39acd3440d66a111e22a388c71327dbfdd7/wordcloud-1.9.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d281f09fb4cd8a24abec8bbc86465dfaecea9f5f30dfe0936816fe7c0199b965",
                "md5": "1ac2db309c85b2d24216030314058664",
                "sha256": "2367ec70b2f195c278f91caf4674871ee9218eb57250e01a02b986d34e55f88e"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ac2db309c85b2d24216030314058664",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 167649,
            "upload_time": "2024-11-10T14:35:37",
            "upload_time_iso_8601": "2024-11-10T14:35:37.542927Z",
            "url": "https://files.pythonhosted.org/packages/d2/81/f09fb4cd8a24abec8bbc86465dfaecea9f5f30dfe0936816fe7c0199b965/wordcloud-1.9.4-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1af081624a86d570e2c72336b139be19923eeb35db584a5409fa0bb7077de506",
                "md5": "cc26571ce35651c12cc97e7cb1edf2d8",
                "sha256": "d6104a52936886dbc785844ab6986b5321a312238abb242ee4062c7b3fdcca7c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc26571ce35651c12cc97e7cb1edf2d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 537246,
            "upload_time": "2024-11-10T14:35:38",
            "upload_time_iso_8601": "2024-11-10T14:35:38.596473Z",
            "url": "https://files.pythonhosted.org/packages/1a/f0/81624a86d570e2c72336b139be19923eeb35db584a5409fa0bb7077de506/wordcloud-1.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e1ddab7bfdd2fe4878b2bc36212ceab7392742278fd5970d281680fbbfebc95",
                "md5": "f06cf54eddb908c44f5f96fb840f8747",
                "sha256": "81bbe75b2725730bf5cbabfe86a5c38960e7ce1166f76ba7001964d8de50b3a7"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f06cf54eddb908c44f5f96fb840f8747",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 513149,
            "upload_time": "2024-11-10T14:35:41",
            "upload_time_iso_8601": "2024-11-10T14:35:41.200054Z",
            "url": "https://files.pythonhosted.org/packages/9e/1d/dab7bfdd2fe4878b2bc36212ceab7392742278fd5970d281680fbbfebc95/wordcloud-1.9.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db9b27cd55561c615057931df10c399ab7976d89a79134f3e6a895c4fde33e0b",
                "md5": "6e3f2107b96d6f9d2a6facc2399957e4",
                "sha256": "a936b8e03c32cc84c99ad8f1bdaf261dfef6c44d31ca5b0c7d0df147220dbb3c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6e3f2107b96d6f9d2a6facc2399957e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 538723,
            "upload_time": "2024-11-10T14:35:42",
            "upload_time_iso_8601": "2024-11-10T14:35:42.392762Z",
            "url": "https://files.pythonhosted.org/packages/db/9b/27cd55561c615057931df10c399ab7976d89a79134f3e6a895c4fde33e0b/wordcloud-1.9.4-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f9e8d3cade7d9f18a8e406e3e9d701e721d1e41d1ac15bf292e71c817545a59",
                "md5": "a4a1d87d420fa92f614de2d78a4f6948",
                "sha256": "046300566df97b48640bd3efd94957a56941ada98cc23f811bc3f9b6a0ac1350"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4a1d87d420fa92f614de2d78a4f6948",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 555877,
            "upload_time": "2024-11-10T14:35:43",
            "upload_time_iso_8601": "2024-11-10T14:35:43.831618Z",
            "url": "https://files.pythonhosted.org/packages/9f/9e/8d3cade7d9f18a8e406e3e9d701e721d1e41d1ac15bf292e71c817545a59/wordcloud-1.9.4-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dd8bdaf902471c3f0cc3538c8183cdd0ac61624c9552e5414d8d78ddedb6ce8",
                "md5": "30a2dfdef591beda1448d46267fa962b",
                "sha256": "22357990a01d87579dbd38a06c2a5c7b601179c4e17517b1b8f73d25faa6a5ed"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "30a2dfdef591beda1448d46267fa962b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 290877,
            "upload_time": "2024-11-10T14:35:44",
            "upload_time_iso_8601": "2024-11-10T14:35:44.945015Z",
            "url": "https://files.pythonhosted.org/packages/1d/d8/bdaf902471c3f0cc3538c8183cdd0ac61624c9552e5414d8d78ddedb6ce8/wordcloud-1.9.4-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8447d482f7d2decc6e59e69e105b12c53d6d2967f0d703e664484c5f2f87fca8",
                "md5": "ace760e3db2483a8f122a7ff493d03f5",
                "sha256": "8c9a5af2fbcf029a19e827adbee58e86efe7536dca7a42380a8601113a86069b"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ace760e3db2483a8f122a7ff493d03f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 300987,
            "upload_time": "2024-11-10T14:35:46",
            "upload_time_iso_8601": "2024-11-10T14:35:46.616687Z",
            "url": "https://files.pythonhosted.org/packages/84/47/d482f7d2decc6e59e69e105b12c53d6d2967f0d703e664484c5f2f87fca8/wordcloud-1.9.4-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42eae26277b2def15f7531630e58a0abed81a5dc159222607fcf669232e98d02",
                "md5": "75fd3e90fd7cbd5d3b55f40b2e626dcc",
                "sha256": "42affa75c1b033cb0a0afb674f653c4af16d51d97a0852c5770b659b903d9af5"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75fd3e90fd7cbd5d3b55f40b2e626dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 171826,
            "upload_time": "2024-11-10T14:35:47",
            "upload_time_iso_8601": "2024-11-10T14:35:47.646742Z",
            "url": "https://files.pythonhosted.org/packages/42/ea/e26277b2def15f7531630e58a0abed81a5dc159222607fcf669232e98d02/wordcloud-1.9.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a5e3a491506749bf0e4ea6c39cce93d8aff990caece8e94c12f01d39ccaa012",
                "md5": "f7a06d2d048950ce3cd44fc85ecb357e",
                "sha256": "e0876722c35cf4d5d7717ab81ba98b946e07b0e869252248fdd9ea1fd6c977cc"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7a06d2d048950ce3cd44fc85ecb357e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 488919,
            "upload_time": "2024-11-10T14:35:48",
            "upload_time_iso_8601": "2024-11-10T14:35:48.752566Z",
            "url": "https://files.pythonhosted.org/packages/3a/5e/3a491506749bf0e4ea6c39cce93d8aff990caece8e94c12f01d39ccaa012/wordcloud-1.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33c22ffa27c2c1eee1d63c0cfa9866519d5871b4a32d81cf072c7b6a7b49c702",
                "md5": "5e3061e994c673194f827515ca5195a2",
                "sha256": "489079ef173fe83ccff8baffd7a3c2d5fedfd31221c25ad21b4de770ea37b49f"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5e3061e994c673194f827515ca5195a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 469864,
            "upload_time": "2024-11-10T14:35:50",
            "upload_time_iso_8601": "2024-11-10T14:35:50.584193Z",
            "url": "https://files.pythonhosted.org/packages/33/c2/2ffa27c2c1eee1d63c0cfa9866519d5871b4a32d81cf072c7b6a7b49c702/wordcloud-1.9.4-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": "6b029b1f712976b958304ed5f73154969ea5ea6633b4026cac07873bbfdeffd3",
                "md5": "3092a377ba6750ba30ea0ff005531522",
                "sha256": "3f3dc2dacca48eac9b130a8938b473db81cfbeeb1a738530a7098913941a8211"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3092a377ba6750ba30ea0ff005531522",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 496641,
            "upload_time": "2024-11-10T14:35:51",
            "upload_time_iso_8601": "2024-11-10T14:35:51.695231Z",
            "url": "https://files.pythonhosted.org/packages/6b/02/9b1f712976b958304ed5f73154969ea5ea6633b4026cac07873bbfdeffd3/wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19ec36a4cc2c6c2c377b07c3c9b3b358b3fa2de2314b0857377e485bc65fb351",
                "md5": "7ca942475d176d0aa91044348e4eadff",
                "sha256": "2e509c4588ae2ce47ee5cc5cf353422e7f7ecc38f450998654ed50565c8a550d"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ca942475d176d0aa91044348e4eadff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 511587,
            "upload_time": "2024-11-10T14:35:52",
            "upload_time_iso_8601": "2024-11-10T14:35:52.811175Z",
            "url": "https://files.pythonhosted.org/packages/19/ec/36a4cc2c6c2c377b07c3c9b3b358b3fa2de2314b0857377e485bc65fb351/wordcloud-1.9.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86e67f100c5c97a2ae6bb828313d7e6f3f57d8ed8d99eba2ba34a42c284a9c1c",
                "md5": "2d57415f33204baf268bed73e73c15bf",
                "sha256": "8009f53ba0c3b2d6f2b1dad83e0fb165ebcdfbd000ce62ebe0917106f51d975d"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "2d57415f33204baf268bed73e73c15bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 289940,
            "upload_time": "2024-11-10T14:35:53",
            "upload_time_iso_8601": "2024-11-10T14:35:53.913642Z",
            "url": "https://files.pythonhosted.org/packages/86/e6/7f100c5c97a2ae6bb828313d7e6f3f57d8ed8d99eba2ba34a42c284a9c1c/wordcloud-1.9.4-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db0b1c957c6a4c21f025aa39880d7324a2ebfbbbb5c4d829b86ee65ab803b9b0",
                "md5": "d101a1233f9fb06aff0a529f6893cc9d",
                "sha256": "30b1a59b9073eaaa4f2b0f27d5b6b6c3eb6aaa3a6e0b3dbb2220036b25b37dac"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d101a1233f9fb06aff0a529f6893cc9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 299949,
            "upload_time": "2024-11-10T14:35:54",
            "upload_time_iso_8601": "2024-11-10T14:35:54.985102Z",
            "url": "https://files.pythonhosted.org/packages/db/0b/1c957c6a4c21f025aa39880d7324a2ebfbbbb5c4d829b86ee65ab803b9b0/wordcloud-1.9.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "381b7e521b202d3d480e56e7df14750628a0ba00a02ba942608558fc9e3d27fe",
                "md5": "9461508354494b8440df58ab734d4922",
                "sha256": "8a685babefe032716c1a00b7d8cec3f6bfdc1c89fd839578432fc53824a02fea"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9461508354494b8440df58ab734d4922",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 172279,
            "upload_time": "2024-11-10T14:35:56",
            "upload_time_iso_8601": "2024-11-10T14:35:56.023709Z",
            "url": "https://files.pythonhosted.org/packages/38/1b/7e521b202d3d480e56e7df14750628a0ba00a02ba942608558fc9e3d27fe/wordcloud-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98556521d24d8a6830b0a02f3315583d2ca4c0715bc4bf9233cba256d3be1e9f",
                "md5": "235b72f6ba98c5fe6667d1de0fcf0d03",
                "sha256": "b78b9fb292a243cf8fcdf63b9cc1fd157ec6abbf1a6e675303668b85e948f616"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "235b72f6ba98c5fe6667d1de0fcf0d03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 168335,
            "upload_time": "2024-11-10T14:35:57",
            "upload_time_iso_8601": "2024-11-10T14:35:57.036010Z",
            "url": "https://files.pythonhosted.org/packages/98/55/6521d24d8a6830b0a02f3315583d2ca4c0715bc4bf9233cba256d3be1e9f/wordcloud-1.9.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcfb3e3c20f03354a0efe28a8ec26d31b3ddbe8054201e4c6d6e6625539f51a2",
                "md5": "a7f07cb5c7f51af181e2fd1b76d34e52",
                "sha256": "f51ab42c00bc4782ab45701de45226a269ca0850df14e1bd63a60da73271724e"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7f07cb5c7f51af181e2fd1b76d34e52",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 520284,
            "upload_time": "2024-11-10T14:35:58",
            "upload_time_iso_8601": "2024-11-10T14:35:58.186221Z",
            "url": "https://files.pythonhosted.org/packages/dc/fb/3e3c20f03354a0efe28a8ec26d31b3ddbe8054201e4c6d6e6625539f51a2/wordcloud-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b3e363638b82fb268690a56a6c4536e907914c66c4e06d7577e17aa6c4c370c",
                "md5": "68178a43a4df9be42c5ad6c430f47b28",
                "sha256": "38ee69d9404504cf2419d60c3017af7ab9e88f4ba6cf47bc1c96b2d5e58ef513"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "68178a43a4df9be42c5ad6c430f47b28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 503789,
            "upload_time": "2024-11-10T14:35:59",
            "upload_time_iso_8601": "2024-11-10T14:35:59.298070Z",
            "url": "https://files.pythonhosted.org/packages/9b/3e/363638b82fb268690a56a6c4536e907914c66c4e06d7577e17aa6c4c370c/wordcloud-1.9.4-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": "57485825188df3b781d6c6add7243c37eb4bd405f98b2ba79c4ce43418800827",
                "md5": "2f3981b956c2dbbee0a8ae667e9b8dcc",
                "sha256": "9955223708f196c1e431ae3b86074409bc256c5868e4f50eb9c36c6f06f8b1a3"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2f3981b956c2dbbee0a8ae667e9b8dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 524765,
            "upload_time": "2024-11-10T14:36:01",
            "upload_time_iso_8601": "2024-11-10T14:36:01.116696Z",
            "url": "https://files.pythonhosted.org/packages/57/48/5825188df3b781d6c6add7243c37eb4bd405f98b2ba79c4ce43418800827/wordcloud-1.9.4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0129be3e5a61d4faed12514ca3cb1ce8e92bd681076e3e90b13224c90a693988",
                "md5": "fe8a54ec99df0ecadd35daff6e07d067",
                "sha256": "3585ab8f4f09f1508f2d351ed48f9b56472ae26eaf6e2d2e76e975abd715d7a2"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe8a54ec99df0ecadd35daff6e07d067",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 543615,
            "upload_time": "2024-11-10T14:36:02",
            "upload_time_iso_8601": "2024-11-10T14:36:02.564060Z",
            "url": "https://files.pythonhosted.org/packages/01/29/be3e5a61d4faed12514ca3cb1ce8e92bd681076e3e90b13224c90a693988/wordcloud-1.9.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e621064f14e914f6f9c06a73464feec515d7b68cb015894ee3c5eda87c85998a",
                "md5": "b80ca452da97d1290451a0097e6e5e62",
                "sha256": "d7d0b89c2ada0e65d84a6ebbdd8d36876b5da1a143cce2f7dcdaff6714232d24"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "b80ca452da97d1290451a0097e6e5e62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 290574,
            "upload_time": "2024-11-10T14:36:03",
            "upload_time_iso_8601": "2024-11-10T14:36:03.739265Z",
            "url": "https://files.pythonhosted.org/packages/e6/21/064f14e914f6f9c06a73464feec515d7b68cb015894ee3c5eda87c85998a/wordcloud-1.9.4-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c7826c54044650ff5b0d7579b25594009cfd694f8a7a09e3d450fab0194edbe",
                "md5": "23e8c59fb31cf0ead1e212eb451b15c3",
                "sha256": "bd7caefe91d4084c1608d816052eeb605d9a7aee0c908f3a9d7421ee6363bde0"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23e8c59fb31cf0ead1e212eb451b15c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 300455,
            "upload_time": "2024-11-10T14:36:05",
            "upload_time_iso_8601": "2024-11-10T14:36:05.310223Z",
            "url": "https://files.pythonhosted.org/packages/2c/78/26c54044650ff5b0d7579b25594009cfd694f8a7a09e3d450fab0194edbe/wordcloud-1.9.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9472c9c9e3090d80299e84482e3bb99b3fdfddb1c6fcc0e376ed9e33130319d",
                "md5": "25771e415ff7b29eb4e4b9b65c8aa675",
                "sha256": "e5b2f7195adef0a071dc24a568d8a7715bc5cf5d752b4560f51da3aa4467dcf8"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25771e415ff7b29eb4e4b9b65c8aa675",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 172267,
            "upload_time": "2024-11-10T14:36:06",
            "upload_time_iso_8601": "2024-11-10T14:36:06.390292Z",
            "url": "https://files.pythonhosted.org/packages/f9/47/2c9c9e3090d80299e84482e3bb99b3fdfddb1c6fcc0e376ed9e33130319d/wordcloud-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06dc87b01d90d62bd6715c864f379ae7ace8a53b0755abf1ad8e822129002528",
                "md5": "58859dad31344a5710f36d377355e9d3",
                "sha256": "34843fa49135c4ed3739dea050696e707fd00e7335ee4ed62c33639589f90adf"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "58859dad31344a5710f36d377355e9d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 168323,
            "upload_time": "2024-11-10T14:36:07",
            "upload_time_iso_8601": "2024-11-10T14:36:07.457308Z",
            "url": "https://files.pythonhosted.org/packages/06/dc/87b01d90d62bd6715c864f379ae7ace8a53b0755abf1ad8e822129002528/wordcloud-1.9.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e295fd253433d880dd91a0e058e292fae5828277166e988204638ede2a3e6ce",
                "md5": "55e04da6cb959cca0a9fa86dfe39f7e0",
                "sha256": "6570cc4e48e8e951d24ef6599cd8bf7ff405fbe995ff6d596bcdfa290a6206a8"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55e04da6cb959cca0a9fa86dfe39f7e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 513727,
            "upload_time": "2024-11-10T14:36:08",
            "upload_time_iso_8601": "2024-11-10T14:36:08.571901Z",
            "url": "https://files.pythonhosted.org/packages/7e/29/5fd253433d880dd91a0e058e292fae5828277166e988204638ede2a3e6ce/wordcloud-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "380bf03c6709bfe7c72e667431c56c2bbd6821d6ffe7b28e6301e7dd31b62837",
                "md5": "54a15b66e7d44612289ea6c59e5ff810",
                "sha256": "17f944805a17b8343eb877c9aa1dc9e5339eb14c02dd00ec80feccea899bbf81"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "54a15b66e7d44612289ea6c59e5ff810",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 496534,
            "upload_time": "2024-11-10T14:36:09",
            "upload_time_iso_8601": "2024-11-10T14:36:09.774034Z",
            "url": "https://files.pythonhosted.org/packages/38/0b/f03c6709bfe7c72e667431c56c2bbd6821d6ffe7b28e6301e7dd31b62837/wordcloud-1.9.4-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": "25db9bab416d3196b578021ca73d81b9268d5de50f9a92f8288b554ec883fd4a",
                "md5": "fe9f4042faef4098cdc61175287bc2be",
                "sha256": "7c1cd2a6ef876f5f9fe0255e44f131a6113f883447ed1cf8bdb86f569603bac9"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fe9f4042faef4098cdc61175287bc2be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 517229,
            "upload_time": "2024-11-10T14:36:10",
            "upload_time_iso_8601": "2024-11-10T14:36:10.885112Z",
            "url": "https://files.pythonhosted.org/packages/25/db/9bab416d3196b578021ca73d81b9268d5de50f9a92f8288b554ec883fd4a/wordcloud-1.9.4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a422a40722ffd1975a52ef3697a9704eb75e1d9adfca5502bd10cf8be8a81543",
                "md5": "8029110a82c39a6a48cbb1a8a8900508",
                "sha256": "2b129584327ba21d05869fcf9495f10f7b31a34a580c431c4942a71ce2317e79"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8029110a82c39a6a48cbb1a8a8900508",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 533556,
            "upload_time": "2024-11-10T14:36:13",
            "upload_time_iso_8601": "2024-11-10T14:36:13.584868Z",
            "url": "https://files.pythonhosted.org/packages/a4/22/a40722ffd1975a52ef3697a9704eb75e1d9adfca5502bd10cf8be8a81543/wordcloud-1.9.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35d3720a79f055bc776e65369e26e2c11ed33c3a3549ca8753c5929842dda19d",
                "md5": "ba52aa7db582ec8acb5bfe7d53b51a74",
                "sha256": "526dfd822600f158210a191a59cc4bdcaaa1ff05ab2aa199040d857a518b1db6"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ba52aa7db582ec8acb5bfe7d53b51a74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 290653,
            "upload_time": "2024-11-10T14:36:15",
            "upload_time_iso_8601": "2024-11-10T14:36:15.123690Z",
            "url": "https://files.pythonhosted.org/packages/35/d3/720a79f055bc776e65369e26e2c11ed33c3a3549ca8753c5929842dda19d/wordcloud-1.9.4-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08021e220adb310d5b5019e1ee85fdb7616e6401b2db434c790e7505012f847c",
                "md5": "9cc48ef2c1e82e6dc0075f540e92d730",
                "sha256": "ac32b851a19b7d2a9ee5e0aebc8210bf16eadc42c5c0da82e36d447552c8ec48"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9cc48ef2c1e82e6dc0075f540e92d730",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 300352,
            "upload_time": "2024-11-10T14:36:17",
            "upload_time_iso_8601": "2024-11-10T14:36:17.094946Z",
            "url": "https://files.pythonhosted.org/packages/08/02/1e220adb310d5b5019e1ee85fdb7616e6401b2db434c790e7505012f847c/wordcloud-1.9.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "636b886a158a7ccc9c4c0a5ff2f3d45623b66da1af73c75584bc25113dff5e36",
                "md5": "34ce42470700a331ce79a83f181df466",
                "sha256": "f733cca468eae79af83cdda1de2434f1799cefef461ed892e7679d5a4c929fa1"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34ce42470700a331ce79a83f181df466",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 157970,
            "upload_time": "2024-11-10T14:36:18",
            "upload_time_iso_8601": "2024-11-10T14:36:18.219623Z",
            "url": "https://files.pythonhosted.org/packages/63/6b/886a158a7ccc9c4c0a5ff2f3d45623b66da1af73c75584bc25113dff5e36/wordcloud-1.9.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dc5180698e0f0e6bb42b3a173ce47d0474649dfcfa9bd60c902609e5707fde6",
                "md5": "b62487b693aa2e4abb021f5f24112ee0",
                "sha256": "3a99f96efe5983c6eed17abb8766ced713ddf18b26450da74addc91570922e62"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b62487b693aa2e4abb021f5f24112ee0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 171923,
            "upload_time": "2024-11-10T14:36:19",
            "upload_time_iso_8601": "2024-11-10T14:36:19.304742Z",
            "url": "https://files.pythonhosted.org/packages/4d/c5/180698e0f0e6bb42b3a173ce47d0474649dfcfa9bd60c902609e5707fde6/wordcloud-1.9.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2b994ca10d94b6f64ab55a7bacc3d9e30df339a8d3607d1919099d12da12024",
                "md5": "150e7aab6834be61945d257fd1d19325",
                "sha256": "80773ec6a9caa2048602bc347151e3b6e68e1d8fab148dfd0d2e7d4302ce5c01"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "150e7aab6834be61945d257fd1d19325",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 172780,
            "upload_time": "2024-11-10T14:36:20",
            "upload_time_iso_8601": "2024-11-10T14:36:20.327321Z",
            "url": "https://files.pythonhosted.org/packages/a2/b9/94ca10d94b6f64ab55a7bacc3d9e30df339a8d3607d1919099d12da12024/wordcloud-1.9.4-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": "e6ed35af241d0243ed82f5231a4e4dbabfdb421fba2b64fd4bdd66b413ad5c04",
                "md5": "08b6728f05d7f193a52b2e79abe77ebd",
                "sha256": "ca95392bba150190cca8df4a97854b554bdeb28007f28bf4698bd7e1af91b310"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "08b6728f05d7f193a52b2e79abe77ebd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 295073,
            "upload_time": "2024-11-10T14:36:21",
            "upload_time_iso_8601": "2024-11-10T14:36:21.433519Z",
            "url": "https://files.pythonhosted.org/packages/e6/ed/35af241d0243ed82f5231a4e4dbabfdb421fba2b64fd4bdd66b413ad5c04/wordcloud-1.9.4-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ab1350b0101435460028b68def758de9619ba2e42e0c04cea45332eec9700e3",
                "md5": "856a4d17f7ba8400b46567eb79a11e17",
                "sha256": "eed94b42676f4cfa9b9bdac777e3a1f046b16250216dd8ddcb583c4b6e4b1286"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "856a4d17f7ba8400b46567eb79a11e17",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 156932,
            "upload_time": "2024-11-10T14:36:22",
            "upload_time_iso_8601": "2024-11-10T14:36:22.563137Z",
            "url": "https://files.pythonhosted.org/packages/5a/b1/350b0101435460028b68def758de9619ba2e42e0c04cea45332eec9700e3/wordcloud-1.9.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b645fdd2b1fd177eec12874c15bbb80d02255c32d5e25f7e6f66c02aec9aa363",
                "md5": "7787315e7c795377ab6fd1b8187e45e1",
                "sha256": "b38aae2ff7aa10ad00d57a5b87ed4a573ef04dbc9119d4a304349c9cb3e03b6e"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7787315e7c795377ab6fd1b8187e45e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 171126,
            "upload_time": "2024-11-10T14:36:23",
            "upload_time_iso_8601": "2024-11-10T14:36:23.537156Z",
            "url": "https://files.pythonhosted.org/packages/b6/45/fdd2b1fd177eec12874c15bbb80d02255c32d5e25f7e6f66c02aec9aa363/wordcloud-1.9.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "963949991419f0d151885c464951c682f787e18c11bfc96fd42a0fa17679d83f",
                "md5": "3afd5c25e7d0d4f93aecf134fcdc6bc2",
                "sha256": "c3057be0d071afd57afb9be84fec767abdd78eac6396ead0f0f55c6775170945"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3afd5c25e7d0d4f93aecf134fcdc6bc2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 172271,
            "upload_time": "2024-11-10T14:36:24",
            "upload_time_iso_8601": "2024-11-10T14:36:24.595106Z",
            "url": "https://files.pythonhosted.org/packages/96/39/49991419f0d151885c464951c682f787e18c11bfc96fd42a0fa17679d83f/wordcloud-1.9.4-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": "71355c54a93d89709cf5f388accb93ae13dc9fad5e677b6b85956bd515f09984",
                "md5": "fee37a5fedde79f2f13b544de46b3c18",
                "sha256": "9c39351d2cffc15e3794f7afab78e9135d700f61c5b51904c55d9f3729d1a0df"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fee37a5fedde79f2f13b544de46b3c18",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 294379,
            "upload_time": "2024-11-10T14:36:26",
            "upload_time_iso_8601": "2024-11-10T14:36:26.339887Z",
            "url": "https://files.pythonhosted.org/packages/71/35/5c54a93d89709cf5f388accb93ae13dc9fad5e677b6b85956bd515f09984/wordcloud-1.9.4-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b86e7ecae433f9caff099534e67e17b28574123d2162d9d27124c2ed8b658ce",
                "md5": "b0d6a916d8ab8ddceec68f8a23eaaf2d",
                "sha256": "914745f0312d248c1a0e1f16ae7b3ce82f78924a2b050ca912d2453c62586da4"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0d6a916d8ab8ddceec68f8a23eaaf2d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 157043,
            "upload_time": "2024-11-10T14:36:27",
            "upload_time_iso_8601": "2024-11-10T14:36:27.458870Z",
            "url": "https://files.pythonhosted.org/packages/4b/86/e7ecae433f9caff099534e67e17b28574123d2162d9d27124c2ed8b658ce/wordcloud-1.9.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba636baccbbec95689b33ee91ebe43692150cf326e21766609695574b9d29b67",
                "md5": "56a15eb69a29f4a3e99977a724e6994e",
                "sha256": "885d51d20cc7b0dad2306fb76b867de20e759e005a1a6e183f3865b5e5f53985"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56a15eb69a29f4a3e99977a724e6994e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 171229,
            "upload_time": "2024-11-10T14:36:28",
            "upload_time_iso_8601": "2024-11-10T14:36:28.563665Z",
            "url": "https://files.pythonhosted.org/packages/ba/63/6baccbbec95689b33ee91ebe43692150cf326e21766609695574b9d29b67/wordcloud-1.9.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a3ec2ad9141fa5bd74b5cb47e9798136f141ea6b3230d34ee0e7ec92c824e2c",
                "md5": "061d5e178dd6c2b1877560a3c460ff64",
                "sha256": "61fc126ed9ce8d55bf20acbdc00284f5a6da66900197a2dd7b62c5ac37585ac5"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "061d5e178dd6c2b1877560a3c460ff64",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 172382,
            "upload_time": "2024-11-10T14:36:29",
            "upload_time_iso_8601": "2024-11-10T14:36:29.626211Z",
            "url": "https://files.pythonhosted.org/packages/8a/3e/c2ad9141fa5bd74b5cb47e9798136f141ea6b3230d34ee0e7ec92c824e2c/wordcloud-1.9.4-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": "845ccde55b2bc12fd3486114c79e11017226ef915bb33fa9ccec51ca7122ade8",
                "md5": "200b7da48d5c70448b801e5716de1bd5",
                "sha256": "c7b8536955f5026b0587ff829265392185b6b4bc923f2ed933c805fcac412b28"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "200b7da48d5c70448b801e5716de1bd5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 294510,
            "upload_time": "2024-11-10T14:36:30",
            "upload_time_iso_8601": "2024-11-10T14:36:30.734636Z",
            "url": "https://files.pythonhosted.org/packages/84/5c/cde55b2bc12fd3486114c79e11017226ef915bb33fa9ccec51ca7122ade8/wordcloud-1.9.4-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9572afbb82bbe764c427ba40be15ea0e5251b726ae6abb0314ad0084ebcd64cb",
                "md5": "55a3cfef256c9041b21014d87cc59a49",
                "sha256": "6a30ed8aa50b98edb113f72ef619581c221ba3678adeeed88345263c90092561"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55a3cfef256c9041b21014d87cc59a49",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 157850,
            "upload_time": "2024-11-10T14:36:31",
            "upload_time_iso_8601": "2024-11-10T14:36:31.874939Z",
            "url": "https://files.pythonhosted.org/packages/95/72/afbb82bbe764c427ba40be15ea0e5251b726ae6abb0314ad0084ebcd64cb/wordcloud-1.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39d71b9286323356c5ca8c25c16481a98f3c26a3b0221128af8b3e1515ab3991",
                "md5": "d74a06b0f533a21ed8a53fd206111e60",
                "sha256": "a62627e5b081b23a4586104d4b01d064db7b53342ae123b511326585eaf7433c"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d74a06b0f533a21ed8a53fd206111e60",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 171806,
            "upload_time": "2024-11-10T14:36:33",
            "upload_time_iso_8601": "2024-11-10T14:36:33.139928Z",
            "url": "https://files.pythonhosted.org/packages/39/d7/1b9286323356c5ca8c25c16481a98f3c26a3b0221128af8b3e1515ab3991/wordcloud-1.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2574fda616cf81a33c836b008ba2f32ffc8dad1eaa20739687239914ae909234",
                "md5": "c259a87ca7cd91551fdade6d2818a345",
                "sha256": "e137493365770f59655c7308ff76addc95ada2c6bd50ac119e4c33091e2e4e08"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c259a87ca7cd91551fdade6d2818a345",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 172639,
            "upload_time": "2024-11-10T14:36:34",
            "upload_time_iso_8601": "2024-11-10T14:36:34.296483Z",
            "url": "https://files.pythonhosted.org/packages/25/74/fda616cf81a33c836b008ba2f32ffc8dad1eaa20739687239914ae909234/wordcloud-1.9.4-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": "186e1b9134027cd1d3534a5ec3cc2cc279ffad2a3999d3f74e89e05f58cb4b5b",
                "md5": "0bfba12d5a507cd8ce55e715f7bcbf54",
                "sha256": "665f8e7de3dcc1e43aa5bdd9560d56ed51026ba638a33472eede2b9051108adb"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0bfba12d5a507cd8ce55e715f7bcbf54",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 294911,
            "upload_time": "2024-11-10T14:36:35",
            "upload_time_iso_8601": "2024-11-10T14:36:35.820888Z",
            "url": "https://files.pythonhosted.org/packages/18/6e/1b9134027cd1d3534a5ec3cc2cc279ffad2a3999d3f74e89e05f58cb4b5b/wordcloud-1.9.4-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03a10530b9001b05dcd13de21c2d4d821db5365dade5180242179fbc39372c57",
                "md5": "eececa8a5e0756dfa28cbdae6770e829",
                "sha256": "b273d8a5ded97d3ead904046b49464dcb71119ee79df875072a4c105cadd347a"
            },
            "downloads": -1,
            "filename": "wordcloud-1.9.4.tar.gz",
            "has_sig": false,
            "md5_digest": "eececa8a5e0756dfa28cbdae6770e829",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 27563753,
            "upload_time": "2024-11-10T14:36:37",
            "upload_time_iso_8601": "2024-11-10T14:36:37.291344Z",
            "url": "https://files.pythonhosted.org/packages/03/a1/0530b9001b05dcd13de21c2d4d821db5365dade5180242179fbc39372c57/wordcloud-1.9.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-10 14:36:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amueller",
    "github_project": "word_cloud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "1.5.3"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.6.1"
                ]
            ]
        },
        {
            "name": "pillow",
            "specs": []
        },
        {
            "name": "cython",
            "specs": []
        }
    ],
    "lcname": "wordcloud"
}
        
Elapsed time: 1.35050s