{ "info": { "author": "Matthew Honnibal", "author_email": "matt@explosion.ai", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Cython", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering" ], "description": "\n\n# cymem: A Cython Memory Helper\n\ncymem provides two small memory-management helpers for Cython. They make it\neasy to tie memory to a Python object's life-cycle, so that the memory is freed\nwhen the object is garbage collected.\n\n[![Azure Pipelines](https://img.shields.io/azure-devops/build/explosion-ai/public/2/master.svg?logo=azure-pipelines&style=flat-square)](https://dev.azure.com/explosion-ai/public/_build?definitionId=2)\n[![pypi Version](https://img.shields.io/pypi/v/cymem.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/cymem)\n[![conda Version](https://img.shields.io/conda/vn/conda-forge/cymem.svg?style=flat-square&logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/cymem)\n[![Python wheels](https://img.shields.io/badge/wheels-%E2%9C%93-4c1.svg?longCache=true&style=flat-square&logo=python&logoColor=white)](https://github.com/explosion/wheelwright/releases)\n\n## Overview\n\nThe most useful is `cymem.Pool`, which acts as a thin wrapper around the calloc\nfunction:\n\n```python\nfrom cymem.cymem cimport Pool\ncdef Pool mem = Pool()\ndata1 = mem.alloc(10, sizeof(int))\ndata2 = mem.alloc(12, sizeof(float))\n```\n\nThe `Pool` object saves the memory addresses internally, and frees them when the\nobject is garbage collected. Typically you'll attach the `Pool` to some cdef'd\nclass. This is particularly handy for deeply nested structs, which have\ncomplicated initialization functions. Just pass the `Pool` object into the\ninitializer, and you don't have to worry about freeing your struct at all \u2014\nall of the calls to `Pool.alloc` will be automatically freed when the `Pool`\nexpires.\n\n## Installation\n\nInstallation is via [pip](https://pypi.python.org/pypi/pip), and requires [Cython](http://cython.org). Before installing, make sure that your `pip`, `setuptools` and `wheel` are up to date.\n\n```bash\npip install -U pip setuptools wheel\npip install cymem\n```\n\n## Example Use Case: An array of structs\n\nLet's say we want a sequence of sparse matrices. We need fast access, and\na Python list isn't performing well enough. So, we want a C-array or C++\nvector, which means we need the sparse matrix to be a C-level struct \u2014 it\ncan't be a Python class. We can write this easily enough in Cython:\n\n```python\n\"\"\"Example without Cymem\n\nTo use an array of structs, we must carefully walk the data structure when\nwe deallocate it.\n\"\"\"\n\nfrom libc.stdlib cimport calloc, free\n\ncdef struct SparseRow:\n size_t length\n size_t* indices\n double* values\n\ncdef struct SparseMatrix:\n size_t length\n SparseRow* rows\n\ncdef class MatrixArray:\n cdef size_t length\n cdef SparseMatrix** matrices\n\n def __cinit__(self, list py_matrices):\n self.length = 0\n self.matrices = NULL\n\n def __init__(self, list py_matrices):\n self.length = len(py_matrices)\n self.matrices = calloc(len(py_matrices), sizeof(SparseMatrix*))\n\n for i, py_matrix in enumerate(py_matrices):\n self.matrices[i] = sparse_matrix_init(py_matrix)\n\n def __dealloc__(self):\n for i in range(self.length):\n sparse_matrix_free(self.matrices[i])\n free(self.matrices)\n\n\ncdef SparseMatrix* sparse_matrix_init(list py_matrix) except NULL:\n sm = calloc(1, sizeof(SparseMatrix))\n sm.length = len(py_matrix)\n sm.rows = calloc(sm.length, sizeof(SparseRow))\n cdef size_t i, j\n cdef dict py_row\n cdef size_t idx\n cdef double value\n for i, py_row in enumerate(py_matrix):\n sm.rows[i].length = len(py_row)\n sm.rows[i].indices = calloc(sm.rows[i].length, sizeof(size_t))\n sm.rows[i].values = calloc(sm.rows[i].length, sizeof(double))\n for j, (idx, value) in enumerate(py_row.items()):\n sm.rows[i].indices[j] = idx\n sm.rows[i].values[j] = value\n return sm\n\n\ncdef void* sparse_matrix_free(SparseMatrix* sm) except *:\n cdef size_t i\n for i in range(sm.length):\n free(sm.rows[i].indices)\n free(sm.rows[i].values)\n free(sm.rows)\n free(sm)\n```\n\nWe wrap the data structure in a Python ref-counted class at as low a level as\nwe can, given our performance constraints. This allows us to allocate and free\nthe memory in the `__cinit__` and `__dealloc__` Cython special methods.\n\nHowever, it's very easy to make mistakes when writing the `__dealloc__` and\n`sparse_matrix_free` functions, leading to memory leaks. cymem prevents you from\nwriting these deallocators at all. Instead, you write as follows:\n\n```python\n\"\"\"Example with Cymem.\n\nMemory allocation is hidden behind the Pool class, which remembers the\naddresses it gives out. When the Pool object is garbage collected, all of\nits addresses are freed.\n\nWe don't need to write MatrixArray.__dealloc__ or sparse_matrix_free,\neliminating a common class of bugs.\n\"\"\"\nfrom cymem.cymem cimport Pool\n\ncdef struct SparseRow:\n size_t length\n size_t* indices\n double* values\n\ncdef struct SparseMatrix:\n size_t length\n SparseRow* rows\n\n\ncdef class MatrixArray:\n cdef size_t length\n cdef SparseMatrix** matrices\n cdef Pool mem\n\n def __cinit__(self, list py_matrices):\n self.mem = None\n self.length = 0\n self.matrices = NULL\n\n def __init__(self, list py_matrices):\n self.mem = Pool()\n self.length = len(py_matrices)\n self.matrices = self.mem.alloc(self.length, sizeof(SparseMatrix*))\n for i, py_matrix in enumerate(py_matrices):\n self.matrices[i] = sparse_matrix_init(self.mem, py_matrix)\n\ncdef SparseMatrix* sparse_matrix_init_cymem(Pool mem, list py_matrix) except NULL:\n sm = mem.alloc(1, sizeof(SparseMatrix))\n sm.length = len(py_matrix)\n sm.rows = mem.alloc(sm.length, sizeof(SparseRow))\n cdef size_t i, j\n cdef dict py_row\n cdef size_t idx\n cdef double value\n for i, py_row in enumerate(py_matrix):\n sm.rows[i].length = len(py_row)\n sm.rows[i].indices = mem.alloc(sm.rows[i].length, sizeof(size_t))\n sm.rows[i].values = mem.alloc(sm.rows[i].length, sizeof(double))\n for j, (idx, value) in enumerate(py_row.items()):\n sm.rows[i].indices[j] = idx\n sm.rows[i].values[j] = value\n return sm\n```\n\nAll that the `Pool` class does is remember the addresses it gives out. When the\n`MatrixArray` object is garbage-collected, the `Pool` object will also be garbage\ncollected, which triggers a call to `Pool.__dealloc__`. The `Pool` then frees all of\nits addresses. This saves you from walking back over your nested data structures\nto free them, eliminating a common class of errors.\n\n## Custom Allocators\n\nSometimes external C libraries use private functions to allocate and free objects,\nbut we'd still like the laziness of the `Pool`.\n\n```python\nfrom cymem.cymem cimport Pool, WrapMalloc, WrapFree\ncdef Pool mem = Pool(WrapMalloc(priv_malloc), WrapFree(priv_free))\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/explosion/cymem", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cymem", "package_url": "https://pypi.org/project/cymem/", "platform": "", "project_url": "https://pypi.org/project/cymem/", "project_urls": { "Homepage": "https://github.com/explosion/cymem" }, "release_url": "https://pypi.org/project/cymem/2.0.6/", "requires_dist": null, "requires_python": "", "summary": "Manage calls to calloc/free through Cython", "version": "2.0.6", "yanked": false, "yanked_reason": null }, "last_serial": 11958367, "releases": { "0.8": [ { "comment_text": "", "digests": { "md5": "026c587f6a4c50028e167059af3972e5", "sha256": "06dd610d5c4a90137a1aec74c3feee2e75b8e82bd36f1234cd0c014cac9c78fe" }, "downloads": -1, "filename": "cymem-0.8.tar.gz", "has_sig": false, "md5_digest": "026c587f6a4c50028e167059af3972e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26611, "upload_time": "2014-09-25T14:48:04", "upload_time_iso_8601": "2014-09-25T14:48:04.918772Z", "url": "https://files.pythonhosted.org/packages/c7/e5/39e04f9016599faf34425d1afddd5fd77f35391f276e90bcd175f1d7d55c/cymem-0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9": [ { "comment_text": "", "digests": { "md5": "517bfc13df7010f0a5bce1f9f329a259", "sha256": "f2e7746836813dcb267390499d135260e519dc932a0d853a4d1127a351b17c3f" }, "downloads": -1, "filename": "cymem-0.9.tar.gz", "has_sig": false, "md5_digest": "517bfc13df7010f0a5bce1f9f329a259", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26794, "upload_time": "2014-10-04T13:39:58", "upload_time_iso_8601": "2014-10-04T13:39:58.653899Z", "url": "https://files.pythonhosted.org/packages/07/ab/a6758c83baa17f377037d71631fe6c5cbec063bf42124f7130df3db9fd12/cymem-0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0": [ { "comment_text": "", "digests": { "md5": "88459d9c15eeed0159c9acb499b20eae", "sha256": "c0b7fbc7f6800f6e2eb645ac2ca3137d5845527a6989b3a829c1ed1a86655c84" }, "downloads": -1, "filename": "cymem-1.0.tar.gz", "has_sig": false, "md5_digest": "88459d9c15eeed0159c9acb499b20eae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27576, "upload_time": "2014-10-21T08:19:33", "upload_time_iso_8601": "2014-10-21T08:19:33.341682Z", "url": "https://files.pythonhosted.org/packages/94/67/e81b7d9f7f0e1bbe428f1ac82be8b154d585e169b0f477a6932f7a898cf6/cymem-1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1": [], "1.10": [ { "comment_text": "", "digests": { "md5": "e2a983a572fe8eb9abf88065b819e3bf", "sha256": "969db96fa01e9682af7944316232f1fc860f74bce750b7f17e3b6251840070cf" }, "downloads": -1, "filename": "cymem-1.10.tar.gz", "has_sig": false, "md5_digest": "e2a983a572fe8eb9abf88065b819e3bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26702, "upload_time": "2015-01-02T18:12:53", "upload_time_iso_8601": "2015-01-02T18:12:53.374342Z", "url": "https://files.pythonhosted.org/packages/59/d9/0cddd33933b9fd4462ec47edc28f96ffa75ac0cdfb62d7419b7129da55be/cymem-1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11": [ { "comment_text": "", "digests": { "md5": "6a257e0abca8771db4d2263762fd5d0c", "sha256": "d7bdfae0deac3639ae37c6541cd3b5e1fdf7337ac19efdc0621dd68b894aea91" }, "downloads": -1, "filename": "cymem-1.11.tar.gz", "has_sig": false, "md5_digest": "6a257e0abca8771db4d2263762fd5d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26884, "upload_time": "2015-01-31T01:49:41", "upload_time_iso_8601": "2015-01-31T01:49:41.480457Z", "url": "https://files.pythonhosted.org/packages/3f/6f/369a600d4cde6295dca393bca8374c5185335cc7067c4afd33b5126891dd/cymem-1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "56a5cfc85215a732542e71c052b82f8a", "sha256": "f2c9b3b742a9067a747c6edd3d1ca0dd3562eef311aa7d463da16f5410b8f26a" }, "downloads": -1, "filename": "cymem-1.3.0.tar.gz", "has_sig": false, "md5_digest": "56a5cfc85215a732542e71c052b82f8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28459, "upload_time": "2015-11-02T14:23:10", "upload_time_iso_8601": "2015-11-02T14:23:10.893670Z", "url": "https://files.pythonhosted.org/packages/25/02/8ea7f90077d722eaf40f3adb3921e588303fac6ecae7b22773ac27a10b72/cymem-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.30": [ { "comment_text": "", "digests": { "md5": "bf95cef6d1bfc4c8f443c6e265aa0eab", "sha256": "cd510ca98f77d9ed6152576d36be1d03b15b1d6b2441a667cbfc73de304ab933" }, "downloads": -1, "filename": "cymem-1.30.tar.gz", "has_sig": false, "md5_digest": "bf95cef6d1bfc4c8f443c6e265aa0eab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28460, "upload_time": "2015-11-02T14:26:25", "upload_time_iso_8601": "2015-11-02T14:26:25.885669Z", "url": "https://files.pythonhosted.org/packages/ff/ba/00a9590f41fca7e629deca628d0d0a2fdf6a49ad680ff4ff7914271aec40/cymem-1.30.tar.gz", "yanked": false, "yanked_reason": null } ], "1.31.0": [ { "comment_text": "", "digests": { "md5": "6873993a220176bff2d5c2276882b2fc", "sha256": "6e2498cf7d432c84e7c93a8d6ca8ef23b88166eb0ad85d09308738e53f8e0517" }, "downloads": -1, "filename": "cymem-1.31.0.tar.gz", "has_sig": false, "md5_digest": "6873993a220176bff2d5c2276882b2fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28558, "upload_time": "2016-01-30T15:09:04", "upload_time_iso_8601": "2016-01-30T15:09:04.424478Z", "url": "https://files.pythonhosted.org/packages/fa/dc/5f773462ca95a24e35a51d0401b42b35ad319312d55948acf568e7dd0bac/cymem-1.31.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.31.1": [ { "comment_text": "", "digests": { "md5": "610ab1a2277fbd6f058e8498f8bd2381", "sha256": "e68bd6fee09345fc556143eb2c78941b78ed7afbd1a6abfe59c2392ffd8fcc02" }, "downloads": -1, "filename": "cymem-1.31.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "610ab1a2277fbd6f058e8498f8bd2381", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22275, "upload_time": "2016-03-25T12:39:26", "upload_time_iso_8601": "2016-03-25T12:39:26.359185Z", "url": "https://files.pythonhosted.org/packages/dd/3e/951f3dd078371dc66be01bd4abdfcdfea262e8d287b0365cbe62008699cb/cymem-1.31.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f306b3e19062bb0751935efb1a8b7a4", "sha256": "00121923e4a7b4f6f9abbf119684a1ad72a5be8edd5f098f2a219d2042612edf" }, "downloads": -1, "filename": "cymem-1.31.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f306b3e19062bb0751935efb1a8b7a4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 66212, "upload_time": "2016-04-19T20:21:44", "upload_time_iso_8601": "2016-04-19T20:21:44.242088Z", "url": "https://files.pythonhosted.org/packages/b2/33/eb2f07f928120c8a4cd9df2845a62ec4cf96eb657eec59d8496304398bce/cymem-1.31.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a35d242702e940e87f4858fba309aac3", "sha256": "9099fac0039bfa1806c3c9d4fb521c9bb64d59e0e539d1f9337abd72e6fabb89" }, "downloads": -1, "filename": "cymem-1.31.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "a35d242702e940e87f4858fba309aac3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23783, "upload_time": "2016-03-25T12:39:32", "upload_time_iso_8601": "2016-03-25T12:39:32.484583Z", "url": "https://files.pythonhosted.org/packages/70/95/8c33eb85f50f40406d535e58b7f3bc922dc9fb818a91b401e58a64d07681/cymem-1.31.1-cp27-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "840512609a5ffcfb18d4595b44c9b69f", "sha256": "8dada09070ffacd6fbba0a6c3090062238e57154cc5bf10c2e1a1919268f328a" }, "downloads": -1, "filename": "cymem-1.31.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "840512609a5ffcfb18d4595b44c9b69f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22720, "upload_time": "2016-03-25T12:39:36", "upload_time_iso_8601": "2016-03-25T12:39:36.671778Z", "url": "https://files.pythonhosted.org/packages/de/ba/ac4592292d958892a412851375f31235af40ae7e2c19dede661a2625ff07/cymem-1.31.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b228d581cced8324b01ceb23a8b87b4", "sha256": "110409a78b0b7e2f8dc858293556c4a071612c30c52d7f97681042d63f495185" }, "downloads": -1, "filename": "cymem-1.31.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4b228d581cced8324b01ceb23a8b87b4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 72040, "upload_time": "2016-04-19T20:17:56", "upload_time_iso_8601": "2016-04-19T20:17:56.784613Z", "url": "https://files.pythonhosted.org/packages/c2/e2/e6e590362e114489d21edbe75ec5fab387567bd33d7c005deea1f843d279/cymem-1.31.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73c1ce007b1b816411017c5ba7a9e95b", "sha256": "13102a1aa5e19f2685029789ba4cca2010bd9417323eabba0b7ea17f41451fd4" }, "downloads": -1, "filename": "cymem-1.31.1-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "73c1ce007b1b816411017c5ba7a9e95b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24237, "upload_time": "2016-03-25T12:39:44", "upload_time_iso_8601": "2016-03-25T12:39:44.287400Z", "url": "https://files.pythonhosted.org/packages/11/5c/04696375a9ff54b8d5141e2dd5a048e8bc948791147e2e6ce9bf2ee27e69/cymem-1.31.1-cp34-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27b4f3f2726aad6abaf27b7bd680b299", "sha256": "588acb15567a0feb7954f10a0372c38baf77e2860d89262c60c13cbdeabd23d9" }, "downloads": -1, "filename": "cymem-1.31.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "27b4f3f2726aad6abaf27b7bd680b299", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22770, "upload_time": "2016-03-25T12:39:48", "upload_time_iso_8601": "2016-03-25T12:39:48.639710Z", "url": "https://files.pythonhosted.org/packages/1e/ea/64a740322da1866368629eb0754ee8e0efb821d4f9d737b977f10f42d980/cymem-1.31.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "791c99585c96495889d23822009fd099", "sha256": "f43fe23bfad0f1dda38bd4c3b1ddcf915f0650c84dbc7c4f5145d36109e8e95a" }, "downloads": -1, "filename": "cymem-1.31.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "791c99585c96495889d23822009fd099", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 71091, "upload_time": "2016-04-19T20:18:21", "upload_time_iso_8601": "2016-04-19T20:18:21.029652Z", "url": "https://files.pythonhosted.org/packages/4c/1a/d913d81cfe6f803217a4958d111b26291f76653a0dd5ae240ba58cd924a3/cymem-1.31.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cfa43c678a8ac3fca68f6dcdd1b726b", "sha256": "0be17b3ee12b4b75bab7d292b6952e0d72cb641db45903f37b5a28153e825541" }, "downloads": -1, "filename": "cymem-1.31.1-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "9cfa43c678a8ac3fca68f6dcdd1b726b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25431, "upload_time": "2016-03-25T12:39:56", "upload_time_iso_8601": "2016-03-25T12:39:56.313725Z", "url": "https://files.pythonhosted.org/packages/33/5a/f52fdf5f10bceb7482381ce7a299c684c39a62954fc295681b62fb97a91f/cymem-1.31.1-cp35-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4130380c1c7b97c9c586c216192627e1", "sha256": "d21d652e9c7eb0711f8b328515cacab1787783d151cc9c2365b5e6a14d10bf32" }, "downloads": -1, "filename": "cymem-1.31.1.tar.gz", "has_sig": false, "md5_digest": "4130380c1c7b97c9c586c216192627e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33749, "upload_time": "2016-03-25T12:40:00", "upload_time_iso_8601": "2016-03-25T12:40:00.154993Z", "url": "https://files.pythonhosted.org/packages/b9/2b/569c36a66587f5f3459d1adf8fca94489b9887c36572593d32c3b0f730a9/cymem-1.31.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.31.2": [ { "comment_text": "", "digests": { "md5": "8e027badac5b854ba99586f71a957d03", "sha256": "7b2e8600bc6c2d005f8cf47ac5fc99eee45df82c8c71677fb075ca6c2c8ca16b" }, "downloads": -1, "filename": "cymem-1.31.2-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": false, "md5_digest": "8e027badac5b854ba99586f71a957d03", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 34030, "upload_time": "2018-10-13T12:11:10", "upload_time_iso_8601": "2018-10-13T12:11:10.593337Z", "url": "https://files.pythonhosted.org/packages/7b/b5/adef900a23b3e80ddd0042dd1198e9282fb70f2bc1d0754ee4db85b4ed03/cymem-1.31.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a7719f6b6c5b7650dc9c946ffe6a1e8", "sha256": "b6513b2926c60d641f159e79e6fb16460dfb50ebcce31a5af0370c51837c7efc" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8a7719f6b6c5b7650dc9c946ffe6a1e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22091, "upload_time": "2016-04-30T09:15:02", "upload_time_iso_8601": "2016-04-30T09:15:02.312223Z", "url": "https://files.pythonhosted.org/packages/a2/41/dc242f063af9aa284089d2a1f5da7d72d2169080651dfdec58f4db162f2b/cymem-1.31.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a305c911fc8494e6c19e9d934e791f99", "sha256": "b5aceab17228dc6c6d126eb18e2f7801bcb5293eee719a1a240636c6cca970f0" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a305c911fc8494e6c19e9d934e791f99", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19650, "upload_time": "2018-10-13T12:11:12", "upload_time_iso_8601": "2018-10-13T12:11:12.796439Z", "url": "https://files.pythonhosted.org/packages/88/ff/1203e9a1fa15a33a5823e5333151d35e5395617ce1cf4a26045782a138a5/cymem-1.31.2-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d607b0dd4e387252515319c82b6c6393", "sha256": "616d06333f46dd03c128d97912d361183fc02249e6420a7b7907b41214c51562" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d607b0dd4e387252515319c82b6c6393", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 66031, "upload_time": "2016-04-30T09:15:19", "upload_time_iso_8601": "2016-04-30T09:15:19.449617Z", "url": "https://files.pythonhosted.org/packages/e2/ef/e1ebaf55e478e1d34c6ac9b0d2fa8678e180542d3bc9398af9e95b546df1/cymem-1.31.2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f11a07e7300fe80fa9baee1ee6bb844d", "sha256": "043994a622efba3a79ed1707c0279d85f25bdf9a615c2709561790b659795375" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f11a07e7300fe80fa9baee1ee6bb844d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 19654, "upload_time": "2018-10-13T12:11:54", "upload_time_iso_8601": "2018-10-13T12:11:54.380455Z", "url": "https://files.pythonhosted.org/packages/b2/c9/3be30f84116d4b15de2371b265b72cac4ab8f0359d875f7d09f721cb439b/cymem-1.31.2-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "092f589c235eb51076ce64b155a93593", "sha256": "944af97d4d34a2470b5199f1c31d2dfc79cdec7bd7a41354d839a8ab87fdfaa6" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "092f589c235eb51076ce64b155a93593", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 66028, "upload_time": "2016-04-30T09:17:46", "upload_time_iso_8601": "2016-04-30T09:17:46.089517Z", "url": "https://files.pythonhosted.org/packages/b7/a2/76d5031797be8a7881537f1dd658142f993f6a18f0e946caa8ee20b7a2fa/cymem-1.31.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02fbaafa88106b80c38e855ed922ba38", "sha256": "cabc0aeb58a451627ef07beac16dd28a1a09a4dd554df9f9dd0a76a48a8454e0" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "02fbaafa88106b80c38e855ed922ba38", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24220, "upload_time": "2018-10-13T12:11:56", "upload_time_iso_8601": "2018-10-13T12:11:56.119115Z", "url": "https://files.pythonhosted.org/packages/6c/71/6d6b86935dc5df1bcd3169e8c0eb47ad2483956f159bbac4051dfc7bb716/cymem-1.31.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd74b432bddc9a98e48b2fb17a79af4f", "sha256": "c0963ec0e81adc95334d6f75c9ce5084ba7b813b7d515470a753ec57f76db6d5" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "cd74b432bddc9a98e48b2fb17a79af4f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26481, "upload_time": "2018-10-13T12:11:57", "upload_time_iso_8601": "2018-10-13T12:11:57.653318Z", "url": "https://files.pythonhosted.org/packages/36/b2/3e57f9c19f251ecdc239beb8de2ac1ef165bbb703451e9742ef72e2429d7/cymem-1.31.2-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "520cb8680a83c423dcbec6c524f26619", "sha256": "50292f4dd0d950a8698bae27d71efe59da7ff08e591b735e08b658aae42c4745" }, "downloads": -1, "filename": "cymem-1.31.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "520cb8680a83c423dcbec6c524f26619", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23610, "upload_time": "2016-04-30T09:17:53", "upload_time_iso_8601": "2016-04-30T09:17:53.599069Z", "url": "https://files.pythonhosted.org/packages/39/be/896063d10e227201760cdd05e6dd41ae6c87d2c528d74b6c43b491fc1a8f/cymem-1.31.2-cp27-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f615410496f0dfb73df4df86b4c9e49b", "sha256": "daa6003fcc199752ab703142021cff74774872a932303b240dc0ea177adf295d" }, "downloads": -1, "filename": "cymem-1.31.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f615410496f0dfb73df4df86b4c9e49b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22536, "upload_time": "2016-04-30T09:18:09", "upload_time_iso_8601": "2016-04-30T09:18:09.977786Z", "url": "https://files.pythonhosted.org/packages/e2/b4/d20597d322b62fefea6a77633d09e03083ef1942ad9e25a6e16808f576c8/cymem-1.31.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8adce70280299c0ac6c708834ed8645", "sha256": "b38056efb99078b06c504adb5f03a8d9e822a5543451737b746028a71c4b1ac3" }, "downloads": -1, "filename": "cymem-1.31.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c8adce70280299c0ac6c708834ed8645", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 71858, "upload_time": "2016-04-30T09:18:40", "upload_time_iso_8601": "2016-04-30T09:18:40.315171Z", "url": "https://files.pythonhosted.org/packages/b6/89/0f4f338b405c0cc72fd46287f2a1047377062c81875e35a55dadea361877/cymem-1.31.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d088bb83bd505404e672fa8ed058c5fe", "sha256": "4bc1056b52d959fcbb1e0f32ec84fa131754d6be1e36b65782c6ac86419f4bf3" }, "downloads": -1, "filename": "cymem-1.31.2-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "d088bb83bd505404e672fa8ed058c5fe", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24054, "upload_time": "2016-04-30T09:18:53", "upload_time_iso_8601": "2016-04-30T09:18:53.658709Z", "url": "https://files.pythonhosted.org/packages/ab/44/f3af1d1a266e46c1eb5bc2efc6053f14d1571d335f72cec4b2a3aec0fce1/cymem-1.31.2-cp34-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf36a35e34627be58179dbb8e83c0429", "sha256": "495bd2aaeb7650faa7c78089abd2d975194534462e1f76243b3bc8aa1d8aa202" }, "downloads": -1, "filename": "cymem-1.31.2-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": false, "md5_digest": "cf36a35e34627be58179dbb8e83c0429", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 33880, "upload_time": "2018-10-13T12:11:59", "upload_time_iso_8601": "2018-10-13T12:11:59.157660Z", "url": "https://files.pythonhosted.org/packages/15/97/f3dc00cde25eb7e5b97d7dab724f92af30a04869481f9292b9b8cda2a418/cymem-1.31.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47b2936d8fa6798859da0c46b717d01b", "sha256": "0dd61d05977839a922c0d797c355b98949210575918b1743b41e38ae9fb2c3a7" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "47b2936d8fa6798859da0c46b717d01b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22585, "upload_time": "2016-04-30T09:19:18", "upload_time_iso_8601": "2016-04-30T09:19:18.093194Z", "url": "https://files.pythonhosted.org/packages/8c/23/35663f617afdd1cf77d2eaed8694cc45e6fd4fd58471f74d318076219751/cymem-1.31.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "796f39b4eae5e6f46dd992090841f494", "sha256": "cfa8415504cd06f6bf93e3b7e2f014ee675a66a435dd47f8c70a21880ab92ed6" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "796f39b4eae5e6f46dd992090841f494", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20438, "upload_time": "2018-10-13T12:12:00", "upload_time_iso_8601": "2018-10-13T12:12:00.726516Z", "url": "https://files.pythonhosted.org/packages/86/6b/fe9a26d589bfb4b89e026d85cc2bd8f1c03e07dd739815a6e6d98d4b88f2/cymem-1.31.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa9b6d1f47ebbbdfa9a5588c0eab5b8c", "sha256": "4c5d9ca6ec706792b8d9b1faf6db77b95545c388c768b21d940f197aa7efbb7e" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aa9b6d1f47ebbbdfa9a5588c0eab5b8c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 70903, "upload_time": "2016-04-30T09:19:30", "upload_time_iso_8601": "2016-04-30T09:19:30.854572Z", "url": "https://files.pythonhosted.org/packages/b6/43/39372a0bc24d336dc88b87262c30f09d0a2c759f32a2965f90fb56da46f1/cymem-1.31.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efb4770c8ab7bdf33a434b6700b4c47d", "sha256": "23c20163e2e74c760259a7feee264b5eaf7879d7818ab13025b2be69d7b8b66a" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "efb4770c8ab7bdf33a434b6700b4c47d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24879, "upload_time": "2018-10-13T12:12:02", "upload_time_iso_8601": "2018-10-13T12:12:02.131785Z", "url": "https://files.pythonhosted.org/packages/1c/6e/cc33b597fb269735668dcc1832239d597a580d65841f4c85e85165517e7e/cymem-1.31.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "189fc3a1a88c568a5aabf998765beef3", "sha256": "c178cb784531546ac6bbe2c9a4c4b077fd03d97c4a67c8ea84e1d2a50d872f23" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "189fc3a1a88c568a5aabf998765beef3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27681, "upload_time": "2018-10-13T12:12:03", "upload_time_iso_8601": "2018-10-13T12:12:03.839048Z", "url": "https://files.pythonhosted.org/packages/dd/ae/501da78bb4b2a43148e816b4afdc7cf30d8b5b3a3d82e2fef7d378c361b1/cymem-1.31.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7784fee5947011fdd7d14fb8960ca337", "sha256": "00bb3645dfb9a020d735ba3d6f822b04656388180588d8b2cebde967ee678bcc" }, "downloads": -1, "filename": "cymem-1.31.2-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "7784fee5947011fdd7d14fb8960ca337", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25243, "upload_time": "2016-04-30T09:19:40", "upload_time_iso_8601": "2016-04-30T09:19:40.478339Z", "url": "https://files.pythonhosted.org/packages/d2/2d/eebfedb0f54598f0edc70efe63b9ff37d9397b465bfa290c33eaf6f3cba7/cymem-1.31.2-cp35-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a2f9eb8e1f3a1b16be13e24ed46cc5a", "sha256": "9709fa4b5caa2ebb05e9f12aab3388431970ae5f5a7dad3a7b9670874b469012" }, "downloads": -1, "filename": "cymem-1.31.2-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": false, "md5_digest": "2a2f9eb8e1f3a1b16be13e24ed46cc5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 33878, "upload_time": "2018-10-13T12:12:05", "upload_time_iso_8601": "2018-10-13T12:12:05.629851Z", "url": "https://files.pythonhosted.org/packages/58/ed/fefb74be9a25a06d4c53eb4be97d445131e6dcfe55b7d948ac6a321c26d6/cymem-1.31.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df01e3ac5bdeb881e6229bd1b8dbf438", "sha256": "5f3fb50c7a8e6d7f599e569f1b705e41f9e2d550fad48e3a275b4f5450412216" }, "downloads": -1, "filename": "cymem-1.31.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "df01e3ac5bdeb881e6229bd1b8dbf438", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20441, "upload_time": "2018-10-13T12:12:07", "upload_time_iso_8601": "2018-10-13T12:12:07.160663Z", "url": "https://files.pythonhosted.org/packages/5b/a9/3f7b43835a2c4d90eba9f5d69da05d14fae4aa38fefbd91855287c3ff807/cymem-1.31.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b60e3c51bb15dd1d888c8ef57a5ee044", "sha256": "d7ce7b63a74566490d4661d3934870741cd0e37c3543cdf73c09c79501f1cf8a" }, "downloads": -1, "filename": "cymem-1.31.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b60e3c51bb15dd1d888c8ef57a5ee044", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21278, "upload_time": "2018-10-13T12:12:08", "upload_time_iso_8601": "2018-10-13T12:12:08.705463Z", "url": "https://files.pythonhosted.org/packages/a5/0f/d29aa68c55db37844c77e7e96143bd96651fd0f4453c9f6ee043ac846b77/cymem-1.31.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f3eb2a1471078d4171c5763f5f558bb", "sha256": "2957a6ccd96d48896c736014b96fae64164f9d18cf773b53cbdc1ea4eab7f4dc" }, "downloads": -1, "filename": "cymem-1.31.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7f3eb2a1471078d4171c5763f5f558bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 24914, "upload_time": "2018-10-13T12:12:10", "upload_time_iso_8601": "2018-10-13T12:12:10.190743Z", "url": "https://files.pythonhosted.org/packages/6a/3e/20fea39a67754da0e1c12c674fdc41344ac6291b83916108d8553b7a3847/cymem-1.31.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b9c4bceefe96f1fa2e06b5d342d6ae9", "sha256": "7b6a1a17bab8af967e7cfb6b2ec5c5aa8650d0bce4f176cddbf7638e8e02c9e1" }, "downloads": -1, "filename": "cymem-1.31.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5b9c4bceefe96f1fa2e06b5d342d6ae9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27818, "upload_time": "2018-10-13T12:12:11", "upload_time_iso_8601": "2018-10-13T12:12:11.898845Z", "url": "https://files.pythonhosted.org/packages/92/c4/cb92b8a267c17c02245f720ced4220a775a5eda58a9fdf7a46caec4eba53/cymem-1.31.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "600e8e21fcda68d1211597781ace54c8", "sha256": "b8cf65f386caf97b953fc0b9d363e2e404591de672c7b468eba7483099d7f773" }, "downloads": -1, "filename": "cymem-1.31.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "600e8e21fcda68d1211597781ace54c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 24828, "upload_time": "2018-10-13T12:12:13", "upload_time_iso_8601": "2018-10-13T12:12:13.907684Z", "url": "https://files.pythonhosted.org/packages/e6/01/bb68445db51aebb0a55b9b84ce35849b3eafb6095908908977231984c2b3/cymem-1.31.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "001e55ca4ce54bd79252b50eacf228a5", "sha256": "e0a60d03f2b2656ecf13c717aa9ebc17878862027c549bbb1f7a25226dfc3297" }, "downloads": -1, "filename": "cymem-1.31.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "001e55ca4ce54bd79252b50eacf228a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 27694, "upload_time": "2018-10-13T12:12:15", "upload_time_iso_8601": "2018-10-13T12:12:15.461366Z", "url": "https://files.pythonhosted.org/packages/71/ed/e4b520e832677381805000271268a9732a63ebbbbafe83a00939288c623d/cymem-1.31.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "310e54a8408a25775cd3d58c9379518f", "sha256": "f06d9b50da0474d7405674d8101c319d89a17d33792d6d429fe3d5c64f0d9df1" }, "downloads": -1, "filename": "cymem-1.31.2.tar.gz", "has_sig": false, "md5_digest": "310e54a8408a25775cd3d58c9379518f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33771, "upload_time": "2016-04-30T09:13:52", "upload_time_iso_8601": "2016-04-30T09:13:52.330283Z", "url": "https://files.pythonhosted.org/packages/f8/9e/273fbea507de99166c11cd0cb3fde1ac01b5bc724d9a407a2f927ede91a1/cymem-1.31.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "b80f75b76f04718d69923542d0f1e0c6", "sha256": "46141111eedbb5b0d8c9386b00226a15f5727a1202b9095f4363d425f259267e" }, "downloads": -1, "filename": "cymem-2.0.2-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": false, "md5_digest": "b80f75b76f04718d69923542d0f1e0c6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 53668, "upload_time": "2018-10-14T18:09:59", "upload_time_iso_8601": "2018-10-14T18:09:59.147666Z", "url": "https://files.pythonhosted.org/packages/de/db/39fcb8b6bd5aa15bde172830a989896cc3040b7d17ba4365f67ae176245d/cymem-2.0.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceb144110b5b4f4a6286d8a4d8e40392", "sha256": "9935b233882732f03fd0fadbeb9e9aa672edcdd126e6d52c36d60adf1def8ea5" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ceb144110b5b4f4a6286d8a4d8e40392", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27703, "upload_time": "2018-10-14T18:10:00", "upload_time_iso_8601": "2018-10-14T18:10:00.737740Z", "url": "https://files.pythonhosted.org/packages/45/53/96b2a4ba57faeb6e17e07c5a450db3cc428bdc43af534b31bb04deefbbaa/cymem-2.0.2-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3c961eb52b459ef0dc50e77cc90a54d", "sha256": "a38b3229782411e4b23240f5f90000c4e7a834af88ed8763c66f8e4603db6b51" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b3c961eb52b459ef0dc50e77cc90a54d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31284, "upload_time": "2018-10-14T18:10:02", "upload_time_iso_8601": "2018-10-14T18:10:02.122804Z", "url": "https://files.pythonhosted.org/packages/57/eb/5ee9da40b9b4ce370f86f4af9b41a7d16d3e273214d51048f2eaa46d909d/cymem-2.0.2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19ea652db54a0e1f9bf443778eb5b49c", "sha256": "b08b0dd7adafbff9f0fd7dc8dcad5f3ce6f23c126c81ad8d1666880cc94e6974" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "19ea652db54a0e1f9bf443778eb5b49c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27708, "upload_time": "2018-10-14T18:10:03", "upload_time_iso_8601": "2018-10-14T18:10:03.507183Z", "url": "https://files.pythonhosted.org/packages/28/df/ebb43502e994d52d138fb7225ef8c9e40a6bacfca05569811fbecf6538c5/cymem-2.0.2-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ae8d40ccd7ffe6a7803ada06c2781ce", "sha256": "8e6ad29636edd559b0dfe0a19c5cb5e6257461a5df90839e8c7710ddb005f4b4" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0ae8d40ccd7ffe6a7803ada06c2781ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31282, "upload_time": "2018-10-14T18:10:05", "upload_time_iso_8601": "2018-10-14T18:10:05.448874Z", "url": "https://files.pythonhosted.org/packages/df/b1/4ff2cbd423184bd68e85f1daa6692753cd7710b0ba68552eb64542906a57/cymem-2.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "841860480415fa516686f3ba205ea48a", "sha256": "741957f541fb8322de5a8c711d5d58f80d684225d2aec32fec92484cac931a52" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "841860480415fa516686f3ba205ea48a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27294, "upload_time": "2018-10-14T18:10:07", "upload_time_iso_8601": "2018-10-14T18:10:07.051247Z", "url": "https://files.pythonhosted.org/packages/fe/0f/98f689fa2addfff6da5191a57af8563a3190ac96bbb65172765ddfd99702/cymem-2.0.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce9bf8c97cf2ca7efac3bc6f1fe65877", "sha256": "8d96e95902e781950d7c255b19364a1ed50a204843d63dd386b0abc5e6df5e44" }, "downloads": -1, "filename": "cymem-2.0.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ce9bf8c97cf2ca7efac3bc6f1fe65877", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29806, "upload_time": "2018-10-14T18:10:08", "upload_time_iso_8601": "2018-10-14T18:10:08.814777Z", "url": "https://files.pythonhosted.org/packages/1c/7d/5821f0790c69a92a603e7f326fec4ad6d327dad5f7223b8aa077cd07d22a/cymem-2.0.2-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83e3afbd2b3bed08fc4905a6c1a83c96", "sha256": "584872fd3df176e50c90e37aaca6cb731ac0abcdea4f5b8ad77c30674cfaaa99" }, "downloads": -1, "filename": "cymem-2.0.2-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": false, "md5_digest": "83e3afbd2b3bed08fc4905a6c1a83c96", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 52150, "upload_time": "2018-10-14T18:10:10", "upload_time_iso_8601": "2018-10-14T18:10:10.176184Z", "url": "https://files.pythonhosted.org/packages/b2/6f/7cd2bb18876940a8e7e107b35a3a46723df5f539db59da2f94a94c60f49d/cymem-2.0.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "841f771d406219e6b151ad00e2ed1f33", "sha256": "8dd169ece1629ec4db1a592321e3ae0a9bb62fda2052a351fc36871f314c3569" }, "downloads": -1, "filename": "cymem-2.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "841f771d406219e6b151ad00e2ed1f33", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 28718, "upload_time": "2018-10-14T18:10:11", "upload_time_iso_8601": "2018-10-14T18:10:11.787098Z", "url": "https://files.pythonhosted.org/packages/7b/f4/a682df70ccc0b1d1af894bf9c9be472e0bd543aa50fa08142d4a3cd38c80/cymem-2.0.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c20bc31ba5482e05b00a04a8e30d837", "sha256": "4994c1f3e948bd58a6e38c905221680563b851983a15f1f01e5ff415d560d153" }, "downloads": -1, "filename": "cymem-2.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c20bc31ba5482e05b00a04a8e30d837", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31743, "upload_time": "2018-10-14T18:10:13", "upload_time_iso_8601": "2018-10-14T18:10:13.622354Z", "url": "https://files.pythonhosted.org/packages/6b/d5/c1583c90023608e71ee35b6943d2a5dc488d463b84ecd1c0fddbf23eed44/cymem-2.0.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e27f73954f27d89b36d6d4d59a2c4fb4", "sha256": "0e447fa4cb6dccd0b96257a798370a17bef3ec254a527230058e41816a777c04" }, "downloads": -1, "filename": "cymem-2.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e27f73954f27d89b36d6d4d59a2c4fb4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27878, "upload_time": "2018-10-14T18:10:15", "upload_time_iso_8601": "2018-10-14T18:10:15.028067Z", "url": "https://files.pythonhosted.org/packages/b9/b7/449ccb56e6ea980496217e4be3058903a93e585e9cf15b66ab4720338027/cymem-2.0.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc66692923094dc521c34cba9cc76245", "sha256": "c46a122c524a3270ac5249f590ac2f75f1a83692a3d3a03479cea49de72a0a89" }, "downloads": -1, "filename": "cymem-2.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "bc66692923094dc521c34cba9cc76245", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31054, "upload_time": "2018-10-14T18:10:16", "upload_time_iso_8601": "2018-10-14T18:10:16.676602Z", "url": "https://files.pythonhosted.org/packages/dd/a8/85cc3cf89b797dc11c2907af5362d7ff06538fadeda449acc72379b3cc35/cymem-2.0.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e6219517aa7c070317969273ac0acbb", "sha256": "2c8267dcb15cc6ab318f01ceaf16b8440c0386ae44014d5b22fefe5b0398d05c" }, "downloads": -1, "filename": "cymem-2.0.2-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": false, "md5_digest": "9e6219517aa7c070317969273ac0acbb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52706, "upload_time": "2018-10-14T18:10:18", "upload_time_iso_8601": "2018-10-14T18:10:18.174989Z", "url": "https://files.pythonhosted.org/packages/db/6e/c6d1650f09b8b2910f149ec7c51fd2298e0e93a657f4496d4636c0a43675/cymem-2.0.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89800e571630cf0917044311a1dba329", "sha256": "c63337aa7e1ad4ec182cc7847c6d85390589fbbf1f9f67d1fde8133a9acb7fa8" }, "downloads": -1, "filename": "cymem-2.0.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "89800e571630cf0917044311a1dba329", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 28847, "upload_time": "2018-10-14T18:10:19", "upload_time_iso_8601": "2018-10-14T18:10:19.884430Z", "url": "https://files.pythonhosted.org/packages/66/80/a68db1eb9dbec84fa76cd0d6ec194d030871b3622d19bd7a91cca17502ef/cymem-2.0.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a26ce33579abb5525f5b5beb30b9f66", "sha256": "71710ee0e946a6bd33c86dd9e71f95ad584c65e8bb02615f00ceb0d8348fb303" }, "downloads": -1, "filename": "cymem-2.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a26ce33579abb5525f5b5beb30b9f66", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31915, "upload_time": "2018-10-14T18:10:21", "upload_time_iso_8601": "2018-10-14T18:10:21.404650Z", "url": "https://files.pythonhosted.org/packages/3d/61/9b0520c28eb199a4b1ca667d96dd625bba003c14c75230195f9691975f85/cymem-2.0.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db5c44673f98c3b3d97d65da55769133", "sha256": "081c652ae1aff4759813e93a2fc4df4ba410ce214a0e542988e24c62110d4cd0" }, "downloads": -1, "filename": "cymem-2.0.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "db5c44673f98c3b3d97d65da55769133", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 28011, "upload_time": "2018-10-14T18:10:23", "upload_time_iso_8601": "2018-10-14T18:10:23.169600Z", "url": "https://files.pythonhosted.org/packages/89/79/42db53e48df72e88be9294f0253c4c7905d89a8d1f065c3661c56a8723c9/cymem-2.0.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fc474faa71c5c7a8a8e7c84252bfa20", "sha256": "6e3194135b21bb268030f3473beb8b674b356c330a9fa185dced2f5006cbd5ba" }, "downloads": -1, "filename": "cymem-2.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7fc474faa71c5c7a8a8e7c84252bfa20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31234, "upload_time": "2018-10-14T18:10:25", "upload_time_iso_8601": "2018-10-14T18:10:25.025106Z", "url": "https://files.pythonhosted.org/packages/c2/93/4b543adf6c0d73ed4e05d92abfb644c2743cd656adc8058510fdfac80680/cymem-2.0.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57c6a1078ceb3fcf7998485b0eec6367", "sha256": "ec51273ea08a2c6389bc4dd6b5183354826d916b149a041f2f274431166191bc" }, "downloads": -1, "filename": "cymem-2.0.2-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": false, "md5_digest": "57c6a1078ceb3fcf7998485b0eec6367", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52763, "upload_time": "2018-10-14T18:10:26", "upload_time_iso_8601": "2018-10-14T18:10:26.661093Z", "url": "https://files.pythonhosted.org/packages/d7/11/37da628920bf2999bd8c4ffc40908413622486d5dbc4e60d87a58c428367/cymem-2.0.2-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", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "302e9d0ad45e4a50ee38068270a5a3f2", "sha256": "7f01ba6153427811cd7d35630081c69b32c188a1d330599a826ef3bf17edbd7c" }, "downloads": -1, "filename": "cymem-2.0.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "302e9d0ad45e4a50ee38068270a5a3f2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 28929, "upload_time": "2018-10-14T18:10:27", "upload_time_iso_8601": "2018-10-14T18:10:27.913765Z", "url": "https://files.pythonhosted.org/packages/1d/9e/9f8a486259f8c9539aa686fdac94568c734a517cb495ae787c6ca4dd98e3/cymem-2.0.2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba903bcba4c41bfc33b75a065a7f7a1c", "sha256": "ba47b571d480c0b76d282ff1634372070031d4998a46ae5d8305d49563b74ca6" }, "downloads": -1, "filename": "cymem-2.0.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba903bcba4c41bfc33b75a065a7f7a1c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31956, "upload_time": "2018-10-14T18:10:29", "upload_time_iso_8601": "2018-10-14T18:10:29.340068Z", "url": "https://files.pythonhosted.org/packages/65/26/e534148e509cbebbea3ee29f50f59eb206621d12c35e4594507da8dc54cc/cymem-2.0.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "060ba78f459dd0241d08e33e4c1c65b4", "sha256": "a5966b3171bad9c84a2b19dccda5ab37ae8437c0709a6b72cb42b64ea76a4bd3" }, "downloads": -1, "filename": "cymem-2.0.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "060ba78f459dd0241d08e33e4c1c65b4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 28023, "upload_time": "2018-10-14T18:10:30", "upload_time_iso_8601": "2018-10-14T18:10:30.794969Z", "url": "https://files.pythonhosted.org/packages/eb/cb/4ff546a491f764f67284572d25c57927e3f17103adf979bc99d90128f3eb/cymem-2.0.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c1fc1e962647fb943babb8d23aaaa1e", "sha256": "bf049dc9cf0d3aa4a48ba514b7f1699fb6f35b18ad8c6f018bd13e0bccd9d30c" }, "downloads": -1, "filename": "cymem-2.0.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8c1fc1e962647fb943babb8d23aaaa1e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31286, "upload_time": "2018-10-14T18:10:32", "upload_time_iso_8601": "2018-10-14T18:10:32.483048Z", "url": "https://files.pythonhosted.org/packages/73/26/fb9d708e2570bb48f35ce8b6f796ece9b0805191eb11545697a4e9fe06bc/cymem-2.0.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4029a8cb19488ddf1aea712ce656fd1", "sha256": "ab88b1534f06df07262d9bc5efb3ba07948cdbe9a363eb9eaa4ad42fae6c7b5e" }, "downloads": -1, "filename": "cymem-2.0.2.tar.gz", "has_sig": false, "md5_digest": "a4029a8cb19488ddf1aea712ce656fd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47797, "upload_time": "2018-10-14T15:54:11", "upload_time_iso_8601": "2018-10-14T15:54:11.295517Z", "url": "https://files.pythonhosted.org/packages/8b/dc/0976e04cc46f86e0dd3ee3797ec68057eaafebf31daca9a076dc138b9920/cymem-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "21186a2c7ca3d537e014c26252ec7124", "sha256": "f4f19af4bca81f11922508a9dcf30ce1d2aee4972af9f81ce8e5331a6f46f5e1" }, "downloads": -1, "filename": "cymem-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "21186a2c7ca3d537e014c26252ec7124", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 32525, "upload_time": "2019-11-13T16:46:41", "upload_time_iso_8601": "2019-11-13T16:46:41.480575Z", "url": "https://files.pythonhosted.org/packages/01/5a/0d44fd9ef1765a2e17a566de21ac26c13b02a7a1564106c5c4fd8935c866/cymem-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8986bb92ac11cb1625d898af17fbe342", "sha256": "cd21ec48ee70878d46c486e2f7ae94b32bfc6b37c4d27876c5a5a00c4eb75c3c" }, "downloads": -1, "filename": "cymem-2.0.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8986bb92ac11cb1625d898af17fbe342", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31763, "upload_time": "2019-11-13T16:46:43", "upload_time_iso_8601": "2019-11-13T16:46:43.136862Z", "url": "https://files.pythonhosted.org/packages/6e/7c/a348594e1a2639c0d7e6b5009620a5771ef82a29bdc51f8b638b323224d7/cymem-2.0.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0307d45ecb3f5478b92e0c5e081df0b", "sha256": "6f4cb689a9552e9e13dccc89203c8ab09f210a7ffb92ce27c384a4a0be27b527" }, "downloads": -1, "filename": "cymem-2.0.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c0307d45ecb3f5478b92e0c5e081df0b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54006, "upload_time": "2019-11-13T16:46:44", "upload_time_iso_8601": "2019-11-13T16:46:44.937419Z", "url": "https://files.pythonhosted.org/packages/b5/1b/05d8fb2884ab06ecc77830f8d797d97a2c0ed4679922d2fd00bab499cbb7/cymem-2.0.3-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86e9b677c281bb751f3c24eb92ee91f6", "sha256": "7236252bed70f37b898933dcf8aa875d0829664a245a272516f27b30439df71c" }, "downloads": -1, "filename": "cymem-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "86e9b677c281bb751f3c24eb92ee91f6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32663, "upload_time": "2019-11-13T16:46:46", "upload_time_iso_8601": "2019-11-13T16:46:46.571847Z", "url": "https://files.pythonhosted.org/packages/e7/b5/3e1714ebda8fd7c5859f9b216e381adc0a38b962f071568fd00d67e1b1ca/cymem-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96722be9aac23dd62a05dd5ab6f947b0", "sha256": "719f04a11ca709fc2b47868070d79fccff77e5d502ff32de2f4baa73cb16166f" }, "downloads": -1, "filename": "cymem-2.0.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "96722be9aac23dd62a05dd5ab6f947b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32654, "upload_time": "2019-11-13T16:46:48", "upload_time_iso_8601": "2019-11-13T16:46:48.446783Z", "url": "https://files.pythonhosted.org/packages/dd/ec/904b4741879a2a280a40d5bf0b61449a20d1f75281e14ebee06566f7765b/cymem-2.0.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19688ab119155c1fb26783078603e359", "sha256": "d7505c500d994f11662e5595f5002251f572acc189f18944619352e2636f5181" }, "downloads": -1, "filename": "cymem-2.0.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "19688ab119155c1fb26783078603e359", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54052, "upload_time": "2019-11-13T16:46:49", "upload_time_iso_8601": "2019-11-13T16:46:49.855200Z", "url": "https://files.pythonhosted.org/packages/63/34/a8b682ee9b57db35a5fe4e179b77c1bda0f6a09745669a99cfc27aa2bed7/cymem-2.0.3-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "333ee5ff66d49404bd846ab8620f18e9", "sha256": "c288a1bbdf58c360457443e5297e74844e1961e5e7001dbcb3a5297a41911a11" }, "downloads": -1, "filename": "cymem-2.0.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "333ee5ff66d49404bd846ab8620f18e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 32721, "upload_time": "2019-11-13T16:46:51", "upload_time_iso_8601": "2019-11-13T16:46:51.669584Z", "url": "https://files.pythonhosted.org/packages/e1/79/6ce05ecf4d50344e29749ea7db7ddf427589228fb8fe89b29718c38c27c5/cymem-2.0.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3ee1dc56ac6b5f1f2d15e8135cf71d4", "sha256": "7f5ddceb12b73f7fd2e4398266401b6f887003740ccd18c989a2af04500b5f2b" }, "downloads": -1, "filename": "cymem-2.0.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c3ee1dc56ac6b5f1f2d15e8135cf71d4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 32696, "upload_time": "2019-11-13T16:46:53", "upload_time_iso_8601": "2019-11-13T16:46:53.588043Z", "url": "https://files.pythonhosted.org/packages/84/d1/35eab0c8cc9fd9432becaf3e90144762b3201a45079e62c47a8ae8739763/cymem-2.0.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02a84fbedc767545886cdd71731b6bbb", "sha256": "622c20a57701d02f01a47e856dea248e112638f28c8249dbe3ed95a9702e3d74" }, "downloads": -1, "filename": "cymem-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "02a84fbedc767545886cdd71731b6bbb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31768, "upload_time": "2019-11-13T16:46:54", "upload_time_iso_8601": "2019-11-13T16:46:54.861495Z", "url": "https://files.pythonhosted.org/packages/84/a4/4d5685515ae321a9ee457c64456eddc56dcf65ba97e49bcfba19ef949d16/cymem-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1e0ee4b014b3014f6cf22c288ec6af0", "sha256": "85b9364e099426bd7f445a7705aad87bf6dbb71d79e3802dd8ca14e181d38a33" }, "downloads": -1, "filename": "cymem-2.0.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f1e0ee4b014b3014f6cf22c288ec6af0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 33132, "upload_time": "2019-11-13T16:46:56", "upload_time_iso_8601": "2019-11-13T16:46:56.656913Z", "url": "https://files.pythonhosted.org/packages/41/2d/d24b1b980da72883a6a8dc5f9bdf48bcb892f3ac1579fb300045771693c3/cymem-2.0.3-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33002c376e694c6c10001c1f82a8a0bf", "sha256": "dd24848fbd75b17bab06408da6c029ba7cc615bd9e4a1f755fb3a090025fb922" }, "downloads": -1, "filename": "cymem-2.0.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "33002c376e694c6c10001c1f82a8a0bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 33455, "upload_time": "2019-11-13T16:46:58", "upload_time_iso_8601": "2019-11-13T16:46:58.418957Z", "url": "https://files.pythonhosted.org/packages/8c/1f/43be34e4decc602fae2bda73b05525bc49deff44baeb95611b23a2929195/cymem-2.0.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cffbec980e45730f8ebc77777b74bfb0", "sha256": "5083b2ab5fe13ced094a82e0df465e2dbbd9b1c013288888035e24fd6eb4ed01" }, "downloads": -1, "filename": "cymem-2.0.3.tar.gz", "has_sig": false, "md5_digest": "cffbec980e45730f8ebc77777b74bfb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51043, "upload_time": "2019-11-13T16:47:00", "upload_time_iso_8601": "2019-11-13T16:47:00.222311Z", "url": "https://files.pythonhosted.org/packages/ce/8d/d095bbb109a004351c85c83bc853782fc27692693b305dd7b170c36a1262/cymem-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3.dev0": [ { "comment_text": "", "digests": { "md5": "65cc2f7b07d6c91bb6eb0b760cb88f2a", "sha256": "71b6d0b0457657e5a370a1f9cbbed69cc1594f56bda314eaf9287459a322114e" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "65cc2f7b07d6c91bb6eb0b760cb88f2a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 32591, "upload_time": "2019-11-13T15:16:33", "upload_time_iso_8601": "2019-11-13T15:16:33.133877Z", "url": "https://files.pythonhosted.org/packages/9a/b1/fa02fec394616092b729eac4b9f3367a0b1340b99e306c9f09beabf004ef/cymem-2.0.3.dev0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75b80bc8a7cefea4d859c781f53342d7", "sha256": "ea0ee20e05f7f445a52d483d42d642e459e095d79f898d63fdd8a4f66a39dbd0" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "75b80bc8a7cefea4d859c781f53342d7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31825, "upload_time": "2019-11-13T15:16:35", "upload_time_iso_8601": "2019-11-13T15:16:35.563244Z", "url": "https://files.pythonhosted.org/packages/66/6f/5b6bf333784f940b83843eea379735b913f8eb9b49bca61edeb46d47fbe6/cymem-2.0.3.dev0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f829a1448d262091cf31499c7a093df2", "sha256": "3dcb105873aba94ce21610d75e6d612e4aa10937cd41f8269700b6ff33607db0" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f829a1448d262091cf31499c7a093df2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54068, "upload_time": "2019-11-13T15:16:36", "upload_time_iso_8601": "2019-11-13T15:16:36.930581Z", "url": "https://files.pythonhosted.org/packages/f8/6d/968d0df93a81ae7ca8b10cc9dcb442f8d62810427e0a8dcab35cb228e57b/cymem-2.0.3.dev0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff7723e8331ee190e0803eeef315a5d4", "sha256": "e5ed1fa58cb96896974b6ddae15e737d9a491e5c8bc35a478090752620e8f2b6" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ff7723e8331ee190e0803eeef315a5d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32725, "upload_time": "2019-11-13T15:16:38", "upload_time_iso_8601": "2019-11-13T15:16:38.335410Z", "url": "https://files.pythonhosted.org/packages/85/14/52d0c46b98a39fce182476d8c75ec5cc4eb8802fe05316d630255bd97180/cymem-2.0.3.dev0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e193e5cf1d5b8f4ed082e7fdbba3ad5", "sha256": "289c9b8216b34e49491519d1f5abf8c8eaaf38ad517307b0b7f2ac7d3d3767ff" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5e193e5cf1d5b8f4ed082e7fdbba3ad5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32718, "upload_time": "2019-11-13T15:16:39", "upload_time_iso_8601": "2019-11-13T15:16:39.774077Z", "url": "https://files.pythonhosted.org/packages/02/21/169725a40bc0c649cec9ea1d42d3bf795b21e4007adb1a4549a0617824e8/cymem-2.0.3.dev0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3d3fcf2998a48636b9053c0ab4d07bb", "sha256": "82d3263bd95ef8820c97b5432eaefc8a0cfdd400612568d961ff4142bcb83e6c" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a3d3fcf2998a48636b9053c0ab4d07bb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54111, "upload_time": "2019-11-13T15:16:41", "upload_time_iso_8601": "2019-11-13T15:16:41.296021Z", "url": "https://files.pythonhosted.org/packages/c3/15/87bbf7bfbf6df37d2cc2deae90265fcf8515895760cffc12aa48b9be345b/cymem-2.0.3.dev0-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e3f97796160e7d7df09479fa3c6e910", "sha256": "8d3c7285e7f297c84e628c2554658ad179e47709004800f746c5a437c74918df" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e3f97796160e7d7df09479fa3c6e910", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 32786, "upload_time": "2019-11-13T15:16:42", "upload_time_iso_8601": "2019-11-13T15:16:42.720034Z", "url": "https://files.pythonhosted.org/packages/c3/1f/e4e0d5624277634eba15cc99a2e9382ef6446eb4ce20c86693e18dac09e5/cymem-2.0.3.dev0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2a5249e3555590f0c8785e19abf60ef", "sha256": "7a6428c231cba85e901bb4748c28158d527329c8f414684ddb9368f4d139c7f6" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c2a5249e3555590f0c8785e19abf60ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 32760, "upload_time": "2019-11-13T15:16:44", "upload_time_iso_8601": "2019-11-13T15:16:44.065322Z", "url": "https://files.pythonhosted.org/packages/b5/1c/502591c45d40ce3b4cfcec708df34169fd3eece90001c3bb2d3a87a27dcc/cymem-2.0.3.dev0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "461243ee63e03a084c63aeff7c812f3f", "sha256": "5a06ba9dd01323857aa9064557b1c50b0e730c81deb2d2a89c3d9f35aab34f2e" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "461243ee63e03a084c63aeff7c812f3f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31828, "upload_time": "2019-11-13T15:16:45", "upload_time_iso_8601": "2019-11-13T15:16:45.508885Z", "url": "https://files.pythonhosted.org/packages/52/dd/2cff9a176a98a8354ed7f8d74b4981da5838830c0b92497a37ab16cc16c8/cymem-2.0.3.dev0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49f170de487b505dd4799b185ae027b", "sha256": "21408c2157dceaa94c33b60224eafab84518905c806ca111f73699b5abd92ed0" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c49f170de487b505dd4799b185ae027b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 33196, "upload_time": "2019-11-13T15:16:46", "upload_time_iso_8601": "2019-11-13T15:16:46.924356Z", "url": "https://files.pythonhosted.org/packages/de/eb/160865a2c0137812cf6bf1a0171bfc177b1acdfa9482a7ab5fd911ec77cc/cymem-2.0.3.dev0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3170b9301e99a6893af0b58ed82d4575", "sha256": "8b52178cc4d4337bc36f760d754b0351fa33e54ecd2ab8a6ae1dd7a3d24ff3c6" }, "downloads": -1, "filename": "cymem-2.0.3.dev0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3170b9301e99a6893af0b58ed82d4575", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 33518, "upload_time": "2019-11-13T15:16:48", "upload_time_iso_8601": "2019-11-13T15:16:48.370285Z", "url": "https://files.pythonhosted.org/packages/5a/3c/24969169a46a85771f30635483d7cb6b715d1939f5cc96f0e2eb97c29df0/cymem-2.0.3.dev0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a446025d75d5bbf7268fc6727e2343c", "sha256": "2cca652bbe498c943458a72740ba790617c427a98debab52c6c3cc035a956f8e" }, "downloads": -1, "filename": "cymem-2.0.3.dev0.tar.gz", "has_sig": false, "md5_digest": "6a446025d75d5bbf7268fc6727e2343c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51051, "upload_time": "2019-11-13T15:16:49", "upload_time_iso_8601": "2019-11-13T15:16:49.950875Z", "url": "https://files.pythonhosted.org/packages/20/be/2b57f73a05b27063eb04f91d64057e241dacb66b1872779dab72f8c4ab8c/cymem-2.0.3.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "05d175d751cc56092c1d4d41ab124238", "sha256": "60b5d969f305a7598d86f34c93c37eb52b3388681e70b98081864f0f185da768" }, "downloads": -1, "filename": "cymem-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05d175d751cc56092c1d4d41ab124238", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32086, "upload_time": "2020-11-02T07:48:10", "upload_time_iso_8601": "2020-11-02T07:48:10.407546Z", "url": "https://files.pythonhosted.org/packages/ef/b3/2f9c5b93f22975b23009df0174bbd5c0f4a9732f33186e5eab5ae38e5107/cymem-2.0.4-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acf2679aeaa26313e33ce75b28017b5f", "sha256": "65e5759179b311b8350b82b29744324366e270f96095b16a8e249c73c3f9273f" }, "downloads": -1, "filename": "cymem-2.0.4-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "acf2679aeaa26313e33ce75b28017b5f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35349, "upload_time": "2020-11-02T07:48:11", "upload_time_iso_8601": "2020-11-02T07:48:11.626384Z", "url": "https://files.pythonhosted.org/packages/17/8f/7e15cd364c0a66c5b3c5300a11a1a72348de59a5c39ad9cefd88c462217b/cymem-2.0.4-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65e3a3dc4bad1d1d630e1b38f3105489", "sha256": "02c3994ee57003dd57d9a34417beb9597e51176e9378a757344347b72510ce8d" }, "downloads": -1, "filename": "cymem-2.0.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "65e3a3dc4bad1d1d630e1b38f3105489", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35750, "upload_time": "2020-11-02T07:48:13", "upload_time_iso_8601": "2020-11-02T07:48:13.012601Z", "url": "https://files.pythonhosted.org/packages/49/4d/e65903173537b7cfa05f96d367558454e20b6f06db4f6ab36266f39b1347/cymem-2.0.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47a3007f0c9f7dad7c7513c9236c7730", "sha256": "a61684d01a1413049e9874e073c9577d406d866eabe0d167c5ee15bbeae090a6" }, "downloads": -1, "filename": "cymem-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "47a3007f0c9f7dad7c7513c9236c7730", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31735, "upload_time": "2020-11-02T07:48:14", "upload_time_iso_8601": "2020-11-02T07:48:14.014148Z", "url": "https://files.pythonhosted.org/packages/4b/6c/9112bc14037d4bb8f7bdfc1c2dcef070e7310a81746c23e6086e83c54373/cymem-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44f4e01acb2ec956c1464c255250658c", "sha256": "f8f280f0aef46d32655b1b24ff049bea83b63365604b6c2decb112b44ed851fe" }, "downloads": -1, "filename": "cymem-2.0.4-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "44f4e01acb2ec956c1464c255250658c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35291, "upload_time": "2020-11-02T07:48:15", "upload_time_iso_8601": "2020-11-02T07:48:15.365011Z", "url": "https://files.pythonhosted.org/packages/e4/93/d63c12f492cd9e463e67554fd187adce4efc94451aca1f825caf2f310140/cymem-2.0.4-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb2c826116d7bf8282e234314dcac93c", "sha256": "2d40dfa4b4edf64541192966c67c2706e5058a9c6ce0bdc356e4d6ef1935c9ae" }, "downloads": -1, "filename": "cymem-2.0.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fb2c826116d7bf8282e234314dcac93c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35687, "upload_time": "2020-11-02T07:48:16", "upload_time_iso_8601": "2020-11-02T07:48:16.492460Z", "url": "https://files.pythonhosted.org/packages/08/a0/6210b235a731799ed80ba991b4cdfd9d2fc3a876f8fbad20e97b1169b85a/cymem-2.0.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54216b384c356ffa12cf115a9d9e5336", "sha256": "7bb5791fde8dffa02005f158f5c98d64962adaf8501dac7a9b8156b8767c9a34" }, "downloads": -1, "filename": "cymem-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "54216b384c356ffa12cf115a9d9e5336", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31935, "upload_time": "2020-11-02T07:48:17", "upload_time_iso_8601": "2020-11-02T07:48:17.507526Z", "url": "https://files.pythonhosted.org/packages/45/7a/209a557087d90f1f8c008629461a9983780b061be31e35e2154b96c23e23/cymem-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95f202a6a843893c226965c0c154a801", "sha256": "a61a4702dcc50ebd31fb86a90d1aba5526245af592d756c39c63d58d53360afc" }, "downloads": -1, "filename": "cymem-2.0.4-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "95f202a6a843893c226965c0c154a801", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 35824, "upload_time": "2020-11-02T07:48:18", "upload_time_iso_8601": "2020-11-02T07:48:18.858975Z", "url": "https://files.pythonhosted.org/packages/ba/e0/ccc3693dff0887225084f521f2adeb25a9805c2d4086f8beffbf6613b8b1/cymem-2.0.4-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4061f798bd91b9120702cd7c0d0a9af", "sha256": "ae283889f6f0036fb34d12358fe052d4ea9f5724f05177317f33f302f304b47c" }, "downloads": -1, "filename": "cymem-2.0.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e4061f798bd91b9120702cd7c0d0a9af", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36333, "upload_time": "2020-11-02T07:48:19", "upload_time_iso_8601": "2020-11-02T07:48:19.905442Z", "url": "https://files.pythonhosted.org/packages/35/16/2c61c46614c3f0474690969fbed6d28b3912bdde4842c21618b8eda76686/cymem-2.0.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdf03838cedf6e1e4c42ecb099f9835b", "sha256": "0f169ee07f30c2674ca811693cb13857e236dd7f92b4bc47b0f2bb201e27cc93" }, "downloads": -1, "filename": "cymem-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bdf03838cedf6e1e4c42ecb099f9835b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 32462, "upload_time": "2020-11-02T07:48:21", "upload_time_iso_8601": "2020-11-02T07:48:21.003485Z", "url": "https://files.pythonhosted.org/packages/37/b0/bc3d12c36eefdfc13a0a9d47c9bd9f4cebc08cf6db658b4c14f498523619/cymem-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "188e5350d3adaeb31a3c0ca16ccb32af", "sha256": "45b01ee36ce15aab6df041b4128de38016e3934274b934c44fec43de5100b64c" }, "downloads": -1, "filename": "cymem-2.0.4-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "188e5350d3adaeb31a3c0ca16ccb32af", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 34765, "upload_time": "2020-11-02T07:48:22", "upload_time_iso_8601": "2020-11-02T07:48:22.205451Z", "url": "https://files.pythonhosted.org/packages/09/f8/3e590d4d1793b7c72ce6055f2448177fc6ca07669c669bba1720f59eef14/cymem-2.0.4-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe5f8ac88e24b5ecb14f5775d20ad5e5", "sha256": "58f49a51bd8b76b260f38f8274ec2e4613c328423e0b543a503834de32dfa3c4" }, "downloads": -1, "filename": "cymem-2.0.4-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "fe5f8ac88e24b5ecb14f5775d20ad5e5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 36041, "upload_time": "2020-11-02T07:48:23", "upload_time_iso_8601": "2020-11-02T07:48:23.470736Z", "url": "https://files.pythonhosted.org/packages/48/c5/6f9518cfcf3c826250879beaa1acc861d914bb0109f6397260b055220625/cymem-2.0.4-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "617385d7ba734caa46778b9e5f530b02", "sha256": "2baabeb408e4aaa0f51d7f6d8c53dd05f56decf34fb3f1f3180abe8755815890" }, "downloads": -1, "filename": "cymem-2.0.4.tar.gz", "has_sig": false, "md5_digest": "617385d7ba734caa46778b9e5f530b02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56461, "upload_time": "2020-11-02T07:48:24", "upload_time_iso_8601": "2020-11-02T07:48:24.763111Z", "url": "https://files.pythonhosted.org/packages/ef/25/8cb4d3dfce05cd261adadfec0cbc4d90a7ddf6abac888b2d354042986b64/cymem-2.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "b39fd923f12023e1419e344fea43c291", "sha256": "9d72d69f7a62a280199c3aa7bc550685c47d6d0689b2d299e6492253b86d2437" }, "downloads": -1, "filename": "cymem-2.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b39fd923f12023e1419e344fea43c291", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32080, "upload_time": "2020-12-07T07:10:18", "upload_time_iso_8601": "2020-12-07T07:10:18.086217Z", "url": "https://files.pythonhosted.org/packages/47/ea/42f07b1d2dff1d6d53b1693ce861aca2acedd1368c06fe5cdf7d6e0ad36c/cymem-2.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "573f5aa5b24781f1fe1ec6c38cf383b3", "sha256": "8ea57e6923f40eb51012352161bb5707c14a5a5ce901ff72021e59df06221655" }, "downloads": -1, "filename": "cymem-2.0.5-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "573f5aa5b24781f1fe1ec6c38cf383b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35358, "upload_time": "2020-12-07T07:10:19", "upload_time_iso_8601": "2020-12-07T07:10:19.665672Z", "url": "https://files.pythonhosted.org/packages/6a/52/d4c2070b724faa3168339c610e909e990f17b3d5d2e56083338410a1a3ee/cymem-2.0.5-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87ff1c9cdb12ddb736a61650376479b5", "sha256": "4bd023c2477198b39b660c2a6b0242880649765ecee8461688a57fd4afd2bfc0" }, "downloads": -1, "filename": "cymem-2.0.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "87ff1c9cdb12ddb736a61650376479b5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35752, "upload_time": "2020-12-07T07:10:20", "upload_time_iso_8601": "2020-12-07T07:10:20.978369Z", "url": "https://files.pythonhosted.org/packages/ff/32/363ecc81d058387028e59f4c39e3e469a546f1ba597b3f4d1211a2442741/cymem-2.0.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9d9c1ac5c2462a04cda2f0701be8266", "sha256": "1f0eb9b3d03623dcfc746cf8bff0663b0e347f4aea759965c8932087a0307ee9" }, "downloads": -1, "filename": "cymem-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c9d9c1ac5c2462a04cda2f0701be8266", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31753, "upload_time": "2020-12-07T07:10:22", "upload_time_iso_8601": "2020-12-07T07:10:22.018544Z", "url": "https://files.pythonhosted.org/packages/f5/e4/270d7d5b64528480f6f9923325266486ab286c014ce83610d7bc43368218/cymem-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0610a91d59d3a73ce376e36b50cc516c", "sha256": "a440d63577fcdc9c528c9cc026b7b4f8648193bac462bc0596c9eac10f9fba62" }, "downloads": -1, "filename": "cymem-2.0.5-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0610a91d59d3a73ce376e36b50cc516c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35307, "upload_time": "2020-12-07T07:10:23", "upload_time_iso_8601": "2020-12-07T07:10:23.437808Z", "url": "https://files.pythonhosted.org/packages/b6/34/40547e057c1b31080c1d78f6accf9f1ed6ee46e3fc7ebd8599197915ef89/cymem-2.0.5-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ed3eedc88a6a4b56d539d4462eaa6f6", "sha256": "3d48902d7441645835fefc7832df49feb5362c7300d182475b63a01d25ae44ef" }, "downloads": -1, "filename": "cymem-2.0.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6ed3eedc88a6a4b56d539d4462eaa6f6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35682, "upload_time": "2020-12-07T07:10:24", "upload_time_iso_8601": "2020-12-07T07:10:24.751778Z", "url": "https://files.pythonhosted.org/packages/3f/7f/e4b81e6355e87c08a039cbc64c3044046ba4665a74e9b62246c71976a849/cymem-2.0.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a36f4fdfe8c19006df0ac8870d9413a", "sha256": "f2167c9959fcd639b95d51fa5efaa7c61eef8d686cb75a25412a914f428ce980" }, "downloads": -1, "filename": "cymem-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9a36f4fdfe8c19006df0ac8870d9413a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31932, "upload_time": "2020-12-07T07:10:26", "upload_time_iso_8601": "2020-12-07T07:10:26.147546Z", "url": "https://files.pythonhosted.org/packages/1e/ed/3cead6a7aff2a9ab7abfae37449082a257703b44436dedb65b16bbe74cbd/cymem-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bf553b4259975c4cb685e0207373174", "sha256": "734d82d0d03c2ceb929bc1744c04dbe0a105e68a4947c8406056a36f86c41830" }, "downloads": -1, "filename": "cymem-2.0.5-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7bf553b4259975c4cb685e0207373174", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 35823, "upload_time": "2020-12-07T07:10:27", "upload_time_iso_8601": "2020-12-07T07:10:27.165581Z", "url": "https://files.pythonhosted.org/packages/36/5a/04fcc4f69d519d4ab7de1ed503f9ca723d54c6e363c1276296efcd11b82c/cymem-2.0.5-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85e6cd8307079740b1f5f9b0f18b17d9", "sha256": "01d3ea159f7a3f3192b1e800ed8207dac7586794d903a153198b9ea317f144bc" }, "downloads": -1, "filename": "cymem-2.0.5-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "85e6cd8307079740b1f5f9b0f18b17d9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36335, "upload_time": "2020-12-07T07:10:28", "upload_time_iso_8601": "2020-12-07T07:10:28.130142Z", "url": "https://files.pythonhosted.org/packages/3f/2f/d18320a639dd3d4a5cc25e76fc023dee31a0b172d069914edf6e38e1fa7b/cymem-2.0.5-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86cd97b7f6d728b128f8ec4f026b9fb9", "sha256": "d307f7f6230d861a938837cae4b855226b6845a21c010242a15e9ce6853856cd" }, "downloads": -1, "filename": "cymem-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "86cd97b7f6d728b128f8ec4f026b9fb9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 32458, "upload_time": "2020-12-07T07:10:29", "upload_time_iso_8601": "2020-12-07T07:10:29.200743Z", "url": "https://files.pythonhosted.org/packages/3b/67/a1b90e26d3b705fb07ce2510623279427eb80a6cdd87086dc8d28eb8a068/cymem-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1309530a62da35c77532fd9c44c5be8a", "sha256": "ce1e81c1d031f56b67bac2136e73b4512cbc794706cd570178972d54ba6115d8" }, "downloads": -1, "filename": "cymem-2.0.5-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1309530a62da35c77532fd9c44c5be8a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 34771, "upload_time": "2020-12-07T07:10:30", "upload_time_iso_8601": "2020-12-07T07:10:30.491798Z", "url": "https://files.pythonhosted.org/packages/45/23/c93fc6f6baa276ab862186ced15ca1da9e7503ea532499922ed2208808d5/cymem-2.0.5-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e287f1870cc9e1b04135dabb530eef40", "sha256": "d19f68b90411e02ab33b1654118337f96f41c13a3cd00c4f44f7abed2bc712e7" }, "downloads": -1, "filename": "cymem-2.0.5-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e287f1870cc9e1b04135dabb530eef40", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 36037, "upload_time": "2020-12-07T07:10:31", "upload_time_iso_8601": "2020-12-07T07:10:31.867989Z", "url": "https://files.pythonhosted.org/packages/26/20/05f075a74328056dadce4d9d866ccc6845a955a5fd56f20f923aba37d370/cymem-2.0.5-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a5b4db35ef8f41c2d09b11608cd143", "sha256": "190e15d9cf2c3bde60ae37bddbae6568a36044dc4a326d84081a5fa08818eee0" }, "downloads": -1, "filename": "cymem-2.0.5.tar.gz", "has_sig": false, "md5_digest": "50a5b4db35ef8f41c2d09b11608cd143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9214, "upload_time": "2020-12-07T07:10:33", "upload_time_iso_8601": "2020-12-07T07:10:33.192031Z", "url": "https://files.pythonhosted.org/packages/3e/fb/5899a59ee8d0f02202c1f02fe47671e0c93d1812b1deb2491505718473da/cymem-2.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "92da1b0f247e210e17c5e10e17329cd5", "sha256": "700540b68e96a7056d0691d467df2bbaaf0934a3e6fe2383669998cbee19580a" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "92da1b0f247e210e17c5e10e17329cd5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 32522, "upload_time": "2021-11-08T07:31:55", "upload_time_iso_8601": "2021-11-08T07:31:55.499569Z", "url": "https://files.pythonhosted.org/packages/a2/56/5d85beb543578a5ecbf8568c71899f9f7a195117ea80d750f70ff135216f/cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99991dcdc7af44eca6e81756d2ac4570", "sha256": "971cf0a8437dfb4185c3049c086e463612fe849efadc0f5cc153fc81c501da7d" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "99991dcdc7af44eca6e81756d2ac4570", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 35394, "upload_time": "2021-10-22T07:30:39", "upload_time_iso_8601": "2021-10-22T07:30:39.030453Z", "url": "https://files.pythonhosted.org/packages/a0/a4/d505fd395ee5090d637f0818255812ba40257b7a2dd08ca4c33a2253e259/cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83c6518b1e227a94a13fb0e01bbfd45f", "sha256": "6b0d1a6b0a1296f31fa9e4b7ae5ea49394084ecc883b1ae6fec4844403c43468" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "83c6518b1e227a94a13fb0e01bbfd45f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 36124, "upload_time": "2021-10-22T07:30:40", "upload_time_iso_8601": "2021-10-22T07:30:40.360961Z", "url": "https://files.pythonhosted.org/packages/bf/73/53e5f7db24dbee43ea79edebfaae5fcb81fbc71466ca04c41813ec7d7874/cymem-2.0.6-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5fa7334071e26313cd4fae678b8a91d", "sha256": "b8e1c18bb00800425576710468299153caad20c64ddb6819d40a6a34e21ee21c" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f5fa7334071e26313cd4fae678b8a91d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32093, "upload_time": "2021-10-22T07:30:41", "upload_time_iso_8601": "2021-10-22T07:30:41.969267Z", "url": "https://files.pythonhosted.org/packages/e3/f7/7946c60432cc28abab1cae0c78af8c650e7d4b1c479f7f3f5c9cddcc574e/cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e0b8366a96575d97418efb32e9d5d42", "sha256": "492084aef23ac2ff3da3729e9d36340bc91a96c2dc8c3a82a1926e384ab52412" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7e0b8366a96575d97418efb32e9d5d42", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35299, "upload_time": "2021-10-22T07:30:43", "upload_time_iso_8601": "2021-10-22T07:30:43.320881Z", "url": "https://files.pythonhosted.org/packages/dc/cb/c574231dfc167c8fe03a025d53d8845a2dff72a15a8c4a63ab2c0c4155a7/cymem-2.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b11f0e3cc7a32ca4b86c0775a94607d", "sha256": "af3c01e6b20f9e6c07c7d7cdb7f710e49889d3906c9a3e039546ee6636a34b9a" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6b11f0e3cc7a32ca4b86c0775a94607d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35789, "upload_time": "2021-10-22T07:30:44", "upload_time_iso_8601": "2021-10-22T07:30:44.356902Z", "url": "https://files.pythonhosted.org/packages/d3/ca/0a7d6b7ac314b8b7d62c2c954107133db870c9afe02a3f532ee9b06ad688/cymem-2.0.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fad1f702f2b0b31924ff4592e887b80", "sha256": "d7a59cef8f2fa25d12e2c30138f8623acbd43ad2715e730a709e49c5eef8e1b0" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0fad1f702f2b0b31924ff4592e887b80", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31773, "upload_time": "2021-10-22T07:30:46", "upload_time_iso_8601": "2021-10-22T07:30:46.418973Z", "url": "https://files.pythonhosted.org/packages/91/94/77ca1d1efad56008ee567fe2f23d94ad5be86de32b55ed8a6a15a0782ca8/cymem-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4814e670ca53d4e1b6156ae2bc53b525", "sha256": "dd52d8a81881804625df88453611175ab7e0099b34f52204da1f6940cf2e83c9" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4814e670ca53d4e1b6156ae2bc53b525", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35605, "upload_time": "2021-10-22T07:30:48", "upload_time_iso_8601": "2021-10-22T07:30:48.192883Z", "url": "https://files.pythonhosted.org/packages/07/bc/f8cf9b928bbfe1a716a796d366425ad59fb53d64d8397cf8977d9f3abbbb/cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ced592cb489aa0aace30e3f882d79a2e", "sha256": "4749f220e4c06ec44eb10de13794ff0508cdc4f8eff656cf49cab2cdb3122c0c" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ced592cb489aa0aace30e3f882d79a2e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35696, "upload_time": "2021-10-22T07:30:49", "upload_time_iso_8601": "2021-10-22T07:30:49.862848Z", "url": "https://files.pythonhosted.org/packages/17/ab/d9521dc100b51e7c62a09268d918eebda05cdcf69a0010e1531a611b1f60/cymem-2.0.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b22f0971136db91d330525471b162b10", "sha256": "2aa3fa467d906cd2c27fa0a2e2952dd7925f5fcc7973fab6d815ef6acb25aad8" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b22f0971136db91d330525471b162b10", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31953, "upload_time": "2021-10-22T07:30:51", "upload_time_iso_8601": "2021-10-22T07:30:51.166238Z", "url": "https://files.pythonhosted.org/packages/67/b3/65938e27e534cd4176544ec8800c2ed09f49069473aa2fea9af4624fe178/cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c4256ef3c9be904c898a319738bc273", "sha256": "ea535f74ab6024e7416f93de564e5c81fb7c0964b96280de66f60aeb05f0cf53" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4c4256ef3c9be904c898a319738bc273", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36049, "upload_time": "2021-10-22T07:30:52", "upload_time_iso_8601": "2021-10-22T07:30:52.241841Z", "url": "https://files.pythonhosted.org/packages/d4/23/e1ea9b36df7320f0281ed7a3aaa135c9596c2409d4f6d55e958fdad9e11c/cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc5494de15eb78a9a2586a1aa8c380c7", "sha256": "4f87fe087f2ae36c3e20e2b1a29d7f76a28c035372d0a97655f26223d975235a" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "bc5494de15eb78a9a2586a1aa8c380c7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36354, "upload_time": "2021-10-22T07:30:53", "upload_time_iso_8601": "2021-10-22T07:30:53.245762Z", "url": "https://files.pythonhosted.org/packages/34/40/0d2f208c4a79f06aa530cb6becc67740bb30b0a72d41055a0fa491f3e50f/cymem-2.0.6-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efe1d3c1197890219c0e39d7098ba4cf", "sha256": "a93fba62fe79dbf6fc4d5b6d804a6e114b44af3ff3d40a28833ee39f21bd336b" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "efe1d3c1197890219c0e39d7098ba4cf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 32514, "upload_time": "2021-10-22T07:30:54", "upload_time_iso_8601": "2021-10-22T07:30:54.465230Z", "url": "https://files.pythonhosted.org/packages/ad/be/59de8100ac212a7833af0d33be0290a8f4d9099077849d76aca708af83e3/cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b494147a735bf02eee544582c018f329", "sha256": "04676d696596b0db3f3c5a3936bab12fb6f24278921a6622bb185e61765b2b4d" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b494147a735bf02eee544582c018f329", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 35118, "upload_time": "2021-10-22T07:30:55", "upload_time_iso_8601": "2021-10-22T07:30:55.604886Z", "url": "https://files.pythonhosted.org/packages/aa/39/038d9b5331b48aa27a96095b450057ce861384b9ee309ba111a88b531812/cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d03a5bdb679013b2690227613451c66f", "sha256": "c59293b232b53ebb47427f16cf648e937022f489cff36c11d1d8a1f0075b6609" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d03a5bdb679013b2690227613451c66f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 36079, "upload_time": "2021-10-22T07:30:57", "upload_time_iso_8601": "2021-10-22T07:30:57.580886Z", "url": "https://files.pythonhosted.org/packages/fb/fb/35bbbc83f72c5f2a97e83379ea54d8fba2fb668f8b8f1a81c9b7a5929613/cymem-2.0.6-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c155ce9a8f646f5037d4611a5cd7a7a2", "sha256": "169725b5816959d34de2545b33fee6a8021a6e08818794a426c5a4f981f17e5e" }, "downloads": -1, "filename": "cymem-2.0.6.tar.gz", "has_sig": false, "md5_digest": "c155ce9a8f646f5037d4611a5cd7a7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8241, "upload_time": "2021-10-22T07:30:59", "upload_time_iso_8601": "2021-10-22T07:30:59.068881Z", "url": "https://files.pythonhosted.org/packages/5c/f8/16dccb3f9ac72bbaee8049b1d78df6e0623a1699c402687f2acdf15026af/cymem-2.0.6.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "92da1b0f247e210e17c5e10e17329cd5", "sha256": "700540b68e96a7056d0691d467df2bbaaf0934a3e6fe2383669998cbee19580a" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "92da1b0f247e210e17c5e10e17329cd5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 32522, "upload_time": "2021-11-08T07:31:55", "upload_time_iso_8601": "2021-11-08T07:31:55.499569Z", "url": "https://files.pythonhosted.org/packages/a2/56/5d85beb543578a5ecbf8568c71899f9f7a195117ea80d750f70ff135216f/cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99991dcdc7af44eca6e81756d2ac4570", "sha256": "971cf0a8437dfb4185c3049c086e463612fe849efadc0f5cc153fc81c501da7d" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "99991dcdc7af44eca6e81756d2ac4570", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 35394, "upload_time": "2021-10-22T07:30:39", "upload_time_iso_8601": "2021-10-22T07:30:39.030453Z", "url": "https://files.pythonhosted.org/packages/a0/a4/d505fd395ee5090d637f0818255812ba40257b7a2dd08ca4c33a2253e259/cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83c6518b1e227a94a13fb0e01bbfd45f", "sha256": "6b0d1a6b0a1296f31fa9e4b7ae5ea49394084ecc883b1ae6fec4844403c43468" }, "downloads": -1, "filename": "cymem-2.0.6-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "83c6518b1e227a94a13fb0e01bbfd45f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 36124, "upload_time": "2021-10-22T07:30:40", "upload_time_iso_8601": "2021-10-22T07:30:40.360961Z", "url": "https://files.pythonhosted.org/packages/bf/73/53e5f7db24dbee43ea79edebfaae5fcb81fbc71466ca04c41813ec7d7874/cymem-2.0.6-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5fa7334071e26313cd4fae678b8a91d", "sha256": "b8e1c18bb00800425576710468299153caad20c64ddb6819d40a6a34e21ee21c" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f5fa7334071e26313cd4fae678b8a91d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 32093, "upload_time": "2021-10-22T07:30:41", "upload_time_iso_8601": "2021-10-22T07:30:41.969267Z", "url": "https://files.pythonhosted.org/packages/e3/f7/7946c60432cc28abab1cae0c78af8c650e7d4b1c479f7f3f5c9cddcc574e/cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e0b8366a96575d97418efb32e9d5d42", "sha256": "492084aef23ac2ff3da3729e9d36340bc91a96c2dc8c3a82a1926e384ab52412" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7e0b8366a96575d97418efb32e9d5d42", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35299, "upload_time": "2021-10-22T07:30:43", "upload_time_iso_8601": "2021-10-22T07:30:43.320881Z", "url": "https://files.pythonhosted.org/packages/dc/cb/c574231dfc167c8fe03a025d53d8845a2dff72a15a8c4a63ab2c0c4155a7/cymem-2.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b11f0e3cc7a32ca4b86c0775a94607d", "sha256": "af3c01e6b20f9e6c07c7d7cdb7f710e49889d3906c9a3e039546ee6636a34b9a" }, "downloads": -1, "filename": "cymem-2.0.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6b11f0e3cc7a32ca4b86c0775a94607d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35789, "upload_time": "2021-10-22T07:30:44", "upload_time_iso_8601": "2021-10-22T07:30:44.356902Z", "url": "https://files.pythonhosted.org/packages/d3/ca/0a7d6b7ac314b8b7d62c2c954107133db870c9afe02a3f532ee9b06ad688/cymem-2.0.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fad1f702f2b0b31924ff4592e887b80", "sha256": "d7a59cef8f2fa25d12e2c30138f8623acbd43ad2715e730a709e49c5eef8e1b0" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0fad1f702f2b0b31924ff4592e887b80", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31773, "upload_time": "2021-10-22T07:30:46", "upload_time_iso_8601": "2021-10-22T07:30:46.418973Z", "url": "https://files.pythonhosted.org/packages/91/94/77ca1d1efad56008ee567fe2f23d94ad5be86de32b55ed8a6a15a0782ca8/cymem-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4814e670ca53d4e1b6156ae2bc53b525", "sha256": "dd52d8a81881804625df88453611175ab7e0099b34f52204da1f6940cf2e83c9" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4814e670ca53d4e1b6156ae2bc53b525", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35605, "upload_time": "2021-10-22T07:30:48", "upload_time_iso_8601": "2021-10-22T07:30:48.192883Z", "url": "https://files.pythonhosted.org/packages/07/bc/f8cf9b928bbfe1a716a796d366425ad59fb53d64d8397cf8977d9f3abbbb/cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ced592cb489aa0aace30e3f882d79a2e", "sha256": "4749f220e4c06ec44eb10de13794ff0508cdc4f8eff656cf49cab2cdb3122c0c" }, "downloads": -1, "filename": "cymem-2.0.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ced592cb489aa0aace30e3f882d79a2e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35696, "upload_time": "2021-10-22T07:30:49", "upload_time_iso_8601": "2021-10-22T07:30:49.862848Z", "url": "https://files.pythonhosted.org/packages/17/ab/d9521dc100b51e7c62a09268d918eebda05cdcf69a0010e1531a611b1f60/cymem-2.0.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b22f0971136db91d330525471b162b10", "sha256": "2aa3fa467d906cd2c27fa0a2e2952dd7925f5fcc7973fab6d815ef6acb25aad8" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b22f0971136db91d330525471b162b10", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 31953, "upload_time": "2021-10-22T07:30:51", "upload_time_iso_8601": "2021-10-22T07:30:51.166238Z", "url": "https://files.pythonhosted.org/packages/67/b3/65938e27e534cd4176544ec8800c2ed09f49069473aa2fea9af4624fe178/cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c4256ef3c9be904c898a319738bc273", "sha256": "ea535f74ab6024e7416f93de564e5c81fb7c0964b96280de66f60aeb05f0cf53" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4c4256ef3c9be904c898a319738bc273", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36049, "upload_time": "2021-10-22T07:30:52", "upload_time_iso_8601": "2021-10-22T07:30:52.241841Z", "url": "https://files.pythonhosted.org/packages/d4/23/e1ea9b36df7320f0281ed7a3aaa135c9596c2409d4f6d55e958fdad9e11c/cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc5494de15eb78a9a2586a1aa8c380c7", "sha256": "4f87fe087f2ae36c3e20e2b1a29d7f76a28c035372d0a97655f26223d975235a" }, "downloads": -1, "filename": "cymem-2.0.6-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "bc5494de15eb78a9a2586a1aa8c380c7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36354, "upload_time": "2021-10-22T07:30:53", "upload_time_iso_8601": "2021-10-22T07:30:53.245762Z", "url": "https://files.pythonhosted.org/packages/34/40/0d2f208c4a79f06aa530cb6becc67740bb30b0a72d41055a0fa491f3e50f/cymem-2.0.6-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efe1d3c1197890219c0e39d7098ba4cf", "sha256": "a93fba62fe79dbf6fc4d5b6d804a6e114b44af3ff3d40a28833ee39f21bd336b" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "efe1d3c1197890219c0e39d7098ba4cf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 32514, "upload_time": "2021-10-22T07:30:54", "upload_time_iso_8601": "2021-10-22T07:30:54.465230Z", "url": "https://files.pythonhosted.org/packages/ad/be/59de8100ac212a7833af0d33be0290a8f4d9099077849d76aca708af83e3/cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b494147a735bf02eee544582c018f329", "sha256": "04676d696596b0db3f3c5a3936bab12fb6f24278921a6622bb185e61765b2b4d" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b494147a735bf02eee544582c018f329", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 35118, "upload_time": "2021-10-22T07:30:55", "upload_time_iso_8601": "2021-10-22T07:30:55.604886Z", "url": "https://files.pythonhosted.org/packages/aa/39/038d9b5331b48aa27a96095b450057ce861384b9ee309ba111a88b531812/cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d03a5bdb679013b2690227613451c66f", "sha256": "c59293b232b53ebb47427f16cf648e937022f489cff36c11d1d8a1f0075b6609" }, "downloads": -1, "filename": "cymem-2.0.6-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d03a5bdb679013b2690227613451c66f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 36079, "upload_time": "2021-10-22T07:30:57", "upload_time_iso_8601": "2021-10-22T07:30:57.580886Z", "url": "https://files.pythonhosted.org/packages/fb/fb/35bbbc83f72c5f2a97e83379ea54d8fba2fb668f8b8f1a81c9b7a5929613/cymem-2.0.6-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c155ce9a8f646f5037d4611a5cd7a7a2", "sha256": "169725b5816959d34de2545b33fee6a8021a6e08818794a426c5a4f981f17e5e" }, "downloads": -1, "filename": "cymem-2.0.6.tar.gz", "has_sig": false, "md5_digest": "c155ce9a8f646f5037d4611a5cd7a7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8241, "upload_time": "2021-10-22T07:30:59", "upload_time_iso_8601": "2021-10-22T07:30:59.068881Z", "url": "https://files.pythonhosted.org/packages/5c/f8/16dccb3f9ac72bbaee8049b1d78df6e0623a1699c402687f2acdf15026af/cymem-2.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }