{ "info": { "author": "Youhei Sakurai", "author_email": "sakurai.youhei@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Win32 (MS Windows)", "Intended Audience :: Developers", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Operating System :: Microsoft :: Windows", "Programming Language :: C", "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" ], "description": "PyMemoryModule\n==============\n\nPyMemoryModule is a Python binding for\n`MemoryModule `__.\n\n|Build status|\n\nBy this module, you can load DLL completely from memory - without\nstoring on the disk first - all thanks to\n`MemoryModule `__ written by\nJoachim Bauch.\n\nHow to install\n==============\n\n::\n\n pip install pymemorymodule\n\nPackages are available at\n`PyPI `__ and `PyPI\ntest `__.\n\nHow to use\n==========\n\n::\n\n import pymemorymodule as pymm\n from ctypes import cast, c_int, CFUNCTYPE\n\n with open(\"path/to/library.dll\", \"rb\") as fp:\n # Load DLL from bytes object\n handle = pymm.MemoryLoadLibrary(fp.read())\n\n # __declspec(dllexport) int add(int a, int b)\n add = cast(\n pymm.MemoryGetProcAddress(handle, \"add\"),\n CFUNCTYPE(c_int, c_int, c_int)\n )\n\n # Use function exported from DLL\n assert add(1, 2) == 3\n\n # Free loaded DLL\n pymm.MemoryFreeLibrary(handle)\n\nHow to build and test\n=====================\n\n::\n\n python setup.py build_ext -i test\n\nHow to run code check\n=====================\n\n::\n\n python -m pip install flake8\n python -m flake8 --show-source setup.py test.py\n\nHow to prepare README.rst\n=========================\n\n::\n\n python setup.py md2rst\n\nMemoryModule\n============\n\nhttps://github.com/fancycode/MemoryModule\n\nLicense\n=======\n\nMozilla Public License Version 2.0 (MPL2.0)\n\nSee also `license of\nMemoryModule `__.\n\nNote: PyMemoryModule also distributes a few lines of MIT licensed codes\ntaken from `py3c project `__.\n\n.. |Build status| image:: https://img.shields.io/appveyor/ci/sakurai_youhei/pymemorymodule/master.svg?label=Python%202.6%20to%202.7%2C%203.3%20to%203.5%20%2F%20win32%20%26%20win_amd64\n :target: https://ci.appveyor.com/project/sakurai_youhei/pymemorymodule/branch/master", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/sakurai_youhei/pymemorymodule/overview", "keywords": "MemoryModule,DLL,Windows", "license": "MPL2.0", "maintainer": null, "maintainer_email": null, "name": "pymemorymodule", "package_url": "https://pypi.org/project/pymemorymodule/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pymemorymodule/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://bitbucket.org/sakurai_youhei/pymemorymodule/overview" }, "release_url": "https://pypi.org/project/pymemorymodule/0.1.0/", "requires_dist": null, "requires_python": null, "summary": "PyMemoryModule is a Python binding for MemoryModule.", "version": "0.1.0" }, "last_serial": 2442175, "releases": { "0.0.6": [ { "comment_text": "", "digests": { "md5": "680eaf5665244b73e270540a6438040e", "sha256": "6e92650f64d047577303d5e61553f1240a6880fa04f3a0166bc5071f4871fd36" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "680eaf5665244b73e270540a6438040e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10764, "upload_time": "2016-09-15T14:35:37", "url": "https://files.pythonhosted.org/packages/99/4c/98792b7d29eb93bf1cf4fde9809b6828d666232e3afb455f9151a767aa4f/pymemorymodule-0.0.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0caf443c471e8cc14294414dc9f2d624", "sha256": "8cac0b083f09d3f50f9c7e616b91fc7240fccb540b4abbb0bc3b9afda4260095" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "0caf443c471e8cc14294414dc9f2d624", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11540, "upload_time": "2016-09-15T14:36:38", "url": "https://files.pythonhosted.org/packages/69/b3/4ef078a557d6d08d9258798f222dd2e20e30283e2c8d5397ea53478a37d4/pymemorymodule-0.0.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "12dfec3eb9dd0a5b34aafdaca39428a2", "sha256": "918c06a5c63c6b2072d29927a9608c97f1db07e45f052d464e68c5c059f802a1" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "12dfec3eb9dd0a5b34aafdaca39428a2", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10705, "upload_time": "2016-09-15T14:37:27", "url": "https://files.pythonhosted.org/packages/6d/b8/3bc7302af043e1c2dd329564b6cf496b362d6335d03a82cd4cb744c8e8f1/pymemorymodule-0.0.6-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3e6eb52aa83afe0eb32f134ac3fa8017", "sha256": "47ef86f5efca0ab18f6f69343a55156f2e11bcba2b1086256f5a597208a561d0" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "3e6eb52aa83afe0eb32f134ac3fa8017", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11489, "upload_time": "2016-09-15T14:38:09", "url": "https://files.pythonhosted.org/packages/47/5a/d1ff0f9ff76a53d1f67426da4e4ce2a7413cc3c7d9272a5b8844c2b67b5e/pymemorymodule-0.0.6-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3dec5037fe0578f407233b77158eb461", "sha256": "f914d42e90f9302495c88118907eeec32f48a38525f56ba4c57ab5a008d8b966" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "3dec5037fe0578f407233b77158eb461", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10705, "upload_time": "2016-09-15T14:38:49", "url": "https://files.pythonhosted.org/packages/5b/9b/5001c9530737134f2516fe98eb772f9f84f9196d21e6cdf2bd8915749287/pymemorymodule-0.0.6-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a90d10be5a778474eeeb8d0efd4374e1", "sha256": "c5b8e07b4e832303e742074af74548b0f51f3bcc1cb034c68ccee2cda4881973" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "a90d10be5a778474eeeb8d0efd4374e1", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11490, "upload_time": "2016-09-15T14:39:37", "url": "https://files.pythonhosted.org/packages/46/e5/ecd7c38e1a7cb2ce7570929c9518973b3371d3d82218694e95ba25fb5c13/pymemorymodule-0.0.6-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a9a100809d82455c32d74b8fa5cd01c8", "sha256": "810b2b2f438dca167f3468740a5f5d82e4db961ef8eb17b67c7d5ec34025203d" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "a9a100809d82455c32d74b8fa5cd01c8", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11121, "upload_time": "2016-09-15T14:40:19", "url": "https://files.pythonhosted.org/packages/a3/cb/6fa5f9dba2a3032681d9aee4d85cdaf5dd69dc8b90e786bb5bbc352a0a69/pymemorymodule-0.0.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "94b7871e20db1eebd7ff94beaac005e3", "sha256": "f4da6b5549e9943522fdaa5d10597eaa5c96db3180c775a6c75250766d57f516" }, "downloads": -1, "filename": "pymemorymodule-0.0.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "94b7871e20db1eebd7ff94beaac005e3", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12552, "upload_time": "2016-09-15T14:41:11", "url": "https://files.pythonhosted.org/packages/04/06/2e6256db383a0dd93ac3dedacbda1c13c304fc81fee77c1f0abcddc451e9/pymemorymodule-0.0.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9a3cf47db5377638155d82140469124d", "sha256": "1cc9b53fb76c378f9c3c1daeb50a957f1e575f9977108222cfef7e0756a0ddaa" }, "downloads": -1, "filename": "pymemorymodule-0.0.6.tar.gz", "has_sig": false, "md5_digest": "9a3cf47db5377638155d82140469124d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13441, "upload_time": "2016-09-15T14:35:35", "url": "https://files.pythonhosted.org/packages/71/1e/ef768963cc79938c43892e426924a8b7f320f206ed7a6a3cc98b53a6b42f/pymemorymodule-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "24b4fea0e2cefd08155465e4a9dfd4e4", "sha256": "40e6e5a35a0637f99a173ca4514e55e39f22908cd8dc6b5d1e7b8dacb85846cc" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "24b4fea0e2cefd08155465e4a9dfd4e4", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11010, "upload_time": "2016-09-16T08:58:03", "url": "https://files.pythonhosted.org/packages/4d/e2/e6174a367c35dca706957d1f3c04d4b976800cf48501becac7d6576bcded/pymemorymodule-0.0.7-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "cd8367c4a5db42a7ad4233c50ff5301d", "sha256": "c9185bb9f0e869784099c0ef78156ce4a34f96fa8192d5a7ba63f1cedee0bf38" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "cd8367c4a5db42a7ad4233c50ff5301d", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11786, "upload_time": "2016-09-16T08:58:43", "url": "https://files.pythonhosted.org/packages/1b/35/ea6e49fc02e48ffd356ea8491720d8f1283cc907bf0bb0a24c1d8485b86b/pymemorymodule-0.0.7-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6ee3486f5aa17b02c1a339bc74878185", "sha256": "75813b0ffacd71488961adb3d0e181a6bf408a533eed78a35f2465c95e97595c" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6ee3486f5aa17b02c1a339bc74878185", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10782, "upload_time": "2016-09-16T08:59:25", "url": "https://files.pythonhosted.org/packages/e8/52/122a01c16032c677cff9d98a546bdca9a92261dbe9995f870ac6ffe6b0ee/pymemorymodule-0.0.7-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "62537fce58c9de7a12324eca21969a29", "sha256": "b20cf30804267cd32d803d10244e94899ead60265dc5043b17e0cef47cbde31c" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "62537fce58c9de7a12324eca21969a29", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11529, "upload_time": "2016-09-16T09:00:11", "url": "https://files.pythonhosted.org/packages/24/a5/717ff6b893aaeafb141cc568723c9f27e28821dfab29b6872d496642a237/pymemorymodule-0.0.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9141ea505ef7564b7cadf62611a7880a", "sha256": "0266b788dd83534aaa12e53d900d5afa40a137be8c7ca2f33b59da2de8ac7786" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "9141ea505ef7564b7cadf62611a7880a", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10715, "upload_time": "2016-09-16T09:00:57", "url": "https://files.pythonhosted.org/packages/36/97/cf7afd3e6eaf2bb046db557f16a265dbb4b41f36ca71b5e4bfd2969e8623/pymemorymodule-0.0.7-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "546468cf44de2f0067282ccb4b5e32d3", "sha256": "9507cdce5cb518170914b860f8eb3b176f8dfe26f0985f4cd5d54617c4cfc150" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "546468cf44de2f0067282ccb4b5e32d3", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11495, "upload_time": "2016-09-16T09:01:37", "url": "https://files.pythonhosted.org/packages/c0/b8/5a2fe28cc984ba32dbfcff1bcd3044e5198f964744a21420f498596d0537/pymemorymodule-0.0.7-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "89bfa8b6e4d97fc219ed1af5b9ae2d0d", "sha256": "c7f36a02c2163a586a6c598b39becf5ac4bd2cdd61af8a4840f6d202c9f2e791" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "89bfa8b6e4d97fc219ed1af5b9ae2d0d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10712, "upload_time": "2016-09-16T09:02:17", "url": "https://files.pythonhosted.org/packages/7a/fe/fab231ce5c667d90d299ee9edb5bfd6016d4d13cb4f4f64e2a2e42886468/pymemorymodule-0.0.7-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "651d0108190e7862279c0f1994c9bd46", "sha256": "cdb296cf06ab2b557f5307d80cbd312710a69ad65003be7fec0f8b823ce02039" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "651d0108190e7862279c0f1994c9bd46", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11496, "upload_time": "2016-09-16T09:02:56", "url": "https://files.pythonhosted.org/packages/f4/7d/238b9c9cc4d794629f975867f288bdb865628902fa04a28121a182638043/pymemorymodule-0.0.7-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "eedfffa65eedc09055742fdb5439b652", "sha256": "e6c59c5a37dd844c013578cbe843b90430e7f4da55dbaebe0ee137f1abd537b0" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "eedfffa65eedc09055742fdb5439b652", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11143, "upload_time": "2016-09-16T09:03:32", "url": "https://files.pythonhosted.org/packages/d2/c2/3bf4c7523f4acce472ff116d82398c1fbd7093b6edef0208a32f8e283bcc/pymemorymodule-0.0.7-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "be8ba351278b347e211fc63d854dd5be", "sha256": "a5c9af99ebeddfc25160cffa190ae3a2f85e4f011d3e357efa2770c207718c34" }, "downloads": -1, "filename": "pymemorymodule-0.0.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "be8ba351278b347e211fc63d854dd5be", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12563, "upload_time": "2016-09-16T09:04:14", "url": "https://files.pythonhosted.org/packages/e6/10/5b78f8094fb3413a2e99a3dbfa739e38c216d35ec9f991ba28971aa54ccb/pymemorymodule-0.0.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e9f02694e10238aa04b3f93992273d55", "sha256": "72696b0ffc3f65770807928303af9fb7b4cdf6a2cf4b8d30c775d3b2f379f4e7" }, "downloads": -1, "filename": "pymemorymodule-0.0.7.tar.gz", "has_sig": false, "md5_digest": "e9f02694e10238aa04b3f93992273d55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13640, "upload_time": "2016-09-16T08:58:00", "url": "https://files.pythonhosted.org/packages/54/9d/e185793e54022e0d131d298d4c48e9f18195ea588650362bdf5057f6159c/pymemorymodule-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "d1dde58b4a3a3aea475d658aed777316", "sha256": "185861df43438bdc916a26a812b4a74e08d672716f5a2516ca47cc1806c2e4d3" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "d1dde58b4a3a3aea475d658aed777316", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11150, "upload_time": "2016-09-21T14:27:11", "url": "https://files.pythonhosted.org/packages/6a/fb/94f3e960dd3c7551e01d07b94d6216abedd397f3ee14f91563914d1b8c37/pymemorymodule-0.0.8-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9113f96d456c5460678507f3aef87e88", "sha256": "8edeac62141ddc5f7ed610ce2195069ae0fd4c6688d9ccbfafeecbacec82d706" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "9113f96d456c5460678507f3aef87e88", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11924, "upload_time": "2016-09-21T14:27:51", "url": "https://files.pythonhosted.org/packages/06/8d/22b4bfa2f999b17476ad28085fbd43ec012fc325e50f7676bca82ecc1459/pymemorymodule-0.0.8-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "44cf9fe64fc547264fb737ad9ce86b3d", "sha256": "323f16b181b103fa82292ba24cce6b28ef6e639fdc65fa3e2cf54ba252cfd0b8" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "44cf9fe64fc547264fb737ad9ce86b3d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10919, "upload_time": "2016-09-21T14:28:41", "url": "https://files.pythonhosted.org/packages/c8/a6/db704478f0b7b6c636feef272862db3b781de3d67b6464610adc925b3dc6/pymemorymodule-0.0.8-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "658ce1f4e656486adc1f5cb65d50fce4", "sha256": "b901949051fbe0a7997781ff7487188c4a866fee6aff5c89514dbb8552eaad23" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "658ce1f4e656486adc1f5cb65d50fce4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11667, "upload_time": "2016-09-21T14:29:17", "url": "https://files.pythonhosted.org/packages/52/45/20a3e35bb737ef6556e7f9fa7ee0ff6e4162136ff69b8804853216437d8c/pymemorymodule-0.0.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4b32317576777cae15a306f8796452de", "sha256": "5c1c733a5e93174bbb6b82b8374f909b96a279bd715a5efa8e3d29637af06e84" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "4b32317576777cae15a306f8796452de", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10845, "upload_time": "2016-09-21T14:30:10", "url": "https://files.pythonhosted.org/packages/bf/d0/42a910f8dadca275f398eb1f4cfd9b5de17b3cffe37cf830e3ec281d4cd5/pymemorymodule-0.0.8-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "51d95f786bfa81549b25a03c3ea5ec21", "sha256": "6d1650e34acf7e762875d76d818c26d39da05ad23184fc92e80f493cd3c8655d" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "51d95f786bfa81549b25a03c3ea5ec21", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11623, "upload_time": "2016-09-21T14:31:09", "url": "https://files.pythonhosted.org/packages/f9/c6/13d92d63b3252c6ff4d89a000999eee0f9f0bb13250f66298312d1d0ae60/pymemorymodule-0.0.8-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9af272a2255fbc697a1d1c8b4eba0525", "sha256": "12bf91244fc83286e7c8c072ff3066feee7af956379721982724e2bdd7896ff6" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9af272a2255fbc697a1d1c8b4eba0525", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10843, "upload_time": "2016-09-21T14:31:50", "url": "https://files.pythonhosted.org/packages/c7/f5/4710661426561825918eb8d504510714e1a30f4c5a34f715b710e93453af/pymemorymodule-0.0.8-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "18fd3d706d85fb0dba3e43722625fde7", "sha256": "56bc9eb00a4dcf484c1288297090631ab0ec5355eda6d2d2a09bf19b5afe5910" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "18fd3d706d85fb0dba3e43722625fde7", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11627, "upload_time": "2016-09-21T14:32:44", "url": "https://files.pythonhosted.org/packages/e6/88/65a08038a8ab1d23c6025d741626f8ee16a162dc8fe43224adcb8a4ccb20/pymemorymodule-0.0.8-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c55492425db7e6c1d9c8667319bbaba3", "sha256": "443a5affc93b953c78580609f59241bd7984f312de81244216fce251bc432886" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c55492425db7e6c1d9c8667319bbaba3", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11283, "upload_time": "2016-09-21T14:33:38", "url": "https://files.pythonhosted.org/packages/ec/a9/49354461796f38729449e8ce70ecf3dd17afc9a0223f68f3f3558a2740e8/pymemorymodule-0.0.8-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1143d904d135abf99f7e35fe801fa1ec", "sha256": "3989aba82e3ad2db2260cec3987dfc222dd5f4ab513ac811d0a61bf20830f699" }, "downloads": -1, "filename": "pymemorymodule-0.0.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1143d904d135abf99f7e35fe801fa1ec", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12697, "upload_time": "2016-09-21T14:34:20", "url": "https://files.pythonhosted.org/packages/11/d9/804dabf35b7433148a0085117f0234433abd6f10001d8f777af74802f3c8/pymemorymodule-0.0.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "55b122cb850019999b0c0f151ec19933", "sha256": "f8710fa8c3e1a7cbd9d6cc7238ec16c47e664a2e169c5049bf16a37bbef502b9" }, "downloads": -1, "filename": "pymemorymodule-0.0.8.tar.gz", "has_sig": false, "md5_digest": "55b122cb850019999b0c0f151ec19933", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13720, "upload_time": "2016-09-21T14:27:08", "url": "https://files.pythonhosted.org/packages/44/c6/370ba53411f138144266d36a4cca7bc27d6b53f3983820fe95de2a0eabf4/pymemorymodule-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "a85d3b7d2753f87692b296c6a5f4acb4", "sha256": "8a42d472916231510b64705608a0f6f423386460cbef86487f66c3ebfff33177" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "a85d3b7d2753f87692b296c6a5f4acb4", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11149, "upload_time": "2016-09-22T15:41:47", "url": "https://files.pythonhosted.org/packages/1b/7b/7f54f6222bd5f73f77d12c611b5f1833cc194e6613da7c7df1d91cd23e1e/pymemorymodule-0.0.9-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9620277b8c117cf789f07b08ba2b13f5", "sha256": "91d203cc1aa685515713f62b8ef4af0fb5e022671f74b3df76e4d454372b11d3" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "9620277b8c117cf789f07b08ba2b13f5", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11926, "upload_time": "2016-09-22T15:42:34", "url": "https://files.pythonhosted.org/packages/db/56/9d93a8bf205a65b292f86af27db0e768141cc754d747f9bd52bb702dc4df/pymemorymodule-0.0.9-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "56c56105a1b2f7252e13df1a4a1cf76f", "sha256": "c82ebd26f86c38f17d764bc8951eebf9e235b3eb2a49c5fe018c89b3fbf87517" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "56c56105a1b2f7252e13df1a4a1cf76f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10918, "upload_time": "2016-09-22T15:43:12", "url": "https://files.pythonhosted.org/packages/b9/4b/f7af1c8adc175eff3845be78d95f9ea0571a2cd699b11190a210894c827d/pymemorymodule-0.0.9-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "eb3eae341d6900d0de642690ea698153", "sha256": "881c27a10c56f580a98fbf73fd44eba3c8c4fa74a3e53443bd7c3d5609b7ace2" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "eb3eae341d6900d0de642690ea698153", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11669, "upload_time": "2016-09-22T15:44:12", "url": "https://files.pythonhosted.org/packages/c7/d9/f812756da7a0a451382ad8a467b2b4bfc0330f0dfbce95a3778806a63fd7/pymemorymodule-0.0.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dc777f2ba958ef36e5cdc0dd53ec3795", "sha256": "ecf043942ae74f0312cfda44b2a008d36bd1920d67382e7de8e8a3227318d74b" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "dc777f2ba958ef36e5cdc0dd53ec3795", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10845, "upload_time": "2016-09-22T15:44:54", "url": "https://files.pythonhosted.org/packages/30/63/632c6930225bef0c9a8d36f97b377d0a38de828259c6bf1a9ee129871ce6/pymemorymodule-0.0.9-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f4dc7194eb1ece8605d24f3b3bfcb117", "sha256": "2b1a4e2459614fd3c29d501a421ae0296223413da52126f628da3ba639b1d40a" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "f4dc7194eb1ece8605d24f3b3bfcb117", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11628, "upload_time": "2016-09-22T15:45:40", "url": "https://files.pythonhosted.org/packages/ac/9f/df64050e7f9a9b3b834c5e4c3ba3bc652ef9d9ab631b004675d49955b165/pymemorymodule-0.0.9-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "363b406457e3f24079c69d35c729ce74", "sha256": "baa9983053cf2786d8d28a9b31b5b0c87a40047ef8a85aca4f120beb061477c4" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "363b406457e3f24079c69d35c729ce74", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10844, "upload_time": "2016-09-22T15:46:24", "url": "https://files.pythonhosted.org/packages/ad/e7/a30307b6498c66a4772a5817e25a5362e728cd76a1da278aa07717a33092/pymemorymodule-0.0.9-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0933f70b685b3b3b2ec9bd5a41904c9d", "sha256": "b98e536e1744341a21f3300048f4446609648b66265fcb74fea7f41b0eb8d2d4" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0933f70b685b3b3b2ec9bd5a41904c9d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11631, "upload_time": "2016-09-22T15:47:12", "url": "https://files.pythonhosted.org/packages/34/0a/a6d0c5f6e2ffa36def4a6cc915dbec20fb275359d9383ab4b1f6fb71aac2/pymemorymodule-0.0.9-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5b65acf8693ed3093be008a39073649e", "sha256": "a6ab5b413128ef40766f4ead4b813fc60d0853ebfa04f6c5a4092ec34e682d12" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5b65acf8693ed3093be008a39073649e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11286, "upload_time": "2016-09-22T15:47:51", "url": "https://files.pythonhosted.org/packages/17/64/4b6b3c6440a543d4898f49b3f7c1455acb9634b4ad17762828516dece1ec/pymemorymodule-0.0.9-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e5948b6ee632a2a85c39548f30ebfb83", "sha256": "cd8a96cb8323b8f464bae3e2690870bc9afe6c344910499f3f64aface19c510f" }, "downloads": -1, "filename": "pymemorymodule-0.0.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e5948b6ee632a2a85c39548f30ebfb83", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12694, "upload_time": "2016-09-22T15:48:30", "url": "https://files.pythonhosted.org/packages/02/4a/fee627392ede15a2b1793b56a7fd0a424889c258d448964d40dc1a179c7b/pymemorymodule-0.0.9-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e7be4fb0a3c70e0f74d89e7b88d6f1e4", "sha256": "529637882a73fdf82f2982134b6660ff9ea80060ee14ae79883e4004eda28a69" }, "downloads": -1, "filename": "pymemorymodule-0.0.9.tar.gz", "has_sig": false, "md5_digest": "e7be4fb0a3c70e0f74d89e7b88d6f1e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13723, "upload_time": "2016-09-22T15:41:44", "url": "https://files.pythonhosted.org/packages/43/a8/c20c828a04a0f574db34657050d0cc77f93c7655beb6bc21514d78e415b4/pymemorymodule-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "780c30160ef854da94b63a2d438ea266", "sha256": "389ed84ef1c16bd4e2d5b25823bf3762116106ac16c2ec39d5c09f43e33ba51a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "780c30160ef854da94b63a2d438ea266", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11199, "upload_time": "2016-11-04T11:16:53", "url": "https://files.pythonhosted.org/packages/2c/0a/74386257b66f8b348b6513f54529d0acf60b7f10c4ac79b54b8d36a42f3e/pymemorymodule-0.1.0-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "633af79a315d96f7cdd4ae2fe0969fcf", "sha256": "7526501001013c5c972ef62c03d7c03faf554bb3de16bdc87fe35466a9546fcc" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "633af79a315d96f7cdd4ae2fe0969fcf", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11981, "upload_time": "2016-11-04T11:17:27", "url": "https://files.pythonhosted.org/packages/da/b0/e836a95daf85e37bf28fa2776ed054f6e586c97a70c726dabb86b4ef25ce/pymemorymodule-0.1.0-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9d79ae032acc6a1bc1b73ebe87864c33", "sha256": "990f78a835fac8c48f7131d1f46f60fca83169ba38e9b996984c62c379864001" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9d79ae032acc6a1bc1b73ebe87864c33", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10960, "upload_time": "2016-11-04T11:18:05", "url": "https://files.pythonhosted.org/packages/39/b1/0304a24d05fc6a20029de881ce62b82de64c667cdf4176c43b25de5891a6/pymemorymodule-0.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "de9527eb3a42dfcdcd646030906ff026", "sha256": "2c74b70b2bdb37fed7c8ce064194c0456e12109c93b592b64913a0aad1f4764a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "de9527eb3a42dfcdcd646030906ff026", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11724, "upload_time": "2016-11-04T11:18:39", "url": "https://files.pythonhosted.org/packages/f0/a0/f0345613fcefea89e6d6570618baec35424ff9b013823101b6d73a43dcec/pymemorymodule-0.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a5623310c7374b70a552ee87b7ab62b8", "sha256": "5c72a499340d8dc8a3f4059ae0f8a924fbad0a93d167a65f1b48d7978d729666" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "a5623310c7374b70a552ee87b7ab62b8", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10906, "upload_time": "2016-11-04T11:19:15", "url": "https://files.pythonhosted.org/packages/a6/eb/cdad628a635d01e5f1d26c32bcdfecf69430948aa5bbe036954e05cb4ef0/pymemorymodule-0.1.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0557ce15eaff669f91cf9ebf117003c7", "sha256": "7aab136edbecf80fad49d119309f627238edeaf2c5126e5c1438095ca99f5a9e" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "0557ce15eaff669f91cf9ebf117003c7", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11703, "upload_time": "2016-11-04T11:19:56", "url": "https://files.pythonhosted.org/packages/b4/8b/89b4edd30e37779b4b78b9084d95f10922b89ca5122fa556db53a59ae807/pymemorymodule-0.1.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "63f5bf01365ce76b9f117d1e26b79b7b", "sha256": "026b7ab7cbe30384050fc3a7e2e4d3a8f9b730767b33ac4bb18c6b1b49374c46" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "63f5bf01365ce76b9f117d1e26b79b7b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10905, "upload_time": "2016-11-04T11:20:45", "url": "https://files.pythonhosted.org/packages/02/4b/3d0f7eaad20edb917b52f49d873afc8ec41ee5d5637427bf2ede7e1dcfaf/pymemorymodule-0.1.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8e863a4b4b004a595bf1e516f60e0206", "sha256": "98adf677ae21af45170bc5bee83a761b365519cd21aed8cf52dda87b14afa5c8" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "8e863a4b4b004a595bf1e516f60e0206", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11704, "upload_time": "2016-11-04T11:21:28", "url": "https://files.pythonhosted.org/packages/38/ed/a4976d5a9221e89ff5e3b2c9bd9894863129842335d7f69f2e1a8776db6c/pymemorymodule-0.1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b91cb60f5cdef14c05b522b5590a8e92", "sha256": "822f7fb2714b488db48ac22a2fda9c50183fdb7d1d28b982d097bd6577b7792a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b91cb60f5cdef14c05b522b5590a8e92", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11333, "upload_time": "2016-11-04T11:22:10", "url": "https://files.pythonhosted.org/packages/23/f9/94fcbf95e2da6ef3150b65daca8072fe69de1eb4e4e57204e84d096810ea/pymemorymodule-0.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "43a4e5158726af4f933a9ff42f112ed9", "sha256": "dc499d338aff2f248ca200cc42ff1f3b71829dc7a0060443dac7e06fa7a35656" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "43a4e5158726af4f933a9ff42f112ed9", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12735, "upload_time": "2016-11-04T11:22:44", "url": "https://files.pythonhosted.org/packages/be/76/a4509865df639a52f613247ac6064524745a8ac1a0439bcfe01475ddd283/pymemorymodule-0.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "defe33e6779d0018d1c71c53514d3f31", "sha256": "627fa0a3faf6cff1b3aea17e3f6202ed9edc78655149cc26c7d0ec2753746b05" }, "downloads": -1, "filename": "pymemorymodule-0.1.0.zip", "has_sig": false, "md5_digest": "defe33e6779d0018d1c71c53514d3f31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18778, "upload_time": "2016-11-04T11:16:50", "url": "https://files.pythonhosted.org/packages/59/70/68e0b50f4ada4aef016d9e984bf3dfbddbc21dd9528af7db138af35ddac4/pymemorymodule-0.1.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "780c30160ef854da94b63a2d438ea266", "sha256": "389ed84ef1c16bd4e2d5b25823bf3762116106ac16c2ec39d5c09f43e33ba51a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "780c30160ef854da94b63a2d438ea266", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11199, "upload_time": "2016-11-04T11:16:53", "url": "https://files.pythonhosted.org/packages/2c/0a/74386257b66f8b348b6513f54529d0acf60b7f10c4ac79b54b8d36a42f3e/pymemorymodule-0.1.0-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "633af79a315d96f7cdd4ae2fe0969fcf", "sha256": "7526501001013c5c972ef62c03d7c03faf554bb3de16bdc87fe35466a9546fcc" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "633af79a315d96f7cdd4ae2fe0969fcf", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 11981, "upload_time": "2016-11-04T11:17:27", "url": "https://files.pythonhosted.org/packages/da/b0/e836a95daf85e37bf28fa2776ed054f6e586c97a70c726dabb86b4ef25ce/pymemorymodule-0.1.0-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9d79ae032acc6a1bc1b73ebe87864c33", "sha256": "990f78a835fac8c48f7131d1f46f60fca83169ba38e9b996984c62c379864001" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9d79ae032acc6a1bc1b73ebe87864c33", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10960, "upload_time": "2016-11-04T11:18:05", "url": "https://files.pythonhosted.org/packages/39/b1/0304a24d05fc6a20029de881ce62b82de64c667cdf4176c43b25de5891a6/pymemorymodule-0.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "de9527eb3a42dfcdcd646030906ff026", "sha256": "2c74b70b2bdb37fed7c8ce064194c0456e12109c93b592b64913a0aad1f4764a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "de9527eb3a42dfcdcd646030906ff026", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11724, "upload_time": "2016-11-04T11:18:39", "url": "https://files.pythonhosted.org/packages/f0/a0/f0345613fcefea89e6d6570618baec35424ff9b013823101b6d73a43dcec/pymemorymodule-0.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a5623310c7374b70a552ee87b7ab62b8", "sha256": "5c72a499340d8dc8a3f4059ae0f8a924fbad0a93d167a65f1b48d7978d729666" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "a5623310c7374b70a552ee87b7ab62b8", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 10906, "upload_time": "2016-11-04T11:19:15", "url": "https://files.pythonhosted.org/packages/a6/eb/cdad628a635d01e5f1d26c32bcdfecf69430948aa5bbe036954e05cb4ef0/pymemorymodule-0.1.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0557ce15eaff669f91cf9ebf117003c7", "sha256": "7aab136edbecf80fad49d119309f627238edeaf2c5126e5c1438095ca99f5a9e" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "0557ce15eaff669f91cf9ebf117003c7", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 11703, "upload_time": "2016-11-04T11:19:56", "url": "https://files.pythonhosted.org/packages/b4/8b/89b4edd30e37779b4b78b9084d95f10922b89ca5122fa556db53a59ae807/pymemorymodule-0.1.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "63f5bf01365ce76b9f117d1e26b79b7b", "sha256": "026b7ab7cbe30384050fc3a7e2e4d3a8f9b730767b33ac4bb18c6b1b49374c46" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "63f5bf01365ce76b9f117d1e26b79b7b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10905, "upload_time": "2016-11-04T11:20:45", "url": "https://files.pythonhosted.org/packages/02/4b/3d0f7eaad20edb917b52f49d873afc8ec41ee5d5637427bf2ede7e1dcfaf/pymemorymodule-0.1.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8e863a4b4b004a595bf1e516f60e0206", "sha256": "98adf677ae21af45170bc5bee83a761b365519cd21aed8cf52dda87b14afa5c8" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "8e863a4b4b004a595bf1e516f60e0206", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11704, "upload_time": "2016-11-04T11:21:28", "url": "https://files.pythonhosted.org/packages/38/ed/a4976d5a9221e89ff5e3b2c9bd9894863129842335d7f69f2e1a8776db6c/pymemorymodule-0.1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b91cb60f5cdef14c05b522b5590a8e92", "sha256": "822f7fb2714b488db48ac22a2fda9c50183fdb7d1d28b982d097bd6577b7792a" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b91cb60f5cdef14c05b522b5590a8e92", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11333, "upload_time": "2016-11-04T11:22:10", "url": "https://files.pythonhosted.org/packages/23/f9/94fcbf95e2da6ef3150b65daca8072fe69de1eb4e4e57204e84d096810ea/pymemorymodule-0.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "43a4e5158726af4f933a9ff42f112ed9", "sha256": "dc499d338aff2f248ca200cc42ff1f3b71829dc7a0060443dac7e06fa7a35656" }, "downloads": -1, "filename": "pymemorymodule-0.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "43a4e5158726af4f933a9ff42f112ed9", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12735, "upload_time": "2016-11-04T11:22:44", "url": "https://files.pythonhosted.org/packages/be/76/a4509865df639a52f613247ac6064524745a8ac1a0439bcfe01475ddd283/pymemorymodule-0.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "defe33e6779d0018d1c71c53514d3f31", "sha256": "627fa0a3faf6cff1b3aea17e3f6202ed9edc78655149cc26c7d0ec2753746b05" }, "downloads": -1, "filename": "pymemorymodule-0.1.0.zip", "has_sig": false, "md5_digest": "defe33e6779d0018d1c71c53514d3f31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18778, "upload_time": "2016-11-04T11:16:50", "url": "https://files.pythonhosted.org/packages/59/70/68e0b50f4ada4aef016d9e984bf3dfbddbc21dd9528af7db138af35ddac4/pymemorymodule-0.1.0.zip" } ] }