{ "info": { "author": "lda developers", "author_email": "lda-users@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: C", "Programming Language :: Cython", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "lda: Topic modeling with latent Dirichlet allocation\n====================================================\n\n|pypi| |travis| |zenodo|\n\n``lda`` implements latent Dirichlet allocation (LDA) using collapsed Gibbs\nsampling. ``lda`` is fast and is tested on Linux, OS X, and Windows.\n\nYou can read more about lda in `the documentation `_.\n\nInstallation\n------------\n\n``pip install lda``\n\nGetting started\n---------------\n\n``lda.LDA`` implements latent Dirichlet allocation (LDA). The interface follows\nconventions found in scikit-learn_.\n\nThe following demonstrates how to inspect a model of a subset of the Reuters\nnews dataset. The input below, ``X``, is a document-term matrix (sparse matrices\nare accepted).\n\n.. code-block:: python\n\n >>> import numpy as np\n >>> import lda\n >>> import lda.datasets\n >>> X = lda.datasets.load_reuters()\n >>> vocab = lda.datasets.load_reuters_vocab()\n >>> titles = lda.datasets.load_reuters_titles()\n >>> X.shape\n (395, 4258)\n >>> X.sum()\n 84010\n >>> model = lda.LDA(n_topics=20, n_iter=1500, random_state=1)\n >>> model.fit(X) # model.fit_transform(X) is also available\n >>> topic_word = model.topic_word_ # model.components_ also works\n >>> n_top_words = 8\n >>> for i, topic_dist in enumerate(topic_word):\n ... topic_words = np.array(vocab)[np.argsort(topic_dist)][:-(n_top_words+1):-1]\n ... print('Topic {}: {}'.format(i, ' '.join(topic_words)))\n\n Topic 0: british churchill sale million major letters west britain\n Topic 1: church government political country state people party against\n Topic 2: elvis king fans presley life concert young death\n Topic 3: yeltsin russian russia president kremlin moscow michael operation\n Topic 4: pope vatican paul john surgery hospital pontiff rome\n Topic 5: family funeral police miami versace cunanan city service\n Topic 6: simpson former years court president wife south church\n Topic 7: order mother successor election nuns church nirmala head\n Topic 8: charles prince diana royal king queen parker bowles\n Topic 9: film french france against bardot paris poster animal\n Topic 10: germany german war nazi letter christian book jews\n Topic 11: east peace prize award timor quebec belo leader\n Topic 12: n't life show told very love television father\n Topic 13: years year time last church world people say\n Topic 14: mother teresa heart calcutta charity nun hospital missionaries\n Topic 15: city salonika capital buddhist cultural vietnam byzantine show\n Topic 16: music tour opera singer israel people film israeli\n Topic 17: church catholic bernardin cardinal bishop wright death cancer\n Topic 18: harriman clinton u.s ambassador paris president churchill france\n Topic 19: city museum art exhibition century million churches set\n\nThe document-topic distributions are available in ``model.doc_topic_``.\n\n.. code-block:: python\n\n >>> doc_topic = model.doc_topic_\n >>> for i in range(10):\n ... print(\"{} (top topic: {})\".format(titles[i], doc_topic[i].argmax()))\n 0 UK: Prince Charles spearheads British royal revolution. LONDON 1996-08-20 (top topic: 8)\n 1 GERMANY: Historic Dresden church rising from WW2 ashes. DRESDEN, Germany 1996-08-21 (top topic: 13)\n 2 INDIA: Mother Teresa's condition said still unstable. CALCUTTA 1996-08-23 (top topic: 14)\n 3 UK: Palace warns British weekly over Charles pictures. LONDON 1996-08-25 (top topic: 8)\n 4 INDIA: Mother Teresa, slightly stronger, blesses nuns. CALCUTTA 1996-08-25 (top topic: 14)\n 5 INDIA: Mother Teresa's condition unchanged, thousands pray. CALCUTTA 1996-08-25 (top topic: 14)\n 6 INDIA: Mother Teresa shows signs of strength, blesses nuns. CALCUTTA 1996-08-26 (top topic: 14)\n 7 INDIA: Mother Teresa's condition improves, many pray. CALCUTTA, India 1996-08-25 (top topic: 14)\n 8 INDIA: Mother Teresa improves, nuns pray for \"miracle\". CALCUTTA 1996-08-26 (top topic: 14)\n 9 UK: Charles under fire over prospect of Queen Camilla. LONDON 1996-08-26 (top topic: 8)\n\n\nRequirements\n------------\n\nPython 2.7 or Python 3.5+ is required. The following packages are required\n\n- numpy_\n- pbr_\n\nCaveat\n------\n\n``lda`` aims for simplicity. (It happens to be fast, as essential parts are\nwritten in C via Cython_.) If you are working with a very large corpus you may\nwish to use more sophisticated topic models such as those implemented in hca_\nand MALLET_. hca_ is written entirely in C and MALLET_ is written in Java.\nUnlike ``lda``, hca_ can use more than one processor at a time. Both MALLET_ and\nhca_ implement topic models known to be more robust than standard latent\nDirichlet allocation.\n\nNotes\n-----\n\nLatent Dirichlet allocation is described in `Blei et al. (2003)`_ and `Pritchard\net al. (2000)`_. Inference using collapsed Gibbs sampling is described in\n`Griffiths and Steyvers (2004)`_.\n\nImportant links\n---------------\n\n- Documentation: http://lda.readthedocs.org\n- Source code: https://github.com/lda-project/lda/\n- Issue tracker: https://github.com/lda-project/lda/issues\n\nOther implementations\n---------------------\n- scikit-learn_'s `LatentDirichletAllocation `_ (uses online variational inference)\n- `gensim `_ (uses online variational inference)\n\nLicense\n-------\n\nlda is licensed under Version 2.0 of the Mozilla Public License.\n\n.. _Python: http://www.python.org/\n.. _scikit-learn: http://scikit-learn.org\n.. _hca: http://www.mloss.org/software/view/527/\n.. _MALLET: http://mallet.cs.umass.edu/\n.. _numpy: http://www.numpy.org/\n.. _pbr: https://pypi.python.org/pypi/pbr\n.. _Cython: http://cython.org\n.. _Blei et al. (2003): http://jmlr.org/papers/v3/blei03a.html\n.. _Pritchard et al. (2000): http://www.genetics.org/content/155/2/945.full\n.. _Griffiths and Steyvers (2004): http://www.pnas.org/content/101/suppl_1/5228.abstract\n\n.. |pypi| image:: https://badge.fury.io/py/lda.png\n :target: https://pypi.python.org/pypi/lda\n :alt: pypi version\n\n.. |travis| image:: https://travis-ci.org/lda-project/lda.png?branch=master\n :target: https://travis-ci.org/lda-project/lda\n :alt: travis-ci build status\n\n.. |zenodo| image:: https://zenodo.org/badge/doi/10.5281/zenodo.57927.svg\n :target: https://doi.org/10.5281/zenodo.57927\n :alt: Zenodo citation\n\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/lda/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "lda", "package_url": "https://pypi.org/project/lda/", "platform": "", "project_url": "https://pypi.org/project/lda/", "project_urls": null, "release_url": "https://pypi.org/project/lda/1.1.0/", "requires_dist": [ "pbr (<4,>=0.6)", "numpy (<2.0,>=1.13.0)" ], "requires_python": "", "summary": "Topic modeling with latent Dirichlet allocation", "version": "1.1.0" }, "last_serial": 4416876, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "87305535fb7df7c20100983b9523b423", "sha256": "76db833078ef81558a7dd76189f27a3d002d0d458c67647d3911b46e696d2ead" }, "downloads": -1, "filename": "lda-0.1.0.tar.gz", "has_sig": true, "md5_digest": "87305535fb7df7c20100983b9523b423", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222566, "upload_time": "2014-09-12T14:22:00", "url": "https://files.pythonhosted.org/packages/80/74/16109299b265efec116e5137ba24d549a47a27469821ccffcc42f123cff0/lda-0.1.0.tar.gz" } ], "0.1.0.dev2.g0925a91": [ { "comment_text": "", "digests": { "md5": "88136ac3e16e464943f6a0326477bd51", "sha256": "b395f2457b6e25b282c8476163506ef638e9318219cb928e9a3e2bb9c7f99ff1" }, "downloads": -1, "filename": "lda-0.1.0.dev2.g0925a91.tar.gz", "has_sig": true, "md5_digest": "88136ac3e16e464943f6a0326477bd51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222947, "upload_time": "2014-09-12T12:56:44", "url": "https://files.pythonhosted.org/packages/69/20/6901df97a391830e0bf0bfced0130a83e373cf0e6db69783c91822aab7be/lda-0.1.0.dev2.g0925a91.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4224963e3a348dd3f5de87813b4d2728", "sha256": "8dea27ea17e4a66ba8deac3a89b73b4dbf0356ac36ae085a47026c2cb08fddf0" }, "downloads": -1, "filename": "lda-0.2.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "4224963e3a348dd3f5de87813b4d2728", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 371531, "upload_time": "2014-09-16T14:56:34", "url": "https://files.pythonhosted.org/packages/bd/b4/fcb8b816c24b5e36b900c28ea7185ff5b956f7888c154495c36ff932bab5/lda-0.2.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "386714e533fa514507b371797f1bb82b", "sha256": "ce0ce22855a5ab73fa3bcc45c68923f4ef468a3f27bcab1e241008f48d1e40a2" }, "downloads": -1, "filename": "lda-0.2.0-cp27-none-win32.whl", "has_sig": true, "md5_digest": "386714e533fa514507b371797f1bb82b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 290263, "upload_time": "2014-09-16T14:56:36", "url": "https://files.pythonhosted.org/packages/a0/91/0cffaf58ed45cba237eb58915628a64a40ec1f091c65a9e9b3fa85948487/lda-0.2.0-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "0cc4780c46f45401df1e804cabb08221", "sha256": "60c81a496df479951d8181939a31c5f937c667ba8c38e976b5de967489cef27e" }, "downloads": -1, "filename": "lda-0.2.0-cp27-none-win_amd64.whl", "has_sig": true, "md5_digest": "0cc4780c46f45401df1e804cabb08221", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 297869, "upload_time": "2014-09-16T14:56:39", "url": "https://files.pythonhosted.org/packages/3b/08/9314ffc11de3bdbddea0fab8f995d1c822f8d75a854ddf4426a0189d349b/lda-0.2.0-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "610853d5bbb6795d16050e61f2006468", "sha256": "9ffe0b900bf130d089ef2483f9eb93d2fc5fbdc06dac36792c9b031a52ec0496" }, "downloads": -1, "filename": "lda-0.2.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "610853d5bbb6795d16050e61f2006468", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 371968, "upload_time": "2014-09-16T14:56:42", "url": "https://files.pythonhosted.org/packages/52/66/8ce24228de4ee97a44d6ee94bd9f77d270f5697630c0c93fde9b321cde3c/lda-0.2.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8d077c509f98b3ed3beae923501e135c", "sha256": "e0d9ea5933689f545e99e9d32d4d8540aad4120247bad01f4b9b3537ed454ec6" }, "downloads": -1, "filename": "lda-0.2.0-cp34-none-win32.whl", "has_sig": true, "md5_digest": "8d077c509f98b3ed3beae923501e135c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 290411, "upload_time": "2014-09-16T14:56:45", "url": "https://files.pythonhosted.org/packages/5b/ac/d4176cbc743c669baf3658a37fe438417f352767a3cf692078306793a416/lda-0.2.0-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3c509e7179707f616887d2109791f672", "sha256": "2f63b95cfacbcbfbd7afa2dbbd57fa0afab4083bb15e9e48fcdb537a62289492" }, "downloads": -1, "filename": "lda-0.2.0-cp34-none-win_amd64.whl", "has_sig": true, "md5_digest": "3c509e7179707f616887d2109791f672", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 296954, "upload_time": "2014-09-16T14:56:48", "url": "https://files.pythonhosted.org/packages/3b/d4/af2cb3b83a09ee9a4ee3be72db4389a45e498dce6c17d8db36c7a2f40720/lda-0.2.0-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bc5abc0a2462f7993eb44f030114589d", "sha256": "5b90a9cd5da9bc006b28120a937cef24d3b54955c0b30ae376ffd0aef69c65f6" }, "downloads": -1, "filename": "lda-0.2.0.tar.gz", "has_sig": true, "md5_digest": "bc5abc0a2462f7993eb44f030114589d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 247637, "upload_time": "2014-09-16T14:56:51", "url": "https://files.pythonhosted.org/packages/87/f3/d36d8731aae3805f98edc7cdeef03f94a47e2f8e7190b57000f7e64aee23/lda-0.2.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "4573faadddcc30c77ec3d1548079b248", "sha256": "aab4e6f4181908e64a8b140c6ff51334059b4adf349ebe2139f6e7bfe9f470e3" }, "downloads": -1, "filename": "lda-0.2.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "4573faadddcc30c77ec3d1548079b248", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 489284, "upload_time": "2014-09-17T11:14:04", "url": "https://files.pythonhosted.org/packages/63/bf/285a81fa7136e9706dc306f8e5cdd96fbb745db9606a609e446def0d74ee/lda-0.2.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5a86f891bc2734b98458c88d316a16d0", "sha256": "01787f4089d7a84c6c45f823abcb349e082b71509efc76679953c3ecfa6915a7" }, "downloads": -1, "filename": "lda-0.2.0.win32-py3.4.exe", "has_sig": true, "md5_digest": "5a86f891bc2734b98458c88d316a16d0", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 484343, "upload_time": "2014-09-17T11:14:07", "url": "https://files.pythonhosted.org/packages/f7/3a/576d67b9d61536aa05e6928e6b4bc34122d1877dd929e0e67b8af89dd25d/lda-0.2.0.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "fd6f27736a6345728c30d46e3534d303", "sha256": "cefc5deeb6ac885d4cce5c6736a57d639012337b43b99b28a5144e967b5f9be0" }, "downloads": -1, "filename": "lda-0.2.0.win-amd64-py2.7.exe", "has_sig": true, "md5_digest": "fd6f27736a6345728c30d46e3534d303", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 524533, "upload_time": "2014-09-17T11:14:10", "url": "https://files.pythonhosted.org/packages/d3/3d/17b1ed7a491ab42a52c3216e18d6ece7dcbfe5998ef2d1546b41a3abcd84/lda-0.2.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "8c87a63f56af1f0a03ccd848de36606a", "sha256": "15b0446dbeefb58448056a6e0c5ed51f010e7ab8368b6277fb79e35383065b75" }, "downloads": -1, "filename": "lda-0.2.0.win-amd64-py3.4.exe", "has_sig": true, "md5_digest": "8c87a63f56af1f0a03ccd848de36606a", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 522110, "upload_time": "2014-09-17T11:14:12", "url": "https://files.pythonhosted.org/packages/38/61/23d1eab7c971e2277609386f4d6f15d4d9c4b297c83cbf152bc281d57e90/lda-0.2.0.win-amd64-py3.4.exe" } ], "0.2.1pre": [ { "comment_text": "", "digests": { "md5": "fc71bf8254d07bea9332ade4c60f7462", "sha256": "66d84d8e639ed90993d72235f95b5064ff43aa131bd7832d0cacdd128c6c282c" }, "downloads": -1, "filename": "lda-0.2.1pre.tar.gz", "has_sig": true, "md5_digest": "fc71bf8254d07bea9332ade4c60f7462", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 248523, "upload_time": "2014-09-16T15:33:30", "url": "https://files.pythonhosted.org/packages/8a/fb/fdc213b9ac2f10f97dfd8f75984f6da171ec757034fe771206387217915d/lda-0.2.1pre.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "9e10c7aa4afc66902813c887d1906c1d", "sha256": "6c5a149a3fde282320f7a0e87fe6da81be54e507ea7451fd4b18799ff5a75c4c" }, "downloads": -1, "filename": "lda-0.3.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "9e10c7aa4afc66902813c887d1906c1d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 371603, "upload_time": "2014-09-18T09:38:45", "url": "https://files.pythonhosted.org/packages/e2/b8/7483ecb0fb831668006484a1c954f764230f4a559b19af75ff4bbed42987/lda-0.3.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "087a5530b61ae0aa929d42a74d7749e3", "sha256": "f9d8f958ec91bb7b999a0d70961d4e92a22e09960f52de0910c331a18d779909" }, "downloads": -1, "filename": "lda-0.3.0-cp27-none-win32.whl", "has_sig": true, "md5_digest": "087a5530b61ae0aa929d42a74d7749e3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 290325, "upload_time": "2014-09-18T09:38:48", "url": "https://files.pythonhosted.org/packages/d3/6a/787934b73cf2e8cbc5ffe1846d5b759d5676873825d675e4e27732a881ce/lda-0.3.0-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "5ea45431ddd506c27e756a1e7d9fdf30", "sha256": "f014198ff5aad58101762195c391f7c07dc4f4a7d63fb0d08b8327d27bc19c4b" }, "downloads": -1, "filename": "lda-0.3.0-cp27-none-win_amd64.whl", "has_sig": true, "md5_digest": "5ea45431ddd506c27e756a1e7d9fdf30", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 297933, "upload_time": "2014-09-18T09:38:52", "url": "https://files.pythonhosted.org/packages/03/fd/ee109f9d86695f8ec8f876910ebd9ebcef441312d5aa75278e7b6b5c4325/lda-0.3.0-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fb7ac67caccee59c878ccd31414621d2", "sha256": "2f4c089ae1fee2fef9c864dbc3c793204b314d29732a2880e04f0147054a7e65" }, "downloads": -1, "filename": "lda-0.3.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "fb7ac67caccee59c878ccd31414621d2", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 372047, "upload_time": "2014-09-18T09:38:57", "url": "https://files.pythonhosted.org/packages/7c/2e/73e2e2b690ca36df87f0c024a088b2fa69d0335902229ec8e5b154a546e5/lda-0.3.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa25034af8808ad46ec200fbfb0e930a", "sha256": "8720be8effe3d7f211017b1c309ba78ff0f404aa249472b2fc5f33004cd0ed26" }, "downloads": -1, "filename": "lda-0.3.0-cp33-none-win32.whl", "has_sig": true, "md5_digest": "aa25034af8808ad46ec200fbfb0e930a", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 290444, "upload_time": "2014-09-18T09:39:01", "url": "https://files.pythonhosted.org/packages/a6/6e/5ebe8c6b90e44f6340834e2f6f50b6204c06bb70b319c5ee94fca7a86c94/lda-0.3.0-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "74fd1c9c420c1831f7ed426a06161b05", "sha256": "ee819592f648c73b4e395fd0ff9fbf5762af44624d60ffeeac2149497701fc6c" }, "downloads": -1, "filename": "lda-0.3.0-cp33-none-win_amd64.whl", "has_sig": true, "md5_digest": "74fd1c9c420c1831f7ed426a06161b05", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 297007, "upload_time": "2014-09-18T09:39:06", "url": "https://files.pythonhosted.org/packages/02/63/088456f597933e47eac632e26ba8f4e4a9766dbb8a35dd4b7b5034c6041f/lda-0.3.0-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9303d6e7d60424992cf6f0a51c2358bc", "sha256": "5b5b01559ceeaa0f0ecbcdafe466c39f8f0501e27160dcf4af505104be97b5cd" }, "downloads": -1, "filename": "lda-0.3.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "9303d6e7d60424992cf6f0a51c2358bc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 372219, "upload_time": "2014-09-18T09:39:09", "url": "https://files.pythonhosted.org/packages/4f/69/f7292056e0a468335c8e33d32e463b2fbd5ed8db4b0c644d22f56cf316bd/lda-0.3.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "89b931dd23514fc2da003b5805da2fc7", "sha256": "672edf35d3fb73cb0b7ef829edbf188c5587eeae35237095bf19e7243f14efd9" }, "downloads": -1, "filename": "lda-0.3.0-cp34-none-win32.whl", "has_sig": true, "md5_digest": "89b931dd23514fc2da003b5805da2fc7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 290487, "upload_time": "2014-09-18T09:39:13", "url": "https://files.pythonhosted.org/packages/4b/a4/faea4953eda1bfdd030c4e77fd8389baa854e3b40b417ddf6bcdd6ad7ee1/lda-0.3.0-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "0f509e0babd416a6aebcc02fe6ac170b", "sha256": "062f50f12fa9e13ab6e1e992100e8754a96a284f66da2b4e8d151ffb91a4950b" }, "downloads": -1, "filename": "lda-0.3.0-cp34-none-win_amd64.whl", "has_sig": true, "md5_digest": "0f509e0babd416a6aebcc02fe6ac170b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 297024, "upload_time": "2014-09-18T09:39:16", "url": "https://files.pythonhosted.org/packages/c0/92/a255b740997cc3b3b742f58f2e4fcd40868a714d80d3626de3631742201a/lda-0.3.0-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b1b776ec848a35190ffd7772a27172fc", "sha256": "d84a93eb65a3e98b28e7c310f5ba4bb6f831c1caae2fa18cda2491cf4e5d06d9" }, "downloads": -1, "filename": "lda-0.3.0.tar.gz", "has_sig": true, "md5_digest": "b1b776ec848a35190ffd7772a27172fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 249224, "upload_time": "2014-09-18T09:39:19", "url": "https://files.pythonhosted.org/packages/98/50/20a0ac57f5f2e6da3996c43cadd8efb01ca55a8a5c27af03c868c8013f6d/lda-0.3.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "47663def4797894034bdc4bcece585f5", "sha256": "47aebbe6f3fba9b8df8afe53aa28a8d9c7ab2e46f3f76e4e3198d79f0b60c896" }, "downloads": -1, "filename": "lda-0.3.0.win32-py2.7.exe", "has_sig": true, "md5_digest": "47663def4797894034bdc4bcece585f5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 489452, "upload_time": "2014-09-18T09:39:23", "url": "https://files.pythonhosted.org/packages/32/17/91bc6b53931d9fc4206c2931ba43dcb557fe0b34576bd42bd23dabc27ba5/lda-0.3.0.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "dbf1e5920a4f0e43776182b9f5fe2cbc", "sha256": "3b3676a7493548a4f736694c65a2e394daf56274311b8fe27fa6f3425514b046" }, "downloads": -1, "filename": "lda-0.3.0.win32-py3.3.exe", "has_sig": true, "md5_digest": "dbf1e5920a4f0e43776182b9f5fe2cbc", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 484471, "upload_time": "2014-09-18T09:39:27", "url": "https://files.pythonhosted.org/packages/32/93/0d3e2a0d1db6e7c66ef4c657c98f8cc1ed43f66a23f368400274a07e9f7b/lda-0.3.0.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "df8a3c7b10d4bcb78decd93bdec5d54c", "sha256": "9a362cec85b59c83d120ae4a51b30ab19664cd588fadffbc07837b8bcbbb550f" }, "downloads": -1, "filename": "lda-0.3.0.win32-py3.4.exe", "has_sig": true, "md5_digest": "df8a3c7b10d4bcb78decd93bdec5d54c", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 484511, "upload_time": "2014-09-18T09:39:32", "url": "https://files.pythonhosted.org/packages/94/44/950f80327427571f8890caae25a1345ae441722483ecdec6e810b1b968c1/lda-0.3.0.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "eb518d9160de5d179b09f414a7411723", "sha256": "7a972b8dce591b8c646c1f17f56a5242cec0cb511c81554e5575c24ce8d941b1" }, "downloads": -1, "filename": "lda-0.3.0.win-amd64-py2.7.exe", "has_sig": true, "md5_digest": "eb518d9160de5d179b09f414a7411723", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 524701, "upload_time": "2014-09-18T09:39:35", "url": "https://files.pythonhosted.org/packages/aa/19/00b70fd238e52ad750df28c38b93bc8c1613770739403fe728aa0ed56e6f/lda-0.3.0.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "7673c386681c6b6ddfae83f38b7c65c7", "sha256": "4b17e34bdf763a4516fff1575462800f554ae061c2d96341a487aee8c4900b0c" }, "downloads": -1, "filename": "lda-0.3.0.win-amd64-py3.3.exe", "has_sig": true, "md5_digest": "7673c386681c6b6ddfae83f38b7c65c7", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 522259, "upload_time": "2014-09-18T09:39:39", "url": "https://files.pythonhosted.org/packages/43/d5/a6eedc7803ad9af12acc499711e936d854c04ec36afad6c2a042d4f49857/lda-0.3.0.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "abc02a11757cd4b7ecb840f8994a9f5e", "sha256": "b5c762e9414bc0e4653ba716d13249f352c3cb043d8578f1dcad5288b329e9ee" }, "downloads": -1, "filename": "lda-0.3.0.win-amd64-py3.4.exe", "has_sig": true, "md5_digest": "abc02a11757cd4b7ecb840f8994a9f5e", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 522276, "upload_time": "2014-09-18T09:39:43", "url": "https://files.pythonhosted.org/packages/c3/d8/956c196de35ed3f8d24df6b9c9ff14e64145f5d5fd0dea683218e6a4e888/lda-0.3.0.win-amd64-py3.4.exe" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ed5139fe192d2093db9d5598a5bf38b4", "sha256": "10586096ad8e83de9b7cef7844a88f7730cd3514113ca6172378a6c1964b1f36" }, "downloads": -1, "filename": "lda-0.3.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ed5139fe192d2093db9d5598a5bf38b4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 374435, "upload_time": "2014-10-12T11:51:18", "url": "https://files.pythonhosted.org/packages/fa/d4/08726bf731437d30b1a2e656a1a2966254ce86fc5e7940383f6de279b588/lda-0.3.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0fab6fe2c26a6f8b6fa36d315de8ffee", "sha256": "277a9ddf35036d2b6aba73365879e538639ec7cfb3dd3d7b6e0ee5f6f16c72b3" }, "downloads": -1, "filename": "lda-0.3.1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "0fab6fe2c26a6f8b6fa36d315de8ffee", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 291900, "upload_time": "2014-10-12T11:51:21", "url": "https://files.pythonhosted.org/packages/6c/79/0c8165c1a5571ecf0e3838834b01f2cd07b256951de6ccf903bd5a8770bb/lda-0.3.1-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8c7ea27eee81e4413843aaefcb8f5bb4", "sha256": "e8a0e88656d2a0461647f8f719196195884651b90788cf3a0014200daee7a946" }, "downloads": -1, "filename": "lda-0.3.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "8c7ea27eee81e4413843aaefcb8f5bb4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 299574, "upload_time": "2014-10-12T11:51:25", "url": "https://files.pythonhosted.org/packages/a2/e6/8534a6ac10dd4d020aaff5dd2b0f4fb898812e881d39f62cca17b50eddf0/lda-0.3.1-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "971885c6304a240d30a70aea04846ee4", "sha256": "43b6b00012b65ce5c23b72950f81d5eec30c6e06e1b8fdcf72663401940b49b0" }, "downloads": -1, "filename": "lda-0.3.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "971885c6304a240d30a70aea04846ee4", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 374684, "upload_time": "2014-10-12T11:51:28", "url": "https://files.pythonhosted.org/packages/c4/a3/2da9dea3aad7b8c10827d3d5832cb13b7a4e38ed4a90c67b2ead9a24ac2b/lda-0.3.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6a4fc774997bd21086faa14ef7f12ec3", "sha256": "c2f6799e613c4ed421f746399a38c2079a82fadabf66a8e99353c9ceabee8d66" }, "downloads": -1, "filename": "lda-0.3.1-cp33-none-win32.whl", "has_sig": false, "md5_digest": "6a4fc774997bd21086faa14ef7f12ec3", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 292210, "upload_time": "2014-10-12T11:59:49", "url": "https://files.pythonhosted.org/packages/1e/9f/ba80b2bd8ff1f4252a1095b3bf472b4f6e38f73d16637aeb9232c33cfd39/lda-0.3.1-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e8a83939f366281fca8470971db9bc56", "sha256": "a3d4d64ba1662a374cd9ad666cdbbffefdf28c67177953a2ed545ba27085fd3d" }, "downloads": -1, "filename": "lda-0.3.1-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "e8a83939f366281fca8470971db9bc56", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 298651, "upload_time": "2014-10-12T11:59:53", "url": "https://files.pythonhosted.org/packages/a3/56/437a6b5610b3fbe1e2ea4c90e6832f20252dc3412cfcd5e39381db509b82/lda-0.3.1-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f910396e010476111e7d1781edcd5767", "sha256": "77ac876b3c1082d498daecaf33ce3b07a7bbf2d6e2f09f8ff3ad28d21b40dd40" }, "downloads": -1, "filename": "lda-0.3.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f910396e010476111e7d1781edcd5767", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 374952, "upload_time": "2014-10-12T11:54:09", "url": "https://files.pythonhosted.org/packages/3f/1d/4ef9a37d4402a8ad40cc0126ee1b724bc199bb9644e5756d2d89f9160aa0/lda-0.3.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8ab61b38c044eff2fec5d1ec1c924520", "sha256": "27432f2d1b90da01f3b1ae8028bdd0b135f01b3b6dedce9d79eabf65c9a6d446" }, "downloads": -1, "filename": "lda-0.3.1-cp34-none-win32.whl", "has_sig": false, "md5_digest": "8ab61b38c044eff2fec5d1ec1c924520", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 292276, "upload_time": "2014-10-12T11:59:56", "url": "https://files.pythonhosted.org/packages/52/6b/5d0570c032164404fd599e6ecc30dd59d5e236b92bc5e727d14689027a3d/lda-0.3.1-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e26f22263f8bd1a7911690395828df33", "sha256": "a2ec8e913bc66bd432a2e48cae18fce757ef81dc4e09942db963f0433246d542" }, "downloads": -1, "filename": "lda-0.3.1-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "e26f22263f8bd1a7911690395828df33", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 298664, "upload_time": "2014-10-12T11:59:59", "url": "https://files.pythonhosted.org/packages/41/a0/35e4c02fb0c3c689415ab7d9d0916acf0b8fa9369892a94a59673f7d2d71/lda-0.3.1-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "29cff70a2797d5c133260403a690b7a3", "sha256": "ef11be5e13d749a3040a7d1546e2101071d103db5b87d0e39d052e77ab70b398" }, "downloads": -1, "filename": "lda-0.3.1.tar.gz", "has_sig": false, "md5_digest": "29cff70a2797d5c133260403a690b7a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251193, "upload_time": "2014-10-12T11:51:41", "url": "https://files.pythonhosted.org/packages/26/af/8b85258ebd2b55b101a040fbcd7d417363fe9906d9227c6755e91fd5b6eb/lda-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "534eb4e4c44e88a43d93da7a9d87c593", "sha256": "919738e415b6de124fe6782cb592c7b52cdc7750def47af92bc2863b3bc58428" }, "downloads": -1, "filename": "lda-0.3.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "534eb4e4c44e88a43d93da7a9d87c593", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 375600, "upload_time": "2014-11-01T20:55:53", "url": "https://files.pythonhosted.org/packages/55/d2/07b7b6442b9c0638aaa6efa215d639b041c9370e498b1a0ed742847ee59f/lda-0.3.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "14f902066aa86d6cb109f98f7c6bb02a", "sha256": "2f490413700e09e424ecc0c2b7ec465840bc1306580fc246efd2bb1adb4e6b59" }, "downloads": -1, "filename": "lda-0.3.2-cp27-none-win32.whl", "has_sig": true, "md5_digest": "14f902066aa86d6cb109f98f7c6bb02a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 293213, "upload_time": "2014-11-01T20:55:10", "url": "https://files.pythonhosted.org/packages/d4/c7/d85b2a65859eef31b05526df1a312d50ef20040f0e86b94c70a43b845789/lda-0.3.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8502eab6e6d0729eb7ff136757e59f7a", "sha256": "f9a21fb05f6debb31eec27c80876ba394aacd897e92e84133c24ad8089ba523b" }, "downloads": -1, "filename": "lda-0.3.2-cp27-none-win_amd64.whl", "has_sig": true, "md5_digest": "8502eab6e6d0729eb7ff136757e59f7a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 300879, "upload_time": "2014-11-01T20:55:12", "url": "https://files.pythonhosted.org/packages/ee/ca/43280d1a96123a246e1a5e9ca438ef7edf2cfededa21126871355c46db4b/lda-0.3.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "89b46f2171da56a5f7d57c4fe49740b0", "sha256": "1ce2475664f591c53564fc01df9c3716290b85ed830463394a3eb3fb6dbd33e7" }, "downloads": -1, "filename": "lda-0.3.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "89b46f2171da56a5f7d57c4fe49740b0", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 375948, "upload_time": "2014-11-01T20:56:21", "url": "https://files.pythonhosted.org/packages/83/a5/6c8de4b8f3db3874c2d1793294af6f8e13f5900cdddda25fd2f6be42d63d/lda-0.3.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5c786aad2dc674bf927bd1f1faeaa4df", "sha256": "db72fb43ac4e0abaf15e59d3356b1decb9ca4eadb8cbdb4e5d4df886695bfc39" }, "downloads": -1, "filename": "lda-0.3.2-cp33-none-win32.whl", "has_sig": true, "md5_digest": "5c786aad2dc674bf927bd1f1faeaa4df", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 293516, "upload_time": "2014-11-01T20:55:14", "url": "https://files.pythonhosted.org/packages/0c/76/a045de0304dd390fdd3f1f37d000aa7626c6317b65bf849fc28c4f46b8fc/lda-0.3.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a6c748bd89e05fd7b5686e1d2acd2d29", "sha256": "4110e8f4261c5d0e97b86c7d2f394226f1c71d0a6440f7067da114a65a2d29a5" }, "downloads": -1, "filename": "lda-0.3.2-cp33-none-win_amd64.whl", "has_sig": true, "md5_digest": "a6c748bd89e05fd7b5686e1d2acd2d29", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 299969, "upload_time": "2014-11-01T20:55:17", "url": "https://files.pythonhosted.org/packages/a4/d9/e4c58d1e2cc6f8f5763930e4f28a1a735ef4ee65bb8b3884b5e39b48e901/lda-0.3.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ff9e14a066c4c722ee9517f646d22705", "sha256": "ac7fd83c325f50356dc57c61bfcfe22189edd7eb44549b8434b443f35df2fde9" }, "downloads": -1, "filename": "lda-0.3.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "ff9e14a066c4c722ee9517f646d22705", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 376240, "upload_time": "2014-11-01T20:56:25", "url": "https://files.pythonhosted.org/packages/ab/aa/7fd1a56cdd4676341c150a730c12a86eaac91d0ed4f3a19a3b81ec6587a6/lda-0.3.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "66dea672d74ab463d5f17cc1cce86d77", "sha256": "fab28cbb24132fa62bdbdc9f5f9e62895f408b08dbc96e5d886f7146ef66f799" }, "downloads": -1, "filename": "lda-0.3.2-cp34-none-win32.whl", "has_sig": true, "md5_digest": "66dea672d74ab463d5f17cc1cce86d77", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 293576, "upload_time": "2014-11-01T20:55:19", "url": "https://files.pythonhosted.org/packages/3e/38/8f030d0a57c36380a9f6bf22fcec88b734c499daeca209b497e685359f49/lda-0.3.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d88a9fd5f4c4bab26100475308b48b25", "sha256": "c8f8991e4943e11def05896362ac2b88ddaa0c6d70699b469bd597363fbff2f1" }, "downloads": -1, "filename": "lda-0.3.2-cp34-none-win_amd64.whl", "has_sig": true, "md5_digest": "d88a9fd5f4c4bab26100475308b48b25", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 299996, "upload_time": "2014-11-01T20:55:22", "url": "https://files.pythonhosted.org/packages/6b/2b/f29be890adee1eae37efa19a9bb1142c27c766389b46fdf040cc363eea53/lda-0.3.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "beb3afa9a0b336f965d0b0ea0d9faa22", "sha256": "7733984db46a43ee0b671245538588506e07b20e681a3f6b82cdb596a1294826" }, "downloads": -1, "filename": "lda-0.3.2.tar.gz", "has_sig": true, "md5_digest": "beb3afa9a0b336f965d0b0ea0d9faa22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253320, "upload_time": "2014-11-01T20:54:04", "url": "https://files.pythonhosted.org/packages/2c/94/b24834f311adb198c34d52973a595155bd0606ebc434c8d0d2e5527544bd/lda-0.3.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "cb808e959a306ee52b962d0b505d55cd", "sha256": "9085641d216033cc371661e3f5535ab4a89f5094f23f76bd55fa836b47b8ef37" }, "downloads": -1, "filename": "lda-1.0.0.tar.gz", "has_sig": true, "md5_digest": "cb808e959a306ee52b962d0b505d55cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211406, "upload_time": "2015-03-11T17:04:16", "url": "https://files.pythonhosted.org/packages/9b/59/efd3db53b34eec2e68e3b19700c7373eb7350b0b926ccf2b9ce589f226fa/lda-1.0.0.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "51451f938ac0bd15018675d2079fa895", "sha256": "2e0818105688a2febb0290b7a85a69212396a14422e64bb2fc4cc5d94e5e4f41" }, "downloads": -1, "filename": "lda-1.0.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "51451f938ac0bd15018675d2079fa895", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 377827, "upload_time": "2015-03-12T00:14:20", "url": "https://files.pythonhosted.org/packages/77/e0/7f350cd66d9244fa335825d47bd5ce62ddc935e4f2c3a1f3f2d97dd6cb76/lda-1.0.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fc5f052ded9d028b1b2e4c0b1efdf798", "sha256": "3203648562a5881202da3141307ad450bd982641ee4840fe0eff92681a9e5cc8" }, "downloads": -1, "filename": "lda-1.0.2-cp27-none-win32.whl", "has_sig": true, "md5_digest": "fc5f052ded9d028b1b2e4c0b1efdf798", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 295440, "upload_time": "2015-03-12T13:28:46", "url": "https://files.pythonhosted.org/packages/2f/4c/c7925a4fe62738107f63a2819a8b2eef99ff5a9dec83e34d56311e928ca6/lda-1.0.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2355806e44fab7f45d613f085e6c51ed", "sha256": "3b7d1ab144bb01f27d587a02eddbf926d1e2aa1bebe565d766ed64511524a8f3" }, "downloads": -1, "filename": "lda-1.0.2-cp27-none-win_amd64.whl", "has_sig": true, "md5_digest": "2355806e44fab7f45d613f085e6c51ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 303066, "upload_time": "2015-03-12T13:28:50", "url": "https://files.pythonhosted.org/packages/ef/63/c7dbedb8d71b355d99f5df06780a5d33bb3c83e248f0896b50aa0afb6508/lda-1.0.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4cadbaa05cfb41bfc6d28edb47ae0525", "sha256": "2b5d23cc04ba4b39cb35b197a58490089a09d184146886037d2a36b2462dc6a0" }, "downloads": -1, "filename": "lda-1.0.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "4cadbaa05cfb41bfc6d28edb47ae0525", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 378263, "upload_time": "2015-03-12T13:28:53", "url": "https://files.pythonhosted.org/packages/de/e7/b4c4d566a664823f694fd1623fc5ac904287b0a986a1ab2cbee1abe9e26d/lda-1.0.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4a7cc38d8913851528edb9712123d7a", "sha256": "7d96fab6365de1a9b546b273dcee35921ddebef870eefe077f7ab5f46fa594b6" }, "downloads": -1, "filename": "lda-1.0.2-cp33-none-win32.whl", "has_sig": true, "md5_digest": "c4a7cc38d8913851528edb9712123d7a", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 295802, "upload_time": "2015-03-12T13:28:55", "url": "https://files.pythonhosted.org/packages/f5/0f/da34f1d465e165060a93892336656a489a97ff1f422b7624d2b43ff57d38/lda-1.0.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "64f68caa8fab70ea9030c54f67ae368a", "sha256": "5ac8caccb6fb1967549990dc998de6397808e9ecbd6072612f1f50805e7a5101" }, "downloads": -1, "filename": "lda-1.0.2-cp33-none-win_amd64.whl", "has_sig": true, "md5_digest": "64f68caa8fab70ea9030c54f67ae368a", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 302100, "upload_time": "2015-03-12T13:28:58", "url": "https://files.pythonhosted.org/packages/26/1b/6c33c001dc2f68b812e0aa762b5c57a726283c1431a06b1b8ad53d316fdf/lda-1.0.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "966030e64f878e4fac8d4db63b14d045", "sha256": "88baa956d836ef3d37886d963f19c7996535c644ed0dfbbf4d5aa17a6d931b5d" }, "downloads": -1, "filename": "lda-1.0.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "966030e64f878e4fac8d4db63b14d045", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 378531, "upload_time": "2015-03-12T13:29:01", "url": "https://files.pythonhosted.org/packages/ee/e5/efaf9317430dc9761c3e5e0dd87af8597625c73c59aeb49562f85c010162/lda-1.0.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "26adf99521d2f61488404074c8744185", "sha256": "2c725ad2dbce5204ed2aa84d5eee72a42b2d2551b383c073d2b3ca0467e05235" }, "downloads": -1, "filename": "lda-1.0.2-cp34-none-win32.whl", "has_sig": true, "md5_digest": "26adf99521d2f61488404074c8744185", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 295844, "upload_time": "2015-03-12T13:29:04", "url": "https://files.pythonhosted.org/packages/f5/22/b229663c4d5b11a916a8616cd6461c75583ca968291e70cc2e7415921805/lda-1.0.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e904ad3caa56d1e50c5b1cc1caff33b1", "sha256": "5e55359f4f679dff264cdfc192f8fafa9dd0732e3f981b08d0513d836c12d303" }, "downloads": -1, "filename": "lda-1.0.2-cp34-none-win_amd64.whl", "has_sig": true, "md5_digest": "e904ad3caa56d1e50c5b1cc1caff33b1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 302212, "upload_time": "2015-03-12T13:29:07", "url": "https://files.pythonhosted.org/packages/1c/fe/725a0d325003eca493bd12c5db48bc6e57a6ddedd140d2d317b5f51959d5/lda-1.0.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ff2019927bee0a4d5d194b3d62f1dee6", "sha256": "bc5a4d4906444f50dc84b9c0908594f535feeb37c423f2c0c838a62231c00316" }, "downloads": -1, "filename": "lda-1.0.2.tar.gz", "has_sig": true, "md5_digest": "ff2019927bee0a4d5d194b3d62f1dee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 292505, "upload_time": "2015-03-11T18:57:28", "url": "https://files.pythonhosted.org/packages/d1/6e/2da00fe292ef6ae4d529ab97c6772f62bc4bd427469347e629f65c43ec97/lda-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "8fb15885a5f06402d7621b172a92ad9d", "sha256": "a231293051b140c71beba78c49b18fb6e008a1994e9ab3382a4354b58d0a0237" }, "downloads": -1, "filename": "lda-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "8fb15885a5f06402d7621b172a92ad9d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 384726, "upload_time": "2015-11-08T17:47:05", "url": "https://files.pythonhosted.org/packages/2c/d6/d38881467f42fa34f616d970ed066bb2bfc71dc25a22fc49c8190771efbc/lda-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83ad8ee98d7946fa926e86ec42675aad", "sha256": "fb6fc6df2595a1ac4cbed457f605887e5d0dd1c49120564b3b90386b000524bb" }, "downloads": -1, "filename": "lda-1.0.3-cp27-none-win32.whl", "has_sig": true, "md5_digest": "83ad8ee98d7946fa926e86ec42675aad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 300379, "upload_time": "2015-11-08T17:29:59", "url": "https://files.pythonhosted.org/packages/42/df/949e67280d4b4b52d3c9b87303f04a42fe30c380ace37eca0f3ed366f097/lda-1.0.3-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "129a4adeaaee5a46a33c0d84be6377e1", "sha256": "5e6638dd126b2e2a65d18629f6c4aa9ee896033825b197638715ddc6278f74d1" }, "downloads": -1, "filename": "lda-1.0.3-cp27-none-win_amd64.whl", "has_sig": true, "md5_digest": "129a4adeaaee5a46a33c0d84be6377e1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 308222, "upload_time": "2015-11-08T17:30:18", "url": "https://files.pythonhosted.org/packages/03/f4/d36dd45d82e17b01598102039af9b65234dca9a324b1d8abac11d50b7669/lda-1.0.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5b592ca419edf44598a99cf3fde098a0", "sha256": "127f873a0119da810ea8a5f31fa07c707642b6dc19ac091e3d7d12f3ea4ea807" }, "downloads": -1, "filename": "lda-1.0.3-cp33-none-win32.whl", "has_sig": true, "md5_digest": "5b592ca419edf44598a99cf3fde098a0", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 300717, "upload_time": "2015-11-08T17:30:30", "url": "https://files.pythonhosted.org/packages/a2/4b/e3158a07a76fb5612a2ea33a32e2fd10553513cc3d914ff0a87805e7d4e1/lda-1.0.3-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "26ebbc41e6cb283f86868c468b42a662", "sha256": "4fc59e8ad02e873e96f4219529ec0a394b3762764c454d2fd329dd15176e8fc1" }, "downloads": -1, "filename": "lda-1.0.3-cp33-none-win_amd64.whl", "has_sig": true, "md5_digest": "26ebbc41e6cb283f86868c468b42a662", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 307311, "upload_time": "2015-11-08T17:30:41", "url": "https://files.pythonhosted.org/packages/46/3d/2bedd3ea68f69f529825b9d924323df0573295ce7ee88894485742f96fc1/lda-1.0.3-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6df8c995aa359cd5bf2fb4cd32a2d139", "sha256": "3c02d395ac4e503f608134a0839d80012028754bfa09f750766865034d6f9dc3" }, "downloads": -1, "filename": "lda-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "6df8c995aa359cd5bf2fb4cd32a2d139", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 385861, "upload_time": "2015-11-08T17:47:21", "url": "https://files.pythonhosted.org/packages/e5/cc/8440bde5b2cc28242decd9f17aa9726c580f32105ee13d65c4713c97c04e/lda-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "661ee4166205dc3296316c33b01dad5f", "sha256": "c626eff25a4ee1e97d9c87f97a059c5912102b999c2cb89999883ed3d1f2c4ef" }, "downloads": -1, "filename": "lda-1.0.3-cp34-none-win32.whl", "has_sig": true, "md5_digest": "661ee4166205dc3296316c33b01dad5f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 300721, "upload_time": "2015-11-08T17:30:59", "url": "https://files.pythonhosted.org/packages/da/5a/2ab017b0dd3e3e8316f9dde5f4f6a44fbc565a40d719a6f896f6c9877402/lda-1.0.3-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b1dd7384bf4c46cbce452910a1d9bd14", "sha256": "30da8c37152853031a1b34c5daad265c2ad8002a7be212cb3f2c116e9d7f9731" }, "downloads": -1, "filename": "lda-1.0.3-cp34-none-win_amd64.whl", "has_sig": true, "md5_digest": "b1dd7384bf4c46cbce452910a1d9bd14", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 307102, "upload_time": "2015-11-08T17:31:14", "url": "https://files.pythonhosted.org/packages/26/bc/a9e725d5da9f62b73b9af2b01a730410ab199cfa9f056070fd3148a9ac55/lda-1.0.3-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c895c4c9e748eb714b094c8007c13562", "sha256": "940ad1cfccaddc98005be0d05f9fe9af9a8d12f08feee4292b01273a4869e443" }, "downloads": -1, "filename": "lda-1.0.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "c895c4c9e748eb714b094c8007c13562", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 385897, "upload_time": "2016-03-01T01:55:30", "url": "https://files.pythonhosted.org/packages/9d/0f/cee351de2253787551340176066527cb15a4d44db3d9eab230318456439a/lda-1.0.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e4aa4a30f17258195c65d654bd8658dc", "sha256": "08f7af299bfd589406e49983f7d4759c2d54e2ab2ee8d3563cbfe1fb493ddb10" }, "downloads": -1, "filename": "lda-1.0.3-cp35-none-win32.whl", "has_sig": true, "md5_digest": "e4aa4a30f17258195c65d654bd8658dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 299091, "upload_time": "2015-11-08T17:31:27", "url": "https://files.pythonhosted.org/packages/d2/3a/c26f86362de5416adaf4986e6ed894982484061e083af70ec76b13437922/lda-1.0.3-cp35-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "91b18cbf4f8955c01eebf3678dcf0157", "sha256": "19d049775520dbed5c526471ea088cc12d0c4f0aab2d718e108f8865ad986f6e" }, "downloads": -1, "filename": "lda-1.0.3-cp35-none-win_amd64.whl", "has_sig": true, "md5_digest": "91b18cbf4f8955c01eebf3678dcf0157", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 308050, "upload_time": "2015-11-08T17:31:38", "url": "https://files.pythonhosted.org/packages/9f/80/6435d93632c0b49d821d10b79df56089b7ac99e920772336cede6a93c468/lda-1.0.3-cp35-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "17efa4f18d1aa5b08997db709d7ab068", "sha256": "2366e15eb25f68b6d8dd224dfb2cf0caf981f0cb958e4ac0ab0276588365e5bf" }, "downloads": -1, "filename": "lda-1.0.3.tar.gz", "has_sig": true, "md5_digest": "17efa4f18d1aa5b08997db709d7ab068", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301860, "upload_time": "2015-11-08T17:31:48", "url": "https://files.pythonhosted.org/packages/41/e5/f93d576c5bee91e22d4761eb4b88f613b70bd0f9ceedd50289b86f249c2b/lda-1.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "fa28fecb4c9a1fef770272a1c705658a", "sha256": "ffb3aeeec713c442df415a0fcb20fa331808763fdcecb032196269edb2253bf6" }, "downloads": -1, "filename": "lda-1.0.3.win32-py2.7.exe", "has_sig": true, "md5_digest": "fa28fecb4c9a1fef770272a1c705658a", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 500005, "upload_time": "2015-11-08T17:31:58", "url": "https://files.pythonhosted.org/packages/a6/74/3a0be0865b76eb5b5f12a144ac598e2b2b9eb91e775ab2f7a9337d019c9b/lda-1.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "606ffd50c3b607a7715eff203fe3ec6c", "sha256": "95a124203958efba7eb13a00dc1cf20f9d81dd2ffad7d3ac0a24b204c35790ac" }, "downloads": -1, "filename": "lda-1.0.3.win32-py3.3.exe", "has_sig": true, "md5_digest": "606ffd50c3b607a7715eff203fe3ec6c", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 495253, "upload_time": "2015-11-08T17:32:15", "url": "https://files.pythonhosted.org/packages/25/ad/78607a337d165c4e3025473a7415cd085761085f41d9da2912f2ac5bd081/lda-1.0.3.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "843588d337dd6b7946df3777573e2f28", "sha256": "c59edfb5a946bbbfa6b22e555b7b300bb0985b933724ef59716cfe3793f79e7e" }, "downloads": -1, "filename": "lda-1.0.3.win32-py3.4.exe", "has_sig": true, "md5_digest": "843588d337dd6b7946df3777573e2f28", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 495254, "upload_time": "2015-11-08T17:32:25", "url": "https://files.pythonhosted.org/packages/f9/35/2a1bb2f6afcf5bfddb25eb7c769e5a4d867f77b7a3e451018bd0c79f70cc/lda-1.0.3.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "5772121abfcdbd687660b90bef61b569", "sha256": "2bcc894aa1d8ed3441ea559f7b02927b30635a5de361cde9d71ede5bdf4b7135" }, "downloads": -1, "filename": "lda-1.0.3.win32-py3.5.exe", "has_sig": true, "md5_digest": "5772121abfcdbd687660b90bef61b569", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 431662, "upload_time": "2015-11-08T17:32:34", "url": "https://files.pythonhosted.org/packages/f3/f5/7ffcc274dc926dbb54269c2e3b1a36a2fe4b6cfd2e0a3d7fac6c56056130/lda-1.0.3.win32-py3.5.exe" }, { "comment_text": "", "digests": { "md5": "771717a0168fcf1a534aa938b901603b", "sha256": "4c5f922387b79d1081145a11fd3b6603554396be9de604c4629302ca88929291" }, "downloads": -1, "filename": "lda-1.0.3.win-amd64-py2.7.exe", "has_sig": true, "md5_digest": "771717a0168fcf1a534aa938b901603b", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 535493, "upload_time": "2015-11-08T17:32:45", "url": "https://files.pythonhosted.org/packages/f1/b0/5feabdb3c5e4a9f3fd7784f2bece25db6a556aeb91bb53a35d7048f9c5e1/lda-1.0.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "064d88c12ff5093e7589be49a362b8af", "sha256": "d4d730df820e91348a289f741a800d77d5c249647855da5fe3e380fdfb3c4d83" }, "downloads": -1, "filename": "lda-1.0.3.win-amd64-py3.3.exe", "has_sig": true, "md5_digest": "064d88c12ff5093e7589be49a362b8af", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 533075, "upload_time": "2015-11-08T17:32:56", "url": "https://files.pythonhosted.org/packages/49/3f/89d423420283c8474de7aad10b5dbba1ef9068eeeb5f10bf306602ea0882/lda-1.0.3.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "8830b46a9560583cdd2772178e9311d0", "sha256": "912a7082d25cacea3f86ad5373f7ce0bf83502e36019cce46d7d82ac3f57ef2d" }, "downloads": -1, "filename": "lda-1.0.3.win-amd64-py3.4.exe", "has_sig": true, "md5_digest": "8830b46a9560583cdd2772178e9311d0", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 532864, "upload_time": "2015-11-08T17:33:05", "url": "https://files.pythonhosted.org/packages/d3/4e/bc6a41399542ca7f3e2b7550847d56bffb15401d23d400d5be9b9fc58387/lda-1.0.3.win-amd64-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "56a9ce4c7904dd4601f3ce6ef70c35d7", "sha256": "6cfa4f9ce204fa0be4c62537459701fb9bbb9ce37c473894f7ca93eaf6c7b9db" }, "downloads": -1, "filename": "lda-1.0.3.win-amd64-py3.5.exe", "has_sig": true, "md5_digest": "56a9ce4c7904dd4601f3ce6ef70c35d7", "packagetype": "bdist_wininst", "python_version": "3.5", "requires_python": null, "size": 447784, "upload_time": "2015-11-08T17:33:16", "url": "https://files.pythonhosted.org/packages/dc/59/b4daaf05115c74730d5a377ab2770635a94636b8b2080f3c179dac67e91f/lda-1.0.3.win-amd64-py3.5.exe" } ], "1.0.3.dev132": [ { "comment_text": "", "digests": { "md5": "774d5099ee17a0ac53b0bd3e818b189d", "sha256": "3c7c03278166bcea15c276b5abf2d0f54d4d8bbda51472278ace8d1d532ff892" }, "downloads": -1, "filename": "lda-1.0.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "774d5099ee17a0ac53b0bd3e818b189d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486458, "upload_time": "2016-07-13T16:28:55", "url": "https://files.pythonhosted.org/packages/c8/94/743b2cda664b5d8339fb2ee4623b2c4c9555d6e8ca04309d9dc0e59d6b2f/lda-1.0.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cc52d4f81e99dc6b60c6c94fc5f80b71", "sha256": "5ab4bbd8ff2c32ae5e870214673067f7049544babcfa6b37d3254c8ed77f0d75" }, "downloads": -1, "filename": "lda-1.0.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "cc52d4f81e99dc6b60c6c94fc5f80b71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486466, "upload_time": "2016-07-13T16:29:42", "url": "https://files.pythonhosted.org/packages/56/83/03062319cfc0572fe01f8a7b77ca3902fcc41e2e4a6cffafc170cffff1d7/lda-1.0.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2b87bfc57feb6bf5e38d7896958c7152", "sha256": "c26fe19d6b92ca261385d8dae4d700d8a476e3d14477aaefaa10b286072eff9d" }, "downloads": -1, "filename": "lda-1.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2b87bfc57feb6bf5e38d7896958c7152", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 503963, "upload_time": "2016-07-13T16:29:51", "url": "https://files.pythonhosted.org/packages/0e/09/846f4c186540389204961123f0ce9566c166a5cd1955a3e84bf8eb1f2a5d/lda-1.0.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "27650972bd7a53e9065b521106d3ae35", "sha256": "45038a47c3159cb57ac623496a757320c4fdf7abb339162b73eb00359372fd1f" }, "downloads": -1, "filename": "lda-1.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "27650972bd7a53e9065b521106d3ae35", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 501019, "upload_time": "2016-07-13T16:30:00", "url": "https://files.pythonhosted.org/packages/65/1b/efb0b53297bd6b8b1f073a4f0ae8263ba8bc7c58e6938d4a6b5751f76b11/lda-1.0.3-cp35-cp35m-manylinux1_x86_64.whl" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "75515ee470c580e29c922264221cea12", "sha256": "4c967a90f997a261e76754b289753fdb929c04b2a917df259aec38456e4ce161" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "75515ee470c580e29c922264221cea12", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 373479, "upload_time": "2016-07-15T02:19:37", "url": "https://files.pythonhosted.org/packages/06/dd/2cf48ddfe299d7cc5664b828c08c1524dce746b6fa00799c40c32f6e59a1/lda-1.0.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "410d07d3375f4dfaa6a49988d02b2574", "sha256": "0e1070f387ad0b4ceb9bbc7d3c6e032aa15a80cef5f9490e139e97d5d0341bca" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "410d07d3375f4dfaa6a49988d02b2574", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 470119, "upload_time": "2016-07-15T02:19:46", "url": "https://files.pythonhosted.org/packages/71/b0/2b7d6201b36bd23b732febfdc967de2a365cc5b521456c19332d01f295ce/lda-1.0.4-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6751fac3b9d15a74385213e2f4de8e0a", "sha256": "faf35a8032a5d408e96ad07144bb6a79c68e8f3af3e3b864fba15a49fe28dc66" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6751fac3b9d15a74385213e2f4de8e0a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486374, "upload_time": "2016-07-15T02:19:54", "url": "https://files.pythonhosted.org/packages/1e/d5/f4544477b2a5d15a6d3b1b69886b67e24f50525346de1a5fa686fbb0b7be/lda-1.0.4-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8ffd214ea0ff3a1aafb6bcef39cd3b63", "sha256": "83ba5b5d1c51bbd00a52f79f7513dc7c25ed466894ce509c84aefe4edcc3b68b" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "8ffd214ea0ff3a1aafb6bcef39cd3b63", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 470132, "upload_time": "2016-07-15T02:20:01", "url": "https://files.pythonhosted.org/packages/4d/cd/d52c082994c379e409b8d9eec8296e8afac83cdb0e4ceaf8fe09b39b04fa/lda-1.0.4-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5efc7bbde60de4e732407923a770ddd6", "sha256": "7fa65b70bb98e675339a72290bf16538781aca73b23cde7d64b0949b59929de0" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5efc7bbde60de4e732407923a770ddd6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486384, "upload_time": "2016-07-15T02:20:08", "url": "https://files.pythonhosted.org/packages/ce/16/a12c100551729098307820d650a501bb699ba6ce17f3eeb7e34f9aa4760e/lda-1.0.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d4fbd77ae2c4927f7fc84f0f1b72ef0", "sha256": "69cc2e39ce4c41366094fa4bae1955769c1bc71f04b769f23e6b1c9644f7c4b2" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "2d4fbd77ae2c4927f7fc84f0f1b72ef0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 304503, "upload_time": "2016-07-15T02:20:16", "url": "https://files.pythonhosted.org/packages/95/cc/6cd3064181161979c987eafe7e17b1f767a8faa3cd07e66af6f9de0eac40/lda-1.0.4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3fe94b24fe8a010d762273f4c8c1b689", "sha256": "109f7149a3caa379e9b79bb6f842a9c602d738a02dff8073dd671606f2c01e65" }, "downloads": -1, "filename": "lda-1.0.4-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "3fe94b24fe8a010d762273f4c8c1b689", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 313493, "upload_time": "2016-07-15T02:20:22", "url": "https://files.pythonhosted.org/packages/77/31/b98313d1c9dcbd5999b7e9cab029ea29c12a7085bf4c5879b86e9870f519/lda-1.0.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3d714d7f9e5b3963f527cd6a8a8916a4", "sha256": "67d8d53ded918260c1c26d61d9cf3e5ad17d1b1f3788af229651556f2e92cf95" }, "downloads": -1, "filename": "lda-1.0.4-cp33-cp33m-win32.whl", "has_sig": true, "md5_digest": "3d714d7f9e5b3963f527cd6a8a8916a4", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 304819, "upload_time": "2016-07-15T02:20:29", "url": "https://files.pythonhosted.org/packages/81/c5/a87dee951f96c200c3ba688b75bbf8e40145d167a0fec92fdde76fa4b045/lda-1.0.4-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3c1124ebd3454d3fda53287e78f2dfbf", "sha256": "8cf51efd0bc71c9ff9dd10acff1aa362850dd744ce61cbadf0efc937f1bf1495" }, "downloads": -1, "filename": "lda-1.0.4-cp33-cp33m-win_amd64.whl", "has_sig": true, "md5_digest": "3c1124ebd3454d3fda53287e78f2dfbf", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 312409, "upload_time": "2016-07-15T02:20:36", "url": "https://files.pythonhosted.org/packages/31/81/bc80f82c48d60726a654e64ff438f9c2c51b932e49ae39d2082000a8ea8d/lda-1.0.4-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a85e7fcd78774d8378ea7730a8335948", "sha256": "6fc9aefe128412e86459543fc77fdb3351864b4e7e182a155a334afc8550ccd4" }, "downloads": -1, "filename": "lda-1.0.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "a85e7fcd78774d8378ea7730a8335948", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 373512, "upload_time": "2016-07-15T02:20:44", "url": "https://files.pythonhosted.org/packages/36/08/b42b072117998fc153380b129943562dd8aa124f41f23f2c572454376f01/lda-1.0.4-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b6b912def6f60219ab9017b491026944", "sha256": "32f653af1d8db67a2fdad5e62c031cc2d2d53798baa5325a8e72bcf78a06fad7" }, "downloads": -1, "filename": "lda-1.0.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "b6b912def6f60219ab9017b491026944", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 486937, "upload_time": "2016-07-15T02:20:51", "url": "https://files.pythonhosted.org/packages/3d/f4/1c9451be4afd6ddda6fec973fcbebddfb18fd9a0bcb0551e25fcc9f5b015/lda-1.0.4-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "83af12364e59b5c802bc57d9f601b1d4", "sha256": "8538275d8cc67d211007175ff1210872a93e9a687bb82bb84fd66bd099c41f3a" }, "downloads": -1, "filename": "lda-1.0.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "83af12364e59b5c802bc57d9f601b1d4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 503879, "upload_time": "2016-07-15T02:21:00", "url": "https://files.pythonhosted.org/packages/6e/1f/e938a98a6b453ec20f9a4e3e356e133b64e99c75113a71753411aebeae6d/lda-1.0.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "72fdeb8c5a67eef65dda1a4eb7cab6b2", "sha256": "7fb1dd267ff13f6c09dc6974f7acf106b3d3a4770306a4bd2f73fb32658c61cb" }, "downloads": -1, "filename": "lda-1.0.4-cp34-cp34m-win32.whl", "has_sig": true, "md5_digest": "72fdeb8c5a67eef65dda1a4eb7cab6b2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 304850, "upload_time": "2016-07-15T02:21:10", "url": "https://files.pythonhosted.org/packages/9d/8a/78421ea1d2e253481eeaf7ace30557f811ffba90fcec6a90faacf4f0c755/lda-1.0.4-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e6d5061d0a78f913219ed75027342cd2", "sha256": "43cf5f16dfc806812c2c98c95f959d48e565c865a6eab0b4df13faa816f9693f" }, "downloads": -1, "filename": "lda-1.0.4-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "e6d5061d0a78f913219ed75027342cd2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 312375, "upload_time": "2016-07-15T02:21:17", "url": "https://files.pythonhosted.org/packages/0b/28/7da9f1bfb9add4612d8da030478af7570eafce6dde9c8ce996b007e22541/lda-1.0.4-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cfcdf1bacf081765bcd1671dd8302ffd", "sha256": "cf03c5f5335e6f53f14b2ee6aa5b199cede30f7ff07cc36bf13bbb3fc11b267a" }, "downloads": -1, "filename": "lda-1.0.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "cfcdf1bacf081765bcd1671dd8302ffd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 373345, "upload_time": "2016-07-15T02:21:25", "url": "https://files.pythonhosted.org/packages/4b/22/d26d0dddb04e3840ca60f84a258235370fd2a32b2e0a7edc6da286780682/lda-1.0.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "69c08ec8ec691160d136c33d00278e7b", "sha256": "7a6e78f8e38698e3d3821a0b64c22e4d8058d229db2d9c3b8d0370673b1d8dc1" }, "downloads": -1, "filename": "lda-1.0.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "69c08ec8ec691160d136c33d00278e7b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 484409, "upload_time": "2016-07-15T02:21:33", "url": "https://files.pythonhosted.org/packages/db/15/f4dcd339445aea0a3fbe820092048ca8f063d475968a0e1ce2432d6aa944/lda-1.0.4-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b54954c66abf225dac55db5d1607e5cf", "sha256": "cc4512fc1893e690be0f896f51dba628b62b5404d7d278ae325a8e950a58a1dd" }, "downloads": -1, "filename": "lda-1.0.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b54954c66abf225dac55db5d1607e5cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 500934, "upload_time": "2016-07-15T02:21:41", "url": "https://files.pythonhosted.org/packages/9f/fd/93134140a52757521076a0c0e0fbdbd939137bdc3182979600076fc870d5/lda-1.0.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "446cfc586e4cfe7a7b71ef47a26b195b", "sha256": "560447f6b78b82fea7d9956e13c788484bebbf897f164a39f629d0e4bf9e753c" }, "downloads": -1, "filename": "lda-1.0.4-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "446cfc586e4cfe7a7b71ef47a26b195b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 303352, "upload_time": "2016-07-15T02:21:49", "url": "https://files.pythonhosted.org/packages/78/80/7f40d9b920c523019c90e120084dbc318320132f3426704f767ea6c07a55/lda-1.0.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "44686bed980f0b7184b83b9b1cceeea9", "sha256": "688581daf2b22035badd5906a920f8b5430f6b53197ce0d979f7180b5f896948" }, "downloads": -1, "filename": "lda-1.0.4-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "44686bed980f0b7184b83b9b1cceeea9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 313314, "upload_time": "2016-07-15T02:21:56", "url": "https://files.pythonhosted.org/packages/5f/7d/2a11b684ede4d24d69a3695da662e7916102ac8399b4ab6b11a8c5e9108d/lda-1.0.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cb35961edd6f23e5d856404fd502ec93", "sha256": "4cd08d032df5a3db0db3e642d2732b1c02489d73f2e45b5e0f346b3a53734393" }, "downloads": -1, "filename": "lda-1.0.4.tar.gz", "has_sig": true, "md5_digest": "cb35961edd6f23e5d856404fd502ec93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300002, "upload_time": "2016-07-15T02:19:24", "url": "https://files.pythonhosted.org/packages/f7/bd/5aac0ff80b2fcb5e0db35132038a48e90024d7040c7b4280b280be8a6e76/lda-1.0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "c05c6fcb871eb75d66e674a9757c9f5a", "sha256": "c1e136268fe47aef8cb42ca526ba3c2bc42e3b7cb63766bdc9ac32c1841e82fb" }, "downloads": -1, "filename": "lda-1.0.4.zip", "has_sig": true, "md5_digest": "c05c6fcb871eb75d66e674a9757c9f5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 316501, "upload_time": "2016-07-15T02:19:09", "url": "https://files.pythonhosted.org/packages/39/88/79ccc5dd052f998a4948b6933678813a3e995feaf535cf57fe88a392c630/lda-1.0.4.zip" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "a66b8eb40411a7d3a3510d87829afed2", "sha256": "3a6fba535e41899dc0f8256b5938d9ac3902fe3d8bc2b1cef8e892565a897d6e" }, "downloads": -1, "filename": "lda-1.0.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "a66b8eb40411a7d3a3510d87829afed2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 387497, "upload_time": "2017-06-18T21:58:24", "url": "https://files.pythonhosted.org/packages/e9/b5/fb47c326864e14ab2fb97ee7dc2d039656df4d4d09c0282acdd253899b6e/lda-1.0.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a8a622f6dff643de72031bd15ae7de63", "sha256": "fccdcda2c8df1c81dec76c421ce8bc6ac1bf723429a3eadf59a2fba736f449b8" }, "downloads": -1, "filename": "lda-1.0.5-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "a8a622f6dff643de72031bd15ae7de63", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 477139, "upload_time": "2017-06-18T21:58:26", "url": "https://files.pythonhosted.org/packages/07/15/a4f66cd9ca5420829438301e8edece609795bb7f2d50abbd50193cda58c0/lda-1.0.5-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6cc770b1757db2300d4af4f7552f94b8", "sha256": "e2873be69f1d69a0db0d9ccb63b06d098a233337561d349d410a4d567306dd64" }, "downloads": -1, "filename": "lda-1.0.5-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6cc770b1757db2300d4af4f7552f94b8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 493103, "upload_time": "2017-06-18T21:58:29", "url": "https://files.pythonhosted.org/packages/ce/61/a8d8b4a2926477e940cb8b54ed96342fe5c13be53c68890633665e2872e9/lda-1.0.5-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dd0442d81ed1902084f4f6a0724c08c6", "sha256": "3dbd1e1a88e4512fccfae02571cbae874f297033ad838b58adac29ca5751d7cf" }, "downloads": -1, "filename": "lda-1.0.5-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "dd0442d81ed1902084f4f6a0724c08c6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 477159, "upload_time": "2017-06-18T21:58:32", "url": "https://files.pythonhosted.org/packages/fc/e3/4e7943cfd08dbe8a736e178521993174b631a3fb67da7f0c608bdab4361b/lda-1.0.5-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "14f1a962349580e0a72aaa4fcd67f306", "sha256": "b327debd97a11f562478e37b84a0f4c0e5b925cbe7d497c10d03d145000734ef" }, "downloads": -1, "filename": "lda-1.0.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "14f1a962349580e0a72aaa4fcd67f306", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 493143, "upload_time": "2017-06-18T21:58:34", "url": "https://files.pythonhosted.org/packages/f4/98/798fca1d7afc5c39574fe524c6b80b69f1bc1961938f76add8a00ba7024a/lda-1.0.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "95bb3bc176ab1baf636884b2f038de99", "sha256": "8c371225d33291d6afe1c068e15acb7dccc040f583def6d8bdb27b1ff085e726" }, "downloads": -1, "filename": "lda-1.0.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "95bb3bc176ab1baf636884b2f038de99", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 386941, "upload_time": "2017-06-18T21:58:37", "url": "https://files.pythonhosted.org/packages/b1/8f/66ff8c2da9ca554f3eb3859e9b80f6f0133671bdc8c64e2ecf9f69a2b7b1/lda-1.0.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b34840df049a67e1a8a9c5437815019", "sha256": "92c747c7f5afe0b743ec9c3b6b7498bc430cf44ef3841e77bb367ddcd0b7f4c7" }, "downloads": -1, "filename": "lda-1.0.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "0b34840df049a67e1a8a9c5437815019", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 494559, "upload_time": "2017-06-18T21:58:39", "url": "https://files.pythonhosted.org/packages/bd/2f/ab5021d9d2f9070fc335df8913858d7ff8292e8ff15be3a7fa16564380ea/lda-1.0.5-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ffe18b222a2b551057ca3bc96e5b33e9", "sha256": "40fa640cd459a3a981dc2f418f16cc831839cce77a5965f719c1b09e744a24c7" }, "downloads": -1, "filename": "lda-1.0.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ffe18b222a2b551057ca3bc96e5b33e9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 511326, "upload_time": "2017-06-18T21:58:42", "url": "https://files.pythonhosted.org/packages/72/5e/eb5ad5523336eedd184cb8bb909a028d822f538c128c0666db5bebdf6da3/lda-1.0.5-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a24b349bade1b2aa63f623460f51e215", "sha256": "f2509ff4ca6c7bd8fc70bad02a988c6b0532b91a87f195af2c63abe06ead2da1" }, "downloads": -1, "filename": "lda-1.0.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "a24b349bade1b2aa63f623460f51e215", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 386964, "upload_time": "2017-06-18T21:58:44", "url": "https://files.pythonhosted.org/packages/33/3b/71ea5849031e219129dc37ca63826107ee2b616e52118559402a0755f33d/lda-1.0.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "16b5d612a7cf3ba0715c583853940218", "sha256": "a85f6452f3a84cfbd32070722e17157f2f9af294098e4911a05c9954e1dd0771" }, "downloads": -1, "filename": "lda-1.0.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "16b5d612a7cf3ba0715c583853940218", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 491216, "upload_time": "2017-06-18T21:58:47", "url": "https://files.pythonhosted.org/packages/7c/bf/df71bf8ebe25931d3ebe5c0a3519eca3dc056da2d270b4504c99863944d2/lda-1.0.5-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "277628d8ec9809e373924f0f5d7cbd7c", "sha256": "6f6cbcac6596b5bf711e5fd4fde17ce3024afe1a00e7401fb6abe2e389c4495b" }, "downloads": -1, "filename": "lda-1.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "277628d8ec9809e373924f0f5d7cbd7c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 508346, "upload_time": "2017-06-18T21:58:49", "url": "https://files.pythonhosted.org/packages/31/95/91c8de340a9d00322d9b2d81ef9ffac9afc116e8a19ac501c7df55fa0d73/lda-1.0.5-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "76bf8b94167a13798ee2ee9c4901bb70", "sha256": "97bac1d8afbc9c1e4ed5740b365d0d83ace2577503f7a47fc6cf838aa83eeaa3" }, "downloads": -1, "filename": "lda-1.0.5-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "76bf8b94167a13798ee2ee9c4901bb70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 306892, "upload_time": "2017-06-18T21:58:53", "url": "https://files.pythonhosted.org/packages/b6/6b/8d466feef37c60d61259e32ac18c1dca63ffe3bbdb99094420ba3099773a/lda-1.0.5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8284148fd064eee031ebbb79b7e0c5bd", "sha256": "348557c6c85ae0cd8a12b45619b8d776836d7d4db4361c3f761f70dca18c9d77" }, "downloads": -1, "filename": "lda-1.0.5-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "8284148fd064eee031ebbb79b7e0c5bd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 316881, "upload_time": "2017-06-18T21:58:56", "url": "https://files.pythonhosted.org/packages/bc/24/f75174e06bc0e9dd341b7410739a09c887d4c2daf92aeff44651787a6dba/lda-1.0.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "945fb2bb830f11a22068ce33b0a09bfe", "sha256": "e567e4eacf3d16ef56688d4f47fdffc2046fba027620c5fde6b08cb83619157c" }, "downloads": -1, "filename": "lda-1.0.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "945fb2bb830f11a22068ce33b0a09bfe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 387603, "upload_time": "2017-06-18T21:58:58", "url": "https://files.pythonhosted.org/packages/01/51/69116fb3d2957d08d36e9616717438ee08531109a14bc28dd94230aa34e9/lda-1.0.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "27b425996eb941bef65fcc600722a52d", "sha256": "7affb0c3c7224554b5647ad6a8ec5ca04eb56db8ceb932dcdebf911d0d7adb12" }, "downloads": -1, "filename": "lda-1.0.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "27b425996eb941bef65fcc600722a52d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 493014, "upload_time": "2017-06-18T21:59:00", "url": "https://files.pythonhosted.org/packages/65/e0/ec70588662205e1e427485a7d33fd5190da4d31fa21748a56ccfbcbb2edb/lda-1.0.5-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "c08bf7552813b720cd4b11569a299a96", "sha256": "1334aa8d45fb3b53675e17e9f341e1a0d626c55bb9acf52b69a5a854a24a88cc" }, "downloads": -1, "filename": "lda-1.0.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c08bf7552813b720cd4b11569a299a96", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 510509, "upload_time": "2017-06-18T21:59:03", "url": "https://files.pythonhosted.org/packages/17/ea/794c335c3909ef8c0d8f015ec9023e9847cf0b5216bf4e443a5a06f9ba0d/lda-1.0.5-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f047b6a6feb05707e6462b53c5765c1", "sha256": "6482bef73a1c366be33cab383ab83480614755fd0ed59060c2aa886fa3953166" }, "downloads": -1, "filename": "lda-1.0.5-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "4f047b6a6feb05707e6462b53c5765c1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 307171, "upload_time": "2017-06-18T21:59:07", "url": "https://files.pythonhosted.org/packages/67/61/40518f322f96582bfc6120eaad74a5182ffae1bcc39788027b71581622be/lda-1.0.5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "80cd3303289e2ecd3eb3b6dd92408e8c", "sha256": "bc28b77a3ad8cac585a4409dd854dc70a7e961c38e03ce8ab8f80cdebcc614b8" }, "downloads": -1, "filename": "lda-1.0.5-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "80cd3303289e2ecd3eb3b6dd92408e8c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 317124, "upload_time": "2017-06-18T21:59:09", "url": "https://files.pythonhosted.org/packages/f2/c7/c87a8f33302e814381e504f2c179d71bc1429ef8b41bd52726dbab3c21c1/lda-1.0.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b3f1864b2d82034667770fd2b2b640d6", "sha256": "4e1c12e3b533a0acd7871fd35fddde3386820705016ef22a8fe8bbcae9c16d1b" }, "downloads": -1, "filename": "lda-1.0.5.tar.gz", "has_sig": true, "md5_digest": "b3f1864b2d82034667770fd2b2b640d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303171, "upload_time": "2017-06-18T21:59:12", "url": "https://files.pythonhosted.org/packages/e9/8e/ab2f396fb9b8f9ac91722e5b5779effc1ecc336797151ffb2910e02fd9f2/lda-1.0.5.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7bc42b78a4296cd4b455f534f9644da8", "sha256": "d74df1ac5670be64b654fa212372e869f9b2dd61e574c2cb830632ab27383df2" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "7bc42b78a4296cd4b455f534f9644da8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 412872, "upload_time": "2018-09-09T22:30:10", "url": "https://files.pythonhosted.org/packages/67/a2/ada59002b2107892cb974b7f2441f2f9c9394ec7e642b7ca2997c640d36b/lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "093b66125247b430e3d6dcd3134951a0", "sha256": "340c24e3f98374480120eb4a2944f72fe9029b1ee66add3c5305ca5738454156" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "093b66125247b430e3d6dcd3134951a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 337806, "upload_time": "2018-09-09T22:30:22", "url": "https://files.pythonhosted.org/packages/c4/99/3462e0c9cf75f7a8149423231bede02c0a8a97da4907825fd676f55d2c53/lda-1.1.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1339f322f8324357d166b277971e72e8", "sha256": "ceca2692bb2e22225e42b09038482146c3455751fbbc4e5917ab3f554d88843d" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1339f322f8324357d166b277971e72e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 346707, "upload_time": "2018-09-09T22:30:29", "url": "https://files.pythonhosted.org/packages/d0/0e/9815a1ee27c390e4ef01d51949db27e060054591449e3073b06d51e4adcb/lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "201b01d5b980c18062e2849ebb1bbb71", "sha256": "48440bee469efc90547c06488d3c6f7cdecb8235cf437b4d6b1206f2e6cbda51" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "201b01d5b980c18062e2849ebb1bbb71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 337800, "upload_time": "2018-09-09T22:30:35", "url": "https://files.pythonhosted.org/packages/e2/42/ac265bc6271f7d1e5abf4c30b757b54d2558bea59da557f2b97d407e4dae/lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "985e5bdc5dc066bd0efe7e2753bdf0b7", "sha256": "42842b5b64a521bf971b9bdd0873936b9e3304e98260decc04c11293aff47b08" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "985e5bdc5dc066bd0efe7e2753bdf0b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 346713, "upload_time": "2018-09-09T22:30:42", "url": "https://files.pythonhosted.org/packages/7b/9f/4c429a39477333ca96a0a3a49de04e55756b6128be272c2600e31783f09a/lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "65be57aedee7d044cfe320402ef004f9", "sha256": "814a13c8e69583b937d6a420babba151ccd77cbbac26bbc6cdcc06048b34e9a3" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "65be57aedee7d044cfe320402ef004f9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 322931, "upload_time": "2018-09-10T00:16:50", "url": "https://files.pythonhosted.org/packages/7d/eb/597ab0759aeceb79a7c287af8c8bf85ee565394aa2676e59314cd39bcb31/lda-1.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3665b448d8be46b5b59202c0f782ea0a", "sha256": "636bdc766d9fbc8c443d68ac1943c5eb684c3e5fa993948f394ec6805f235c34" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "3665b448d8be46b5b59202c0f782ea0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 404655, "upload_time": "2018-09-09T22:30:48", "url": "https://files.pythonhosted.org/packages/27/1d/de4bfe79aba15ee2a9c99e9b49c6d25286ddf852a0a0529084b212de65b7/lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "497b5ba534665433eeeb5a7302915299", "sha256": "09bd558d73bee0fdd39fb1916e8bbb5bb800cedba9d7fe8a7c79ef14980ef84c" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "497b5ba534665433eeeb5a7302915299", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 337731, "upload_time": "2018-09-09T22:30:54", "url": "https://files.pythonhosted.org/packages/9c/66/742499ad2a92526dace988dc70bf0faef3be360a9eb01f362ae2cf48a4b4/lda-1.1.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "11e4ee1b1607cc794b3ba68d5deb3dcc", "sha256": "92354aa5b92271676fb3bc159c2e052a76b999b04470681d50c963831b6299ab" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "11e4ee1b1607cc794b3ba68d5deb3dcc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 347551, "upload_time": "2018-09-09T22:31:00", "url": "https://files.pythonhosted.org/packages/54/4c/e387febde4dfffa6bd81d1feff7c3764816c8030561e5676a3f4ac635447/lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c618356772b524de593751615bcbfb66", "sha256": "6c41854025e4c9ec4369167f47feb465748b7f0664f7611d4c6cf67651406167" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "c618356772b524de593751615bcbfb66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 321883, "upload_time": "2018-09-10T00:16:04", "url": "https://files.pythonhosted.org/packages/8c/a1/9bd76746277180d711a697a35ada0e0a3c3c85823d8206c75f0afae2566b/lda-1.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4b078799f9e31dba8853a2f4e9048ef2", "sha256": "a31eb86c3189454772243152119f2caa52648179686c3716684bf92c8a4b9547" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "4b078799f9e31dba8853a2f4e9048ef2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 333609, "upload_time": "2018-09-10T00:16:08", "url": "https://files.pythonhosted.org/packages/6d/e1/b15800e119b3586330eaab84b537fe1895f1d5ffbb0508036e72395df2c3/lda-1.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8bef8b5e8427217bd49be987d2c578a7", "sha256": "48b44b4f7d1a88fb16cff42be4b30229433b6df085cf49f289d57030bdc160d9" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "8bef8b5e8427217bd49be987d2c578a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 406035, "upload_time": "2018-09-09T22:34:18", "url": "https://files.pythonhosted.org/packages/99/d1/3af33c4623fe3527f7cd096e96fb4f1477083e75274a771a40f05ec81443/lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aae28285a7f07c3da0f38816b44ec04a", "sha256": "35de46a8b689c314f46f1f8456b3c4c0983cd880be67b713c365b53f5f5939dd" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "aae28285a7f07c3da0f38816b44ec04a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 338557, "upload_time": "2018-09-09T22:34:23", "url": "https://files.pythonhosted.org/packages/3f/2e/79b424c079cfe704173aef9454b5c86c0af784329fa6347649acce989f82/lda-1.1.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7ca2ea3c12cefe82704cbb83cdc9b15e", "sha256": "a0b076715b06ad5ba104263c2120bfcbcdf42426244d9ba5ce1158a1bd4e2bac" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7ca2ea3c12cefe82704cbb83cdc9b15e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 348232, "upload_time": "2018-09-09T22:31:20", "url": "https://files.pythonhosted.org/packages/fd/27/d62628d914bff7f048e2b433c3adea9e7072fa20028f1d4194999051cd9d/lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a151c152044f0ec9a08f7c7b67fba285", "sha256": "b079eb2e6cf2fddf78e5a6eb5d8bad1b5dba1516486f9b39cc4dcb302c1f69c9" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "a151c152044f0ec9a08f7c7b67fba285", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 322189, "upload_time": "2018-09-10T00:16:11", "url": "https://files.pythonhosted.org/packages/30/b8/30a776902104fb2a3616b979c0efa437ebf691fc121f06de748f96560a7c/lda-1.1.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0c7e6b4a2d81e7bfe4275b02abdc67c3", "sha256": "575b4af0d33f915d5b4e2e4bab80c11bf2bf67306c1180384f256d2b59209811" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "0c7e6b4a2d81e7bfe4275b02abdc67c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 334115, "upload_time": "2018-09-10T00:16:15", "url": "https://files.pythonhosted.org/packages/fa/fe/98cec39e45411a83430978ea2ad21a47468875013e3c3512a9aef9afc46f/lda-1.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb2e8e97c00a4a6b909658ea5113ef85", "sha256": "5ec4fe170611244de3a985dcc1e649dccbc161597a1c339773501d0c150ffb81" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "bb2e8e97c00a4a6b909658ea5113ef85", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 413618, "upload_time": "2018-10-25T21:18:27", "url": "https://files.pythonhosted.org/packages/39/b4/1bc2ebf693587013e26f106d91f9d6d5d0fd7eca2ff97453e13e4eb8c121/lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "773adfe7ad2fecc18e0bde429da1e88f", "sha256": "26dc6f9a7e877b4708dd3c5c6135aba502e8b88b988ccb7151b2417eb13c0236" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "773adfe7ad2fecc18e0bde429da1e88f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 339402, "upload_time": "2018-10-25T21:18:31", "url": "https://files.pythonhosted.org/packages/e5/91/5c07d2335ad25dea36a82ab896efeec8c69a58d1d7a0c5614c5b8a719499/lda-1.1.0-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5d24f36a219ff10b28e414462f823441", "sha256": "c5965d6a6537cec6dd7b65d6a8f838f05cef2b1ee45ce00447d9255868bfaa34" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5d24f36a219ff10b28e414462f823441", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 349091, "upload_time": "2018-10-25T21:18:34", "url": "https://files.pythonhosted.org/packages/7c/74/a325ca080ebc5afcd67af4ceea1e5b971e1b5114afb1aacd796e180873d3/lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7e73200d0886a05172f3439a9edf88e7", "sha256": "cfb7c126fba90fd138382af9dea5ae8c3d8997e18270e6197b19b92a5bd2828b" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-win32.whl", "has_sig": true, "md5_digest": "7e73200d0886a05172f3439a9edf88e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 328991, "upload_time": "2018-10-25T21:18:37", "url": "https://files.pythonhosted.org/packages/24/84/6e5bd8c4fd7426a66a1ada60ef7c8b7cdca78d68bb41086924f479a7deff/lda-1.1.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "942a020d64196430c09355f9189c7454", "sha256": "dcfc792b833f2fec00fd08777915b51a4afaed09245a22afbacb8fde69ab4daa" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "942a020d64196430c09355f9189c7454", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 341198, "upload_time": "2018-10-25T21:18:40", "url": "https://files.pythonhosted.org/packages/4b/5e/11c73af7335942b9ece20f965271ea632cc26d26d034598502ee4b982251/lda-1.1.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8bfffd010f684718e8a97c595ef8f788", "sha256": "50b91f80aff1b138b8b78f48d581c0e685e7adb393da9e45905773d5f4cc8bf5" }, "downloads": -1, "filename": "lda-1.1.0.tar.gz", "has_sig": true, "md5_digest": "8bfffd010f684718e8a97c595ef8f788", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312856, "upload_time": "2018-09-09T22:34:35", "url": "https://files.pythonhosted.org/packages/81/32/dda1d4afd621f4da8bb3a049da41f42eac5bf66694817091801b7fe6e5c1/lda-1.1.0.tar.gz" } ], "c5b2b31": [] }, "urls": [ { "comment_text": "", "digests": { "md5": "7bc42b78a4296cd4b455f534f9644da8", "sha256": "d74df1ac5670be64b654fa212372e869f9b2dd61e574c2cb830632ab27383df2" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "7bc42b78a4296cd4b455f534f9644da8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 412872, "upload_time": "2018-09-09T22:30:10", "url": "https://files.pythonhosted.org/packages/67/a2/ada59002b2107892cb974b7f2441f2f9c9394ec7e642b7ca2997c640d36b/lda-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "093b66125247b430e3d6dcd3134951a0", "sha256": "340c24e3f98374480120eb4a2944f72fe9029b1ee66add3c5305ca5738454156" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "093b66125247b430e3d6dcd3134951a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 337806, "upload_time": "2018-09-09T22:30:22", "url": "https://files.pythonhosted.org/packages/c4/99/3462e0c9cf75f7a8149423231bede02c0a8a97da4907825fd676f55d2c53/lda-1.1.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1339f322f8324357d166b277971e72e8", "sha256": "ceca2692bb2e22225e42b09038482146c3455751fbbc4e5917ab3f554d88843d" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1339f322f8324357d166b277971e72e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 346707, "upload_time": "2018-09-09T22:30:29", "url": "https://files.pythonhosted.org/packages/d0/0e/9815a1ee27c390e4ef01d51949db27e060054591449e3073b06d51e4adcb/lda-1.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "201b01d5b980c18062e2849ebb1bbb71", "sha256": "48440bee469efc90547c06488d3c6f7cdecb8235cf437b4d6b1206f2e6cbda51" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "201b01d5b980c18062e2849ebb1bbb71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 337800, "upload_time": "2018-09-09T22:30:35", "url": "https://files.pythonhosted.org/packages/e2/42/ac265bc6271f7d1e5abf4c30b757b54d2558bea59da557f2b97d407e4dae/lda-1.1.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "985e5bdc5dc066bd0efe7e2753bdf0b7", "sha256": "42842b5b64a521bf971b9bdd0873936b9e3304e98260decc04c11293aff47b08" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "985e5bdc5dc066bd0efe7e2753bdf0b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 346713, "upload_time": "2018-09-09T22:30:42", "url": "https://files.pythonhosted.org/packages/7b/9f/4c429a39477333ca96a0a3a49de04e55756b6128be272c2600e31783f09a/lda-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "65be57aedee7d044cfe320402ef004f9", "sha256": "814a13c8e69583b937d6a420babba151ccd77cbbac26bbc6cdcc06048b34e9a3" }, "downloads": -1, "filename": "lda-1.1.0-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "65be57aedee7d044cfe320402ef004f9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 322931, "upload_time": "2018-09-10T00:16:50", "url": "https://files.pythonhosted.org/packages/7d/eb/597ab0759aeceb79a7c287af8c8bf85ee565394aa2676e59314cd39bcb31/lda-1.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3665b448d8be46b5b59202c0f782ea0a", "sha256": "636bdc766d9fbc8c443d68ac1943c5eb684c3e5fa993948f394ec6805f235c34" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "3665b448d8be46b5b59202c0f782ea0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 404655, "upload_time": "2018-09-09T22:30:48", "url": "https://files.pythonhosted.org/packages/27/1d/de4bfe79aba15ee2a9c99e9b49c6d25286ddf852a0a0529084b212de65b7/lda-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "497b5ba534665433eeeb5a7302915299", "sha256": "09bd558d73bee0fdd39fb1916e8bbb5bb800cedba9d7fe8a7c79ef14980ef84c" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "497b5ba534665433eeeb5a7302915299", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 337731, "upload_time": "2018-09-09T22:30:54", "url": "https://files.pythonhosted.org/packages/9c/66/742499ad2a92526dace988dc70bf0faef3be360a9eb01f362ae2cf48a4b4/lda-1.1.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "11e4ee1b1607cc794b3ba68d5deb3dcc", "sha256": "92354aa5b92271676fb3bc159c2e052a76b999b04470681d50c963831b6299ab" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "11e4ee1b1607cc794b3ba68d5deb3dcc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 347551, "upload_time": "2018-09-09T22:31:00", "url": "https://files.pythonhosted.org/packages/54/4c/e387febde4dfffa6bd81d1feff7c3764816c8030561e5676a3f4ac635447/lda-1.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c618356772b524de593751615bcbfb66", "sha256": "6c41854025e4c9ec4369167f47feb465748b7f0664f7611d4c6cf67651406167" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "c618356772b524de593751615bcbfb66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 321883, "upload_time": "2018-09-10T00:16:04", "url": "https://files.pythonhosted.org/packages/8c/a1/9bd76746277180d711a697a35ada0e0a3c3c85823d8206c75f0afae2566b/lda-1.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4b078799f9e31dba8853a2f4e9048ef2", "sha256": "a31eb86c3189454772243152119f2caa52648179686c3716684bf92c8a4b9547" }, "downloads": -1, "filename": "lda-1.1.0-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "4b078799f9e31dba8853a2f4e9048ef2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 333609, "upload_time": "2018-09-10T00:16:08", "url": "https://files.pythonhosted.org/packages/6d/e1/b15800e119b3586330eaab84b537fe1895f1d5ffbb0508036e72395df2c3/lda-1.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8bef8b5e8427217bd49be987d2c578a7", "sha256": "48b44b4f7d1a88fb16cff42be4b30229433b6df085cf49f289d57030bdc160d9" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "8bef8b5e8427217bd49be987d2c578a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 406035, "upload_time": "2018-09-09T22:34:18", "url": "https://files.pythonhosted.org/packages/99/d1/3af33c4623fe3527f7cd096e96fb4f1477083e75274a771a40f05ec81443/lda-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aae28285a7f07c3da0f38816b44ec04a", "sha256": "35de46a8b689c314f46f1f8456b3c4c0983cd880be67b713c365b53f5f5939dd" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "aae28285a7f07c3da0f38816b44ec04a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 338557, "upload_time": "2018-09-09T22:34:23", "url": "https://files.pythonhosted.org/packages/3f/2e/79b424c079cfe704173aef9454b5c86c0af784329fa6347649acce989f82/lda-1.1.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7ca2ea3c12cefe82704cbb83cdc9b15e", "sha256": "a0b076715b06ad5ba104263c2120bfcbcdf42426244d9ba5ce1158a1bd4e2bac" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7ca2ea3c12cefe82704cbb83cdc9b15e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 348232, "upload_time": "2018-09-09T22:31:20", "url": "https://files.pythonhosted.org/packages/fd/27/d62628d914bff7f048e2b433c3adea9e7072fa20028f1d4194999051cd9d/lda-1.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a151c152044f0ec9a08f7c7b67fba285", "sha256": "b079eb2e6cf2fddf78e5a6eb5d8bad1b5dba1516486f9b39cc4dcb302c1f69c9" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "a151c152044f0ec9a08f7c7b67fba285", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 322189, "upload_time": "2018-09-10T00:16:11", "url": "https://files.pythonhosted.org/packages/30/b8/30a776902104fb2a3616b979c0efa437ebf691fc121f06de748f96560a7c/lda-1.1.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0c7e6b4a2d81e7bfe4275b02abdc67c3", "sha256": "575b4af0d33f915d5b4e2e4bab80c11bf2bf67306c1180384f256d2b59209811" }, "downloads": -1, "filename": "lda-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "0c7e6b4a2d81e7bfe4275b02abdc67c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 334115, "upload_time": "2018-09-10T00:16:15", "url": "https://files.pythonhosted.org/packages/fa/fe/98cec39e45411a83430978ea2ad21a47468875013e3c3512a9aef9afc46f/lda-1.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb2e8e97c00a4a6b909658ea5113ef85", "sha256": "5ec4fe170611244de3a985dcc1e649dccbc161597a1c339773501d0c150ffb81" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "bb2e8e97c00a4a6b909658ea5113ef85", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 413618, "upload_time": "2018-10-25T21:18:27", "url": "https://files.pythonhosted.org/packages/39/b4/1bc2ebf693587013e26f106d91f9d6d5d0fd7eca2ff97453e13e4eb8c121/lda-1.1.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "773adfe7ad2fecc18e0bde429da1e88f", "sha256": "26dc6f9a7e877b4708dd3c5c6135aba502e8b88b988ccb7151b2417eb13c0236" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "773adfe7ad2fecc18e0bde429da1e88f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 339402, "upload_time": "2018-10-25T21:18:31", "url": "https://files.pythonhosted.org/packages/e5/91/5c07d2335ad25dea36a82ab896efeec8c69a58d1d7a0c5614c5b8a719499/lda-1.1.0-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5d24f36a219ff10b28e414462f823441", "sha256": "c5965d6a6537cec6dd7b65d6a8f838f05cef2b1ee45ce00447d9255868bfaa34" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5d24f36a219ff10b28e414462f823441", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 349091, "upload_time": "2018-10-25T21:18:34", "url": "https://files.pythonhosted.org/packages/7c/74/a325ca080ebc5afcd67af4ceea1e5b971e1b5114afb1aacd796e180873d3/lda-1.1.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7e73200d0886a05172f3439a9edf88e7", "sha256": "cfb7c126fba90fd138382af9dea5ae8c3d8997e18270e6197b19b92a5bd2828b" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-win32.whl", "has_sig": true, "md5_digest": "7e73200d0886a05172f3439a9edf88e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 328991, "upload_time": "2018-10-25T21:18:37", "url": "https://files.pythonhosted.org/packages/24/84/6e5bd8c4fd7426a66a1ada60ef7c8b7cdca78d68bb41086924f479a7deff/lda-1.1.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "942a020d64196430c09355f9189c7454", "sha256": "dcfc792b833f2fec00fd08777915b51a4afaed09245a22afbacb8fde69ab4daa" }, "downloads": -1, "filename": "lda-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "942a020d64196430c09355f9189c7454", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 341198, "upload_time": "2018-10-25T21:18:40", "url": "https://files.pythonhosted.org/packages/4b/5e/11c73af7335942b9ece20f965271ea632cc26d26d034598502ee4b982251/lda-1.1.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8bfffd010f684718e8a97c595ef8f788", "sha256": "50b91f80aff1b138b8b78f48d581c0e685e7adb393da9e45905773d5f4cc8bf5" }, "downloads": -1, "filename": "lda-1.1.0.tar.gz", "has_sig": true, "md5_digest": "8bfffd010f684718e8a97c595ef8f788", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312856, "upload_time": "2018-09-09T22:34:35", "url": "https://files.pythonhosted.org/packages/81/32/dda1d4afd621f4da8bb3a049da41f42eac5bf66694817091801b7fe6e5c1/lda-1.1.0.tar.gz" } ] }