gensim


Namegensim JSON
Version 4.3.2 PyPI version JSON
download
home_pagehttps://radimrehurek.com/gensim/
SummaryPython framework for fast Vector Space Modelling
upload_time2023-08-24 08:51:27
maintainer
docs_urlhttps://pythonhosted.org/gensim/
authorRadim Rehurek
requires_python>=3.8
licenseLGPL-2.1-only
keywords singular value decomposition svd latent semantic indexing lsa lsi latent dirichlet allocation lda hierarchical dirichlet process hdp random projections tfidf word2vec
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
==============================================
gensim -- Topic Modelling in Python
==============================================

|GA|_
|Wheel|_

.. |GA| image:: https://github.com/RaRe-Technologies/gensim/actions/workflows/tests.yml/badge.svg?branch=develop
.. |Wheel| image:: https://img.shields.io/pypi/wheel/gensim.svg

.. _GA: https://github.com/RaRe-Technologies/gensim/actions
.. _Downloads: https://pypi.org/project/gensim/
.. _License: https://radimrehurek.com/gensim/intro.html#licensing
.. _Wheel: https://pypi.org/project/gensim/

Gensim is a Python library for *topic modelling*, *document indexing* and *similarity retrieval* with large corpora.
Target audience is the *natural language processing* (NLP) and *information retrieval* (IR) community.

Features
---------

* All algorithms are **memory-independent** w.r.t. the corpus size (can process input larger than RAM, streamed, out-of-core)
* **Intuitive interfaces**

  * easy to plug in your own input corpus/datastream (simple streaming API)
  * easy to extend with other Vector Space algorithms (simple transformation API)

* Efficient multicore implementations of popular algorithms, such as online **Latent Semantic Analysis (LSA/LSI/SVD)**,
  **Latent Dirichlet Allocation (LDA)**, **Random Projections (RP)**, **Hierarchical Dirichlet Process (HDP)** or **word2vec deep learning**.
* **Distributed computing**: can run *Latent Semantic Analysis* and *Latent Dirichlet Allocation* on a cluster of computers.
* Extensive `documentation and Jupyter Notebook tutorials <https://github.com/RaRe-Technologies/gensim/#documentation>`_.


If this feature list left you scratching your head, you can first read more about the `Vector
Space Model <https://en.wikipedia.org/wiki/Vector_space_model>`_ and `unsupervised
document analysis <https://en.wikipedia.org/wiki/Latent_semantic_indexing>`_ on Wikipedia.

Installation
------------

This software depends on `NumPy and Scipy <https://scipy.org/install/>`_, two Python packages for scientific computing.
You must have them installed prior to installing `gensim`.

It is also recommended you install a fast BLAS library before installing NumPy. This is optional, but using an optimized BLAS such as MKL, `ATLAS <https://math-atlas.sourceforge.net/>`_ or `OpenBLAS <https://xianyi.github.io/OpenBLAS/>`_ is known to improve performance by as much as an order of magnitude. On OSX, NumPy picks up its vecLib BLAS automatically, so you don't need to do anything special.

Install the latest version of gensim::

    pip install --upgrade gensim

Or, if you have instead downloaded and unzipped the `source tar.gz <https://pypi.org/project/gensim/>`_ package::

    python setup.py install


For alternative modes of installation, see the `documentation <https://radimrehurek.com/gensim/#install>`_.

Gensim is being `continuously tested <https://radimrehurek.com/gensim/#testing>`_ under all `supported Python versions <https://github.com/RaRe-Technologies/gensim/wiki/Gensim-And-Compatibility>`_.
Support for Python 2.7 was dropped in gensim 4.0.0 – install gensim 3.8.3 if you must use Python 2.7.


How come gensim is so fast and memory efficient? Isn't it pure Python, and isn't Python slow and greedy?
--------------------------------------------------------------------------------------------------------

Many scientific algorithms can be expressed in terms of large matrix operations (see the BLAS note above). Gensim taps into these low-level BLAS libraries, by means of its dependency on NumPy. So while gensim-the-top-level-code is pure Python, it actually executes highly optimized Fortran/C under the hood, including multithreading (if your BLAS is so configured).

Memory-wise, gensim makes heavy use of Python's built-in generators and iterators for streamed data processing. Memory efficiency was one of gensim's `design goals <https://radimrehurek.com/gensim/intro.html#design-principles>`_, and is a central feature of gensim, rather than something bolted on as an afterthought.

Documentation
-------------
* `QuickStart`_
* `Tutorials`_
* `Tutorial Videos`_
* `Official Documentation and Walkthrough`_

Citing gensim
-------------

When `citing gensim in academic papers and theses <https://scholar.google.cz/citations?view_op=view_citation&hl=en&user=9vG_kV0AAAAJ&citation_for_view=9vG_kV0AAAAJ:u-x6o8ySG0sC>`_, please use this BibTeX entry::

  @inproceedings{rehurek_lrec,
        title = {{Software Framework for Topic Modelling with Large Corpora}},
        author = {Radim {\v R}eh{\r u}{\v r}ek and Petr Sojka},
        booktitle = {{Proceedings of the LREC 2010 Workshop on New
             Challenges for NLP Frameworks}},
        pages = {45--50},
        year = 2010,
        month = May,
        day = 22,
        publisher = {ELRA},
        address = {Valletta, Malta},
        language={English}
  }

----------------

Gensim is open source software released under the `GNU LGPLv2.1 license <https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html>`_.
Copyright (c) 2009-now Radim Rehurek

|Analytics|_

.. |Analytics| image:: https://ga-beacon.appspot.com/UA-24066335-5/your-repo/page-name
.. _Analytics: https://github.com/igrigorik/ga-beacon
.. _Official Documentation and Walkthrough: https://radimrehurek.com/gensim/
.. _Tutorials: https://github.com/RaRe-Technologies/gensim/blob/develop/tutorials.md#tutorials
.. _Tutorial Videos: https://github.com/RaRe-Technologies/gensim/blob/develop/tutorials.md#videos
.. _QuickStart: https://radimrehurek.com/gensim/gensim_numfocus/auto_examples/core/run_core_concepts.html


            

Raw data

            {
    "_id": null,
    "home_page": "https://radimrehurek.com/gensim/",
    "name": "gensim",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/gensim/",
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Singular Value Decomposition,SVD,Latent Semantic Indexing,LSA,LSI,Latent Dirichlet Allocation,LDA,Hierarchical Dirichlet Process,HDP,Random Projections,TFIDF,word2vec",
    "author": "Radim Rehurek",
    "author_email": "me@radimrehurek.com",
    "download_url": "https://files.pythonhosted.org/packages/77/68/074333a52f6fa82402332054ca0dfa721f7dcfa7eace313f64cdb44bacde/gensim-4.3.2.tar.gz",
    "platform": "any",
    "description": "\n==============================================\ngensim -- Topic Modelling in Python\n==============================================\n\n|GA|_\n|Wheel|_\n\n.. |GA| image:: https://github.com/RaRe-Technologies/gensim/actions/workflows/tests.yml/badge.svg?branch=develop\n.. |Wheel| image:: https://img.shields.io/pypi/wheel/gensim.svg\n\n.. _GA: https://github.com/RaRe-Technologies/gensim/actions\n.. _Downloads: https://pypi.org/project/gensim/\n.. _License: https://radimrehurek.com/gensim/intro.html#licensing\n.. _Wheel: https://pypi.org/project/gensim/\n\nGensim is a Python library for *topic modelling*, *document indexing* and *similarity retrieval* with large corpora.\nTarget audience is the *natural language processing* (NLP) and *information retrieval* (IR) community.\n\nFeatures\n---------\n\n* All algorithms are **memory-independent** w.r.t. the corpus size (can process input larger than RAM, streamed, out-of-core)\n* **Intuitive interfaces**\n\n  * easy to plug in your own input corpus/datastream (simple streaming API)\n  * easy to extend with other Vector Space algorithms (simple transformation API)\n\n* Efficient multicore implementations of popular algorithms, such as online **Latent Semantic Analysis (LSA/LSI/SVD)**,\n  **Latent Dirichlet Allocation (LDA)**, **Random Projections (RP)**, **Hierarchical Dirichlet Process (HDP)** or **word2vec deep learning**.\n* **Distributed computing**: can run *Latent Semantic Analysis* and *Latent Dirichlet Allocation* on a cluster of computers.\n* Extensive `documentation and Jupyter Notebook tutorials <https://github.com/RaRe-Technologies/gensim/#documentation>`_.\n\n\nIf this feature list left you scratching your head, you can first read more about the `Vector\nSpace Model <https://en.wikipedia.org/wiki/Vector_space_model>`_ and `unsupervised\ndocument analysis <https://en.wikipedia.org/wiki/Latent_semantic_indexing>`_ on Wikipedia.\n\nInstallation\n------------\n\nThis software depends on `NumPy and Scipy <https://scipy.org/install/>`_, two Python packages for scientific computing.\nYou must have them installed prior to installing `gensim`.\n\nIt is also recommended you install a fast BLAS library before installing NumPy. This is optional, but using an optimized BLAS such as MKL, `ATLAS <https://math-atlas.sourceforge.net/>`_ or `OpenBLAS <https://xianyi.github.io/OpenBLAS/>`_ is known to improve performance by as much as an order of magnitude. On OSX, NumPy picks up its vecLib BLAS automatically, so you don't need to do anything special.\n\nInstall the latest version of gensim::\n\n    pip install --upgrade gensim\n\nOr, if you have instead downloaded and unzipped the `source tar.gz <https://pypi.org/project/gensim/>`_ package::\n\n    python setup.py install\n\n\nFor alternative modes of installation, see the `documentation <https://radimrehurek.com/gensim/#install>`_.\n\nGensim is being `continuously tested <https://radimrehurek.com/gensim/#testing>`_ under all `supported Python versions <https://github.com/RaRe-Technologies/gensim/wiki/Gensim-And-Compatibility>`_.\nSupport for Python 2.7 was dropped in gensim 4.0.0 \u2013 install gensim 3.8.3 if you must use Python 2.7.\n\n\nHow come gensim is so fast and memory efficient? Isn't it pure Python, and isn't Python slow and greedy?\n--------------------------------------------------------------------------------------------------------\n\nMany scientific algorithms can be expressed in terms of large matrix operations (see the BLAS note above). Gensim taps into these low-level BLAS libraries, by means of its dependency on NumPy. So while gensim-the-top-level-code is pure Python, it actually executes highly optimized Fortran/C under the hood, including multithreading (if your BLAS is so configured).\n\nMemory-wise, gensim makes heavy use of Python's built-in generators and iterators for streamed data processing. Memory efficiency was one of gensim's `design goals <https://radimrehurek.com/gensim/intro.html#design-principles>`_, and is a central feature of gensim, rather than something bolted on as an afterthought.\n\nDocumentation\n-------------\n* `QuickStart`_\n* `Tutorials`_\n* `Tutorial Videos`_\n* `Official Documentation and Walkthrough`_\n\nCiting gensim\n-------------\n\nWhen `citing gensim in academic papers and theses <https://scholar.google.cz/citations?view_op=view_citation&hl=en&user=9vG_kV0AAAAJ&citation_for_view=9vG_kV0AAAAJ:u-x6o8ySG0sC>`_, please use this BibTeX entry::\n\n  @inproceedings{rehurek_lrec,\n        title = {{Software Framework for Topic Modelling with Large Corpora}},\n        author = {Radim {\\v R}eh{\\r u}{\\v r}ek and Petr Sojka},\n        booktitle = {{Proceedings of the LREC 2010 Workshop on New\n             Challenges for NLP Frameworks}},\n        pages = {45--50},\n        year = 2010,\n        month = May,\n        day = 22,\n        publisher = {ELRA},\n        address = {Valletta, Malta},\n        language={English}\n  }\n\n----------------\n\nGensim is open source software released under the `GNU LGPLv2.1 license <https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html>`_.\nCopyright (c) 2009-now Radim Rehurek\n\n|Analytics|_\n\n.. |Analytics| image:: https://ga-beacon.appspot.com/UA-24066335-5/your-repo/page-name\n.. _Analytics: https://github.com/igrigorik/ga-beacon\n.. _Official Documentation and Walkthrough: https://radimrehurek.com/gensim/\n.. _Tutorials: https://github.com/RaRe-Technologies/gensim/blob/develop/tutorials.md#tutorials\n.. _Tutorial Videos: https://github.com/RaRe-Technologies/gensim/blob/develop/tutorials.md#videos\n.. _QuickStart: https://radimrehurek.com/gensim/gensim_numfocus/auto_examples/core/run_core_concepts.html\n\n",
    "bugtrack_url": null,
    "license": "LGPL-2.1-only",
    "summary": "Python framework for fast Vector Space Modelling",
    "version": "4.3.2",
    "project_urls": {
        "Download": "https://pypi.org/project/gensim/",
        "Homepage": "https://radimrehurek.com/gensim/",
        "Source": "https://github.com/RaRe-Technologies/gensim"
    },
    "split_keywords": [
        "singular value decomposition",
        "svd",
        "latent semantic indexing",
        "lsa",
        "lsi",
        "latent dirichlet allocation",
        "lda",
        "hierarchical dirichlet process",
        "hdp",
        "random projections",
        "tfidf",
        "word2vec"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "432121f993356303c4c92352d9e7c732f715e86e7b0bc04674be71bb1e9bb05b",
                "md5": "5c94cd6fb63c36d7d5178249eec494cd",
                "sha256": "31b3cb313939b6940ee21660177f6405e71b920da462dbf065b2458a24ab33e1"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c94cd6fb63c36d7d5178249eec494cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 24084903,
            "upload_time": "2023-08-24T08:48:21",
            "upload_time_iso_8601": "2023-08-24T08:48:21.200250Z",
            "url": "https://files.pythonhosted.org/packages/43/21/21f993356303c4c92352d9e7c732f715e86e7b0bc04674be71bb1e9bb05b/gensim-4.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d784ec2f74713475b57b7d882f5160b0b7c9df40ecc409d793e87656a6f3ada0",
                "md5": "d58318a6b1baee3879226cf475c468a2",
                "sha256": "67c41b15e19e4950f57124f633c45839b5c84268ffa58079c5b0c0f04d2a9cb9"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d58318a6b1baee3879226cf475c468a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 24035874,
            "upload_time": "2023-08-24T08:48:29",
            "upload_time_iso_8601": "2023-08-24T08:48:29.699130Z",
            "url": "https://files.pythonhosted.org/packages/d7/84/ec2f74713475b57b7d882f5160b0b7c9df40ecc409d793e87656a6f3ada0/gensim-4.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5984ed371ab548a02e16f83669dee5337ad3917d3bf980878608956817e0534b",
                "md5": "47abb0993815c91e236d5fbc7d01fbb3",
                "sha256": "a9bf1a8ee2e8214499c517008a0fd175ce5c649954a88569358cfae6bfca42dc"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47abb0993815c91e236d5fbc7d01fbb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 26398052,
            "upload_time": "2023-08-24T08:48:38",
            "upload_time_iso_8601": "2023-08-24T08:48:38.961793Z",
            "url": "https://files.pythonhosted.org/packages/59/84/ed371ab548a02e16f83669dee5337ad3917d3bf980878608956817e0534b/gensim-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8d9104988573fd2c1acdc64e66883b35fb8ae559310d2d9f77db78bf7de9add",
                "md5": "909bacab79f626aa748b47f4595e523a",
                "sha256": "5e34ee6f8a318fbf0b65e6d39a985ecf9e9051febfd1221ae6255fff1972c547"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "909bacab79f626aa748b47f4595e523a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 26506991,
            "upload_time": "2023-08-24T08:48:48",
            "upload_time_iso_8601": "2023-08-24T08:48:48.227645Z",
            "url": "https://files.pythonhosted.org/packages/e8/d9/104988573fd2c1acdc64e66883b35fb8ae559310d2d9f77db78bf7de9add/gensim-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abb0d58dc405fd60ab546ca714321235dc2d455b2dc06bfb4fc1092940c749fc",
                "md5": "dc2005a9ed07db113a273801b31380e0",
                "sha256": "c46b7395dc57c83329932f3febed9660891fdcc75327d56f55000e3e08898983"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc2005a9ed07db113a273801b31380e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 24012956,
            "upload_time": "2023-08-24T08:48:55",
            "upload_time_iso_8601": "2023-08-24T08:48:55.178559Z",
            "url": "https://files.pythonhosted.org/packages/ab/b0/d58dc405fd60ab546ca714321235dc2d455b2dc06bfb4fc1092940c749fc/gensim-4.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99f58d2cb0b2628bb6482baafbf0ff7262c11fc46e98b23ee79234828b927e8d",
                "md5": "3f6287458253970495b4e12db29ad975",
                "sha256": "a919493339cfad39d5e76768c1bc546cd507f715c5fca93165cc174a97657457"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f6287458253970495b4e12db29ad975",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 24078719,
            "upload_time": "2023-08-24T08:49:02",
            "upload_time_iso_8601": "2023-08-24T08:49:02.560109Z",
            "url": "https://files.pythonhosted.org/packages/99/f5/8d2cb0b2628bb6482baafbf0ff7262c11fc46e98b23ee79234828b927e8d/gensim-4.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63465feab9c524a380bfa9f9f1c0d065743280dca30b216ab4c7a231f22dbed7",
                "md5": "02a7e3140eb190ee7c47b34ee5ea396e",
                "sha256": "8dcd1419266bd563c371d25530f4dce3505fe78059b2c0c08724e4f9e5479b38"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "02a7e3140eb190ee7c47b34ee5ea396e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 24030236,
            "upload_time": "2023-08-24T08:49:11",
            "upload_time_iso_8601": "2023-08-24T08:49:11.574853Z",
            "url": "https://files.pythonhosted.org/packages/63/46/5feab9c524a380bfa9f9f1c0d065743280dca30b216ab4c7a231f22dbed7/gensim-4.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1434f1e056feda95330f7d8beef6771e3441ce0e8e2d1f55bf754b0b0594b234",
                "md5": "fabf0319117fd28954036baf307f5693",
                "sha256": "e3e8035ac3f54dca3a8ca56bec526ddfe5b23006e0134b7375ca5f5dbfaef70a"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fabf0319117fd28954036baf307f5693",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 26558413,
            "upload_time": "2023-08-24T08:49:21",
            "upload_time_iso_8601": "2023-08-24T08:49:21.748986Z",
            "url": "https://files.pythonhosted.org/packages/14/34/f1e056feda95330f7d8beef6771e3441ce0e8e2d1f55bf754b0b0594b234/gensim-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22407d2cce3ad4ad5d02aa68e253e6ea5f0acc381f02f594e235fe00a274faff",
                "md5": "69045defa3e8eb592ef1e41d0c0e0f40",
                "sha256": "8c3b537c1fd4699c8e6d59c3ffa2fdd9918cd4e5555bf5ee7c1fbedd89b2d643"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69045defa3e8eb592ef1e41d0c0e0f40",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 26662667,
            "upload_time": "2023-08-24T08:49:30",
            "upload_time_iso_8601": "2023-08-24T08:49:30.448833Z",
            "url": "https://files.pythonhosted.org/packages/22/40/7d2cce3ad4ad5d02aa68e253e6ea5f0acc381f02f594e235fe00a274faff/gensim-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad97b8253236dfedb9094f4273393a3fd03997da81f27f15822e56128da894ae",
                "md5": "0e5815d967b71e027d938a0a679dc974",
                "sha256": "5a52001226f9e89f7833503f99c9b4fd028fdf837002f24cdc1bc3cf901a4003"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e5815d967b71e027d938a0a679dc974",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 24010152,
            "upload_time": "2023-08-24T08:49:45",
            "upload_time_iso_8601": "2023-08-24T08:49:45.111307Z",
            "url": "https://files.pythonhosted.org/packages/ad/97/b8253236dfedb9094f4273393a3fd03997da81f27f15822e56128da894ae/gensim-4.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ca72dd786427bedd2c3dc6c74b70e1e53c6c180a7da0a686c61c2ab17f6fc63",
                "md5": "4d4929ae9ce3f39cbca4f4703aa301f4",
                "sha256": "e8d62604efb8281a25254e5a6c14227034c267ed56635e590c9cae2635196dca"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d4929ae9ce3f39cbca4f4703aa301f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 24081243,
            "upload_time": "2023-08-24T08:49:52",
            "upload_time_iso_8601": "2023-08-24T08:49:52.952181Z",
            "url": "https://files.pythonhosted.org/packages/0c/a7/2dd786427bedd2c3dc6c74b70e1e53c6c180a7da0a686c61c2ab17f6fc63/gensim-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37169266c7e205d344cd6bea5074ed769e878c9b3919ab4e1e6adf0ad6370eb8",
                "md5": "ef973dcb56851064c23d38876949df4c",
                "sha256": "bf7a9dc37c2ca465c7834863a7b264369c1373bb474135df225cee654b8adfab"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef973dcb56851064c23d38876949df4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 24032775,
            "upload_time": "2023-08-24T08:50:00",
            "upload_time_iso_8601": "2023-08-24T08:50:00.531462Z",
            "url": "https://files.pythonhosted.org/packages/37/16/9266c7e205d344cd6bea5074ed769e878c9b3919ab4e1e6adf0ad6370eb8/gensim-4.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be452ed230b4ef8767c5ccc1fdcc5132d536d7188a2552d37f059bff3dcd4776",
                "md5": "d839fc94611d56262714ffcb09740655",
                "sha256": "6a33ff0d4cf3e50e7ddd7353fb38ed2d4af2e48a6ef58d622809862c30c8b8a2"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d839fc94611d56262714ffcb09740655",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 26471302,
            "upload_time": "2023-08-24T08:50:08",
            "upload_time_iso_8601": "2023-08-24T08:50:08.879046Z",
            "url": "https://files.pythonhosted.org/packages/be/45/2ed230b4ef8767c5ccc1fdcc5132d536d7188a2552d37f059bff3dcd4776/gensim-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3e217bad124c8dd2aa0a3062e44992eb34c282379450ebbe6fdb6b96aa3c907",
                "md5": "d3990b5efbd650c9a44c3cc698ab9da0",
                "sha256": "99876be00b73c7cef01f427d241b07eb1c1b298fb411580cc1067d22c43a13be"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3990b5efbd650c9a44c3cc698ab9da0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 26570730,
            "upload_time": "2023-08-24T08:50:25",
            "upload_time_iso_8601": "2023-08-24T08:50:25.888007Z",
            "url": "https://files.pythonhosted.org/packages/d3/e2/17bad124c8dd2aa0a3062e44992eb34c282379450ebbe6fdb6b96aa3c907/gensim-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb7fba98a65efea29a7d8bf25ade2db67e34ebab8e63769e8927d0a4d42a84f",
                "md5": "0ec9e4c0fa1b386116a7759b76a1e665",
                "sha256": "f785b3caf376a1f2989e0f3c890642e5b1566393fd3831dab03fc6670d672814"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0ec9e4c0fa1b386116a7759b76a1e665",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 24020896,
            "upload_time": "2023-08-24T08:50:34",
            "upload_time_iso_8601": "2023-08-24T08:50:34.471463Z",
            "url": "https://files.pythonhosted.org/packages/3e/b7/fba98a65efea29a7d8bf25ade2db67e34ebab8e63769e8927d0a4d42a84f/gensim-4.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04590a073bcf0873f64f3c6e82a11c8fa90cd5564cb3e21dc6077bc7b3feb644",
                "md5": "4b5d03630674dd92df0ed3fb9f21cff1",
                "sha256": "c86915cf0e0b86658a40a070bd7e04db0814065963657e92910303070275865d"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b5d03630674dd92df0ed3fb9f21cff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 24088600,
            "upload_time": "2023-08-24T08:50:43",
            "upload_time_iso_8601": "2023-08-24T08:50:43.951519Z",
            "url": "https://files.pythonhosted.org/packages/04/59/0a073bcf0873f64f3c6e82a11c8fa90cd5564cb3e21dc6077bc7b3feb644/gensim-4.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbaf18b551ae8d26b8731dbe5923565fdf96502bb9aca88a37f241d510c62dc2",
                "md5": "d3318a5415c01d001992dca8b743cdc4",
                "sha256": "548c7bf983e619d6b8d78b6a5321dcbcba5b39f68779a0d36e38a5a971416276"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d3318a5415c01d001992dca8b743cdc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 24038105,
            "upload_time": "2023-08-24T08:50:52",
            "upload_time_iso_8601": "2023-08-24T08:50:52.406168Z",
            "url": "https://files.pythonhosted.org/packages/db/af/18b551ae8d26b8731dbe5923565fdf96502bb9aca88a37f241d510c62dc2/gensim-4.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34a934fa729b0700361d35a3640b95395ead6c101ec290c0fe6c53d473c03ccc",
                "md5": "aff89d52f2d452df894e5dc8d8ce5386",
                "sha256": "226690ea081b92a2289661a25e8a89069ae09b1ed4137b67a0d6ec211e0371d3"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aff89d52f2d452df894e5dc8d8ce5386",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 26453791,
            "upload_time": "2023-08-24T08:51:02",
            "upload_time_iso_8601": "2023-08-24T08:51:02.911503Z",
            "url": "https://files.pythonhosted.org/packages/34/a9/34fa729b0700361d35a3640b95395ead6c101ec290c0fe6c53d473c03ccc/gensim-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7befd559c7daebb2f00b881575551b23866ebcbf6eeaf33393d692c7f46d0983",
                "md5": "61b5ec62663eda767094527d26d958a2",
                "sha256": "4715eafcd309c2f7e030829eddba72fe47bbe9bb466811fce3158127d29c8979"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61b5ec62663eda767094527d26d958a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 26552639,
            "upload_time": "2023-08-24T08:51:11",
            "upload_time_iso_8601": "2023-08-24T08:51:11.634789Z",
            "url": "https://files.pythonhosted.org/packages/7b/ef/d559c7daebb2f00b881575551b23866ebcbf6eeaf33393d692c7f46d0983/gensim-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d368373da90a8b241e2603707c7aa4c8f47829a72729c6e9497f2bc604fa6a6a",
                "md5": "befd99194f04d2d63e958f4e4a08468f",
                "sha256": "b3f26299ac241ff54329a54c37c22eac1bf4c4a337068adf2637259ee0d8484a"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "befd99194f04d2d63e958f4e4a08468f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 24021169,
            "upload_time": "2023-08-24T08:51:18",
            "upload_time_iso_8601": "2023-08-24T08:51:18.831995Z",
            "url": "https://files.pythonhosted.org/packages/d3/68/373da90a8b241e2603707c7aa4c8f47829a72729c6e9497f2bc604fa6a6a/gensim-4.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7768074333a52f6fa82402332054ca0dfa721f7dcfa7eace313f64cdb44bacde",
                "md5": "d0f9e2d9db9e4a5316eb5e5b08169b03",
                "sha256": "99ac6af6ffd40682e70155ed9f92ecbf4384d59fb50af120d343ea5ee1b308ab"
            },
            "downloads": -1,
            "filename": "gensim-4.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d0f9e2d9db9e4a5316eb5e5b08169b03",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 23263982,
            "upload_time": "2023-08-24T08:51:27",
            "upload_time_iso_8601": "2023-08-24T08:51:27.492828Z",
            "url": "https://files.pythonhosted.org/packages/77/68/074333a52f6fa82402332054ca0dfa721f7dcfa7eace313f64cdb44bacde/gensim-4.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-24 08:51:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "RaRe-Technologies",
    "github_project": "gensim",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gensim"
}
        
Elapsed time: 0.10830s