fastcluster


Namefastcluster JSON
Version 1.2.6 PyPI version JSON
download
home_pagehttp://danifold.net
SummaryFast hierarchical clustering routines for R and Python.
upload_time2022-02-27 10:51:36
maintainer
docs_urlNone
authorDaniel Müllner
requires_python>=3
licenseBSD <http://opensource.org/licenses/BSD-2-Clause>
keywords dendrogram linkage cluster agglomerative hierarchical hierarchy ward
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
This library provides Python functions for hierarchical clustering. It
generates hierarchical clusters from distance matrices or from vector data.

This module is intended to replace the functions
```
    linkage, single, complete, average, weighted, centroid, median, ward
```
in the module [`scipy.cluster.hierarchy`](
https://docs.scipy.org/doc/scipy/reference/cluster.hierarchy.html) with the same
functionality but much faster algorithms. Moreover, the function
`linkage_vector` provides memory-efficient clustering for vector data.

The interface is very similar to MATLAB's Statistics Toolbox API to make code
easier to port from MATLAB to Python/NumPy. The core implementation of this
library is in C++ for efficiency.

**User manual:** [fastcluster.pdf](
https://github.com/dmuellner/fastcluster/raw/master/docs/fastcluster.pdf).

The “Yule” distance function changed in fastcluster version 1.2.0. This is
following a [change in SciPy 1.6.3](
https://github.com/scipy/scipy/commit/3b22d1da98dc1b5f64bc944c21f398d4ba782bce).
It is recommended to use fastcluster version 1.1.x together with SciPy versions
before 1.6.3 and fastcluster 1.2.x with SciPy ≥1.6.3.

The fastcluster package is considered stable and will undergo few changes
from now on. If some years from now there have not been any updates, this does
not necessarily mean that the package is unmaintained but maybe it just was
not necessary to correct anything. Of course, please still report potential
bugs and incompatibilities to daniel@danifold.net. You may also use
[my GitHub repository](https://github.com/dmuellner/fastcluster/)
for bug reports, pull requests etc.

Note that [PyPI](https://pypi.org/project/fastcluster/) and [my GitHub
repository](https://github.com/dmuellner/fastcluster/) host the source code
for the Python interface only. The archive with both the R and the Python
interface is available on
[CRAN](https://CRAN.R-project.org/package=fastcluster) and the GitHub repository
[“cran/fastcluster”](https://github.com/cran/fastcluster). Even though I appear
as the author also of this second GitHub repository, this is just an automatic,
read-only mirror of the CRAN archive, so please do not attempt to report bugs or
contact me via this repository.

Installation files for Windows are provided on [PyPI](
https://pypi.org/project/fastcluster/#files) and on [Christoph Gohlke's web
page](http://www.lfd.uci.edu/~gohlke/pythonlibs/#fastcluster).

Christoph Dalitz wrote a pure [C++ interface to fastcluster](
https://lionel.kr.hs-niederrhein.de/~dalitz/data/hclust/).

Reference: Daniel Müllner, *fastcluster: Fast Hierarchical, Agglomerative
Clustering Routines for R and Python*, Journal of Statistical Software, **53**
(2013), no. 9, 1–18, https://doi.org/10.18637/jss.v053.i09.



            

Raw data

            {
    "_id": null,
    "home_page": "http://danifold.net",
    "name": "fastcluster",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "dendrogram,linkage,cluster,agglomerative,hierarchical,hierarchy,ward",
    "author": "Daniel M\u00fcllner",
    "author_email": "daniel@danifold.net",
    "download_url": "https://files.pythonhosted.org/packages/5d/b8/f143d907d93bd4a3dd51d07c4e79b37bedbfc2177f4949bfa0d6ba0af647/fastcluster-1.2.6.tar.gz",
    "platform": "",
    "description": "\nThis library provides Python functions for hierarchical clustering. It\ngenerates hierarchical clusters from distance matrices or from vector data.\n\nThis module is intended to replace the functions\n```\n    linkage, single, complete, average, weighted, centroid, median, ward\n```\nin the module [`scipy.cluster.hierarchy`](\nhttps://docs.scipy.org/doc/scipy/reference/cluster.hierarchy.html) with the same\nfunctionality but much faster algorithms. Moreover, the function\n`linkage_vector` provides memory-efficient clustering for vector data.\n\nThe interface is very similar to MATLAB's Statistics Toolbox API to make code\neasier to port from MATLAB to Python/NumPy. The core implementation of this\nlibrary is in C++ for efficiency.\n\n**User manual:** [fastcluster.pdf](\nhttps://github.com/dmuellner/fastcluster/raw/master/docs/fastcluster.pdf).\n\nThe \u201cYule\u201d distance function changed in fastcluster version 1.2.0. This is\nfollowing a [change in SciPy 1.6.3](\nhttps://github.com/scipy/scipy/commit/3b22d1da98dc1b5f64bc944c21f398d4ba782bce).\nIt is recommended to use fastcluster version 1.1.x together with SciPy versions\nbefore 1.6.3 and fastcluster 1.2.x with SciPy \u22651.6.3.\n\nThe fastcluster package is considered stable and will undergo few changes\nfrom now on. If some years from now there have not been any updates, this does\nnot necessarily mean that the package is unmaintained but maybe it just was\nnot necessary to correct anything. Of course, please still report potential\nbugs and incompatibilities to daniel@danifold.net. You may also use\n[my GitHub repository](https://github.com/dmuellner/fastcluster/)\nfor bug reports, pull requests etc.\n\nNote that [PyPI](https://pypi.org/project/fastcluster/) and [my GitHub\nrepository](https://github.com/dmuellner/fastcluster/) host the source code\nfor the Python interface only. The archive with both the R and the Python\ninterface is available on\n[CRAN](https://CRAN.R-project.org/package=fastcluster) and the GitHub repository\n[\u201ccran/fastcluster\u201d](https://github.com/cran/fastcluster). Even though I appear\nas the author also of this second GitHub repository, this is just an automatic,\nread-only mirror of the CRAN archive, so please do not attempt to report bugs or\ncontact me via this repository.\n\nInstallation files for Windows are provided on [PyPI](\nhttps://pypi.org/project/fastcluster/#files) and on [Christoph Gohlke's web\npage](http://www.lfd.uci.edu/~gohlke/pythonlibs/#fastcluster).\n\nChristoph Dalitz wrote a pure [C++ interface to fastcluster](\nhttps://lionel.kr.hs-niederrhein.de/~dalitz/data/hclust/).\n\nReference: Daniel M\u00fcllner, *fastcluster: Fast Hierarchical, Agglomerative\nClustering Routines for R and Python*, Journal of Statistical Software, **53**\n(2013), no. 9, 1\u201318, https://doi.org/10.18637/jss.v053.i09.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD <http://opensource.org/licenses/BSD-2-Clause>",
    "summary": "Fast hierarchical clustering routines for R and Python.",
    "version": "1.2.6",
    "split_keywords": [
        "dendrogram",
        "linkage",
        "cluster",
        "agglomerative",
        "hierarchical",
        "hierarchy",
        "ward"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "fe6b5ad7cbf0937180a9be8c7f40f785",
                "sha256": "d0e8faef0437a25fd083df70fb86cc65ce3c9c9780d4ae377cbe6521e7746ce0"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fe6b5ad7cbf0937180a9be8c7f40f785",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 67631,
            "upload_time": "2022-02-27T10:50:53",
            "upload_time_iso_8601": "2022-02-27T10:50:53.441697Z",
            "url": "https://files.pythonhosted.org/packages/b1/ec/7b1632cdebb48118a3c90bec2e180542718aab251f5fb6c48e639a45e12c/fastcluster-1.2.6-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9c951c26e167f1dbff1859dd0d8454c8",
                "sha256": "c8be01f97bc2bf11a9188537864f8e520e1103cdc6007aa2c5d7979b1363b121"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c951c26e167f1dbff1859dd0d8454c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 40128,
            "upload_time": "2022-02-27T10:50:55",
            "upload_time_iso_8601": "2022-02-27T10:50:55.049450Z",
            "url": "https://files.pythonhosted.org/packages/6a/63/4b415e0f176ff01b9435a86dfd8a057133c2a7a4f35d63d358c3430f342b/fastcluster-1.2.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ba95df0502f95541daabc2f70cfa481f",
                "sha256": "855ab2b7e6fa9b05f19c4f3023dedfb1a35a88d831933d65d0d9e10a070a9e85"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba95df0502f95541daabc2f70cfa481f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 37568,
            "upload_time": "2022-02-27T10:50:56",
            "upload_time_iso_8601": "2022-02-27T10:50:56.232032Z",
            "url": "https://files.pythonhosted.org/packages/95/2a/f1c116cdd302f9df7d39a5ca0aa353cc19b7344b3b0e044e68219aff60b0/fastcluster-1.2.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9daac33b7e627278b16e94a1d07f816c",
                "sha256": "72503e727887a61a15f9aaa13178798d3994dfec58aa7a943e42dcfda07c0149"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9daac33b7e627278b16e94a1d07f816c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 184415,
            "upload_time": "2022-02-27T10:50:57",
            "upload_time_iso_8601": "2022-02-27T10:50:57.315493Z",
            "url": "https://files.pythonhosted.org/packages/be/88/ee6041c7a8380c70d4a2fe9f9c2787fe042ece85352d683aaffe476706e4/fastcluster-1.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "849284b1dedd1259cff2184f7365ba43",
                "sha256": "2fcb0973ca0e6978e3242046338c350cbed1493108929231fae9bd35ad05a6d6"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "849284b1dedd1259cff2184f7365ba43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 189769,
            "upload_time": "2022-02-27T10:50:58",
            "upload_time_iso_8601": "2022-02-27T10:50:58.602664Z",
            "url": "https://files.pythonhosted.org/packages/fa/4c/b72c421b4c2962f2f8a794be40349cd8706e9ede6c3c742bce0ea158d6dd/fastcluster-1.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "69f7a7b5eacd9a4c4befc0d7faaa17c8",
                "sha256": "9020899b67fe492d0ed87a3e993ec9962c5a0b51ea2df71d86b1766f065f1cef"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69f7a7b5eacd9a4c4befc0d7faaa17c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 194022,
            "upload_time": "2022-02-27T10:50:59",
            "upload_time_iso_8601": "2022-02-27T10:50:59.900655Z",
            "url": "https://files.pythonhosted.org/packages/6f/e6/610c672d6d893a0822aa6c45d47ceae8f3eb7fcbe47907037dcb1a07a769/fastcluster-1.2.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "61094897770f44f2eb614af9b6cc8c3d",
                "sha256": "6cf156d4203708348522393c523c2e61c81f5a6a500e0411dcba2b064551ea2f"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "61094897770f44f2eb614af9b6cc8c3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 33221,
            "upload_time": "2022-02-27T10:51:01",
            "upload_time_iso_8601": "2022-02-27T10:51:01.130090Z",
            "url": "https://files.pythonhosted.org/packages/e5/b1/8be97880ef43606afffc779a00741fd21dee958a2764dc1e821a483f45b6/fastcluster-1.2.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ee236395bc4ae12ad790306658be6466",
                "sha256": "1801c9daa9aa5bbbb0830efe8bd3034b4b7a417e4b8dd353683999be29797df2"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee236395bc4ae12ad790306658be6466",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3",
            "size": 36407,
            "upload_time": "2022-02-27T10:51:02",
            "upload_time_iso_8601": "2022-02-27T10:51:02.364324Z",
            "url": "https://files.pythonhosted.org/packages/84/ea/a3639f8aa11e66968ff01c8c7631cd8f15261b33e6f134eaca4f50784eeb/fastcluster-1.2.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "54343f41fe9b64d7fd37d152cf6d572b",
                "sha256": "cf5acfe1156849279ebd44a8d1fbcbe8b8e21334f7538eda782ae31e7dade9e2"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54343f41fe9b64d7fd37d152cf6d572b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 40061,
            "upload_time": "2022-02-27T10:51:03",
            "upload_time_iso_8601": "2022-02-27T10:51:03.570649Z",
            "url": "https://files.pythonhosted.org/packages/7e/96/b97adb20cfdf6ee5649b62c59ded3f5467f8cd88a4084f72bf1697b1180e/fastcluster-1.2.6-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "92f478f5ab64e3d5b36c9284e74fcdaa",
                "sha256": "cb27c13225f5f77f3c5986a27ca27277cce7db12844330cf535019cd38021257"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92f478f5ab64e3d5b36c9284e74fcdaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 183531,
            "upload_time": "2022-02-27T10:51:04",
            "upload_time_iso_8601": "2022-02-27T10:51:04.900218Z",
            "url": "https://files.pythonhosted.org/packages/5f/f8/28d952013f3142d9b17e35f8c8dabe50b49c95513757c2afe6c75580a958/fastcluster-1.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "69c16580abd78491a77aba15e80d7eb8",
                "sha256": "5fe543b6d45da27e84e5af6248722475b88943d8ef40d835cbabbb0ba5ee786b"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69c16580abd78491a77aba15e80d7eb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 188970,
            "upload_time": "2022-02-27T10:51:06",
            "upload_time_iso_8601": "2022-02-27T10:51:06.013733Z",
            "url": "https://files.pythonhosted.org/packages/bb/e5/7a2ae5a587d9bb709eb58498695f16caa61c989fa13b3d9d2dd1bce83668/fastcluster-1.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d306f92567f4fdbc5f235cf850a04876",
                "sha256": "c12224da0b1f2f9d2b3d715dc82ecb1a3a33b990606f97da075cc46bc6d9576f"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d306f92567f4fdbc5f235cf850a04876",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 193096,
            "upload_time": "2022-02-27T10:51:07",
            "upload_time_iso_8601": "2022-02-27T10:51:07.359545Z",
            "url": "https://files.pythonhosted.org/packages/17/a3/dc6a5d830204c94707bcd909af711ac6376158430de8536b6b5b530ba1c6/fastcluster-1.2.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "972d3fd203f128278fa745cc3dfd5d68",
                "sha256": "86a1ad972e83ba48144884fa849f87626346308b650002157123aee67d3b16fe"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "972d3fd203f128278fa745cc3dfd5d68",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 33497,
            "upload_time": "2022-02-27T10:51:08",
            "upload_time_iso_8601": "2022-02-27T10:51:08.674411Z",
            "url": "https://files.pythonhosted.org/packages/f9/8f/3790c9c0a4d2ae0bba94194325eca5e404611d68a4aeac43c72a031a00c4/fastcluster-1.2.6-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f293993a2e0e03f710414b92dbfc0835",
                "sha256": "8d3c9eab8e69cb36dcdd64c8b3200e008aedf88e34d39e01ae6af98a9605ad18"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f293993a2e0e03f710414b92dbfc0835",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3",
            "size": 36887,
            "upload_time": "2022-02-27T10:51:09",
            "upload_time_iso_8601": "2022-02-27T10:51:09.814876Z",
            "url": "https://files.pythonhosted.org/packages/1a/d4/f7039cd68a860690fe17698ba61c06474da0ce9cab0ce7fc38d64bd2acc2/fastcluster-1.2.6-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "afa334abe9643eab86af701322e50a7e",
                "sha256": "c61be0bad81a21ee3e5bef91469fdd11968f33d41d142c656accba9b2992babe"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afa334abe9643eab86af701322e50a7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 40063,
            "upload_time": "2022-02-27T10:51:10",
            "upload_time_iso_8601": "2022-02-27T10:51:10.821901Z",
            "url": "https://files.pythonhosted.org/packages/09/ee/8c4c236672a19af9cdcc74d427be0ba77471fdfdc97e55c1fc63c35c685c/fastcluster-1.2.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "10e9827979693af772a2528ed9417c99",
                "sha256": "06df1d97edca68b2ffa43d81c3b5f4e4147bc12ab241c6585fadcdeb0bfa23ca"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "10e9827979693af772a2528ed9417c99",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 184740,
            "upload_time": "2022-02-27T10:51:11",
            "upload_time_iso_8601": "2022-02-27T10:51:11.890938Z",
            "url": "https://files.pythonhosted.org/packages/ae/43/9855d75971c28d00a68607c82a58a5cb09496e52ec64cb00739dea97baec/fastcluster-1.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "352141400ed1d9e7174d218412e8331f",
                "sha256": "ab9337b0a6a9b07b6f86fc724972d1ad729c890e2f539c1b33271c2f1f00af8b"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "352141400ed1d9e7174d218412e8331f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 190265,
            "upload_time": "2022-02-27T10:51:13",
            "upload_time_iso_8601": "2022-02-27T10:51:13.404973Z",
            "url": "https://files.pythonhosted.org/packages/5f/75/5531f536f3fa448a3c50f41d2f84fb4264b4628acfca9fca0ed5d5c19659/fastcluster-1.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2ff06a564be145855268f698213fb038",
                "sha256": "4093d5454bcbe48b30e32da5db43056a08889480a96e4555f28c1f7004fc5323"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ff06a564be145855268f698213fb038",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 194418,
            "upload_time": "2022-02-27T10:51:14",
            "upload_time_iso_8601": "2022-02-27T10:51:14.443799Z",
            "url": "https://files.pythonhosted.org/packages/7d/33/7a8c57ee0e0a5df23fccce6058cebfebcc37d762744d24a7c273c9b518a3/fastcluster-1.2.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "85239905b0b2fa0119f042bc66cd8682",
                "sha256": "58958a0333e3dfbad198394e9b7dd6254de0a3e622019b057288405b2a4a6bba"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "85239905b0b2fa0119f042bc66cd8682",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 33287,
            "upload_time": "2022-02-27T10:51:15",
            "upload_time_iso_8601": "2022-02-27T10:51:15.690014Z",
            "url": "https://files.pythonhosted.org/packages/12/70/48a40d7bdd66e688bfbb541668ff8317e588461ed37a47de1fa06f175f1b/fastcluster-1.2.6-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "bef78487d0be91ef60b3ceec20b90742",
                "sha256": "03f8efe6435a7b947fa4a420676942d0267dac0d323ec5ead50f1856cc7cf96f"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bef78487d0be91ef60b3ceec20b90742",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3",
            "size": 36459,
            "upload_time": "2022-02-27T10:51:16",
            "upload_time_iso_8601": "2022-02-27T10:51:16.691935Z",
            "url": "https://files.pythonhosted.org/packages/07/8e/95cdf428abcb4a7bb4fc57d7f7c0bdc1b66801cfa0f33240e6cc8a18c8d2/fastcluster-1.2.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8debb1ff995978322d270c60f408eeb8",
                "sha256": "a5ceb39379327316d34613f7c16c06d7a3816aa38f4437b5e8433aa1bf149e2c"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8debb1ff995978322d270c60f408eeb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 67624,
            "upload_time": "2022-02-27T10:51:17",
            "upload_time_iso_8601": "2022-02-27T10:51:17.587740Z",
            "url": "https://files.pythonhosted.org/packages/2b/40/adf82f45fc6470f41e27626c4aaf0cf8ab3401089c9e3d81df02068fb2a8/fastcluster-1.2.6-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1557a88d2168401333f61935c18c0bac",
                "sha256": "0bb54283b4d5ec96f167c7fd31921f169226c1261637434fdae7a69ee3c69573"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1557a88d2168401333f61935c18c0bac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 40117,
            "upload_time": "2022-02-27T10:51:18",
            "upload_time_iso_8601": "2022-02-27T10:51:18.735429Z",
            "url": "https://files.pythonhosted.org/packages/3d/75/695daa6c2ad2ccacfa19f57cb93750c6e6c984b14cfa6fc47ea4e6f06b67/fastcluster-1.2.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5ef218e314154cd627912973d661fc60",
                "sha256": "6e51db0067e65687a5c46f00a11843d0bb15ca759e8a1767eebac8c4f6e3f4df"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5ef218e314154cd627912973d661fc60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 37555,
            "upload_time": "2022-02-27T10:51:19",
            "upload_time_iso_8601": "2022-02-27T10:51:19.745112Z",
            "url": "https://files.pythonhosted.org/packages/da/e9/d9b9fddcf6ac3dd1466f1839c939ed8badbcf8e86ac0d2b2b88f2d129a2f/fastcluster-1.2.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d0f01837c90b2f27c97fc485b98204e6",
                "sha256": "11748a4e245c745030e9ddd8c2c37e378f8ad8bd8e869d954c84ff674495499f"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0f01837c90b2f27c97fc485b98204e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 184422,
            "upload_time": "2022-02-27T10:51:21",
            "upload_time_iso_8601": "2022-02-27T10:51:21.069260Z",
            "url": "https://files.pythonhosted.org/packages/4d/d4/f778681bc40302d23040e6c6590a30408a9e3a6bb8b65f036bf43f8e2f5e/fastcluster-1.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "677178e217a68cf230719dfff0e3614b",
                "sha256": "7254f81dc71cd29ef6f2d9747cf97ff907b569c9ef9d9760352391be5b57118c"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "677178e217a68cf230719dfff0e3614b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 189828,
            "upload_time": "2022-02-27T10:51:22",
            "upload_time_iso_8601": "2022-02-27T10:51:22.233076Z",
            "url": "https://files.pythonhosted.org/packages/f6/23/7b95da9ebf24294f9747ceb908c0cbeaf5b6df57a878f0882418cad23dc2/fastcluster-1.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "36237aad28c71383032ec0945dce6823",
                "sha256": "aa4a4c01c5fbec3623e92bc33a9f712ca416ce93255c402f5c904ac4b890ac3c"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36237aad28c71383032ec0945dce6823",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 194050,
            "upload_time": "2022-02-27T10:51:23",
            "upload_time_iso_8601": "2022-02-27T10:51:23.340365Z",
            "url": "https://files.pythonhosted.org/packages/b6/ea/d7a4f4b4f14584d4585dd54b0d2ff9e7624d22693c923619675ecb382178/fastcluster-1.2.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "092d4bd587ca0cf36e978b79f9fcab59",
                "sha256": "ffdb00782cd63bbf2c45bb048897531e868326dff5081ab9b752d294b0426c1d"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "092d4bd587ca0cf36e978b79f9fcab59",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 33218,
            "upload_time": "2022-02-27T10:51:24",
            "upload_time_iso_8601": "2022-02-27T10:51:24.429973Z",
            "url": "https://files.pythonhosted.org/packages/49/f5/81ca2a21ccf19107739ed30c263fdb9bb8a091107ba585ae70327877d4c5/fastcluster-1.2.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e4ed52ca6c093f86001739b1a57a508c",
                "sha256": "a952a84453123db0c2336b9a9c86162e99ad0b897bae8213107c055a64effd41"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e4ed52ca6c093f86001739b1a57a508c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3",
            "size": 36405,
            "upload_time": "2022-02-27T10:51:25",
            "upload_time_iso_8601": "2022-02-27T10:51:25.690947Z",
            "url": "https://files.pythonhosted.org/packages/46/a9/479d43af24e10635101fef9b45fcd9bb6fa7f8aca48a8f265c37c47071c1/fastcluster-1.2.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8101e18c83d0179b2ac4094674e6bc8a",
                "sha256": "a085e7e13f1afc517358981b2b7ed774dc9abf95f2be0da9a495d9e6b58c4409"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8101e18c83d0179b2ac4094674e6bc8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 67627,
            "upload_time": "2022-02-27T10:51:26",
            "upload_time_iso_8601": "2022-02-27T10:51:26.981350Z",
            "url": "https://files.pythonhosted.org/packages/0c/06/0d8a1eb095e8d1777a7ab975729d4c6071e5e9370ae8359454f3cd630c16/fastcluster-1.2.6-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d6e559acdf39a0c482842d35cba46108",
                "sha256": "6a7c7f51a6d2f5ab58b1d85e9d0af2af9600ec13bb43bc6aafc9085d2c4ccd93"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6e559acdf39a0c482842d35cba46108",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 40115,
            "upload_time": "2022-02-27T10:51:28",
            "upload_time_iso_8601": "2022-02-27T10:51:28.285952Z",
            "url": "https://files.pythonhosted.org/packages/04/82/ce9970726a4107d326e6de65094017a260aee3282995222ddf7bfeb2f8fd/fastcluster-1.2.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5c718148aecab653789da05e154ef215",
                "sha256": "8bac5cf64691060cf86b0752dd385ef1eccff6d24bdb8b60691cf8cbf0e4f9ef"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c718148aecab653789da05e154ef215",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 37560,
            "upload_time": "2022-02-27T10:51:29",
            "upload_time_iso_8601": "2022-02-27T10:51:29.233417Z",
            "url": "https://files.pythonhosted.org/packages/28/bc/a6f3c7d76c8d83e0258fd5f0ac6d7eaf95b9925e004a90383cfe6ef2b665/fastcluster-1.2.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ac4e8214b602638a6f0bd28479f3f76f",
                "sha256": "060c1cb3c84942d8d3618385e2c25998ba690c46ec8c73d64477f808abfac3f2"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac4e8214b602638a6f0bd28479f3f76f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 184110,
            "upload_time": "2022-02-27T10:51:30",
            "upload_time_iso_8601": "2022-02-27T10:51:30.413100Z",
            "url": "https://files.pythonhosted.org/packages/d7/4f/0a71ce787dabe3a845b1b19d2ee01987f8d638b1e78d0b67db352239c5d6/fastcluster-1.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "871897f402ebda90811529efe40c3e66",
                "sha256": "e03a228e018457842eb81de85be7af0b5fe8065d666dd093193e3bdcf1f13d2e"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "871897f402ebda90811529efe40c3e66",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 189526,
            "upload_time": "2022-02-27T10:51:31",
            "upload_time_iso_8601": "2022-02-27T10:51:31.694071Z",
            "url": "https://files.pythonhosted.org/packages/91/23/b98b7c8c51141e45de9c64345f8837ba874812e8f1d323727daa7614e5a1/fastcluster-1.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9fc8a0511b719c558aa39708b1bd3dd0",
                "sha256": "a6f8da329c0032f2acaf4beaef958a2db0dae43d3f946f592dad5c29aa82c832"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fc8a0511b719c558aa39708b1bd3dd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 193741,
            "upload_time": "2022-02-27T10:51:32",
            "upload_time_iso_8601": "2022-02-27T10:51:32.959002Z",
            "url": "https://files.pythonhosted.org/packages/87/15/af8c4a2a9329c9f117e49efd16c0e13ee1b3e4ef16be27d35005fbc36b6f/fastcluster-1.2.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1bb283de99016573eb743ee045c31589",
                "sha256": "eb3f98791427d5d5d02d023b66bcef61e48954edfadae6527ef72d70cf32ec86"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1bb283de99016573eb743ee045c31589",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 33219,
            "upload_time": "2022-02-27T10:51:34",
            "upload_time_iso_8601": "2022-02-27T10:51:34.218649Z",
            "url": "https://files.pythonhosted.org/packages/7f/61/b6d0e0723129ff34c214c90fd3bdcccc4b5594351eee0d949fd14a0a8a5d/fastcluster-1.2.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "39425aa09ef32bec42f0300d193179e0",
                "sha256": "4b9cfd426966b8037bec2fc03a0d7a9c87313482c699b36ffa1432b49f84ed2e"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39425aa09ef32bec42f0300d193179e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3",
            "size": 36410,
            "upload_time": "2022-02-27T10:51:35",
            "upload_time_iso_8601": "2022-02-27T10:51:35.214155Z",
            "url": "https://files.pythonhosted.org/packages/d6/7c/9a5d7fd8ca2f8ede3fd32ce8550f7487ead6d4d6f46c4f0d9016dede7eb4/fastcluster-1.2.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2f4a1777ef6ee668a24561cfda84b6f1",
                "sha256": "aab886efa7b6bba7ac124f4498153d053e5a08b822d2254926b7206cdf5a8aa6"
            },
            "downloads": -1,
            "filename": "fastcluster-1.2.6.tar.gz",
            "has_sig": false,
            "md5_digest": "2f4a1777ef6ee668a24561cfda84b6f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 173773,
            "upload_time": "2022-02-27T10:51:36",
            "upload_time_iso_8601": "2022-02-27T10:51:36.515287Z",
            "url": "https://files.pythonhosted.org/packages/5d/b8/f143d907d93bd4a3dd51d07c4e79b37bedbfc2177f4949bfa0d6ba0af647/fastcluster-1.2.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-02-27 10:51:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "fastcluster"
}
        
Elapsed time: 0.01948s