{ "info": { "author": "Juan Galvez and individual contributors", "author_email": "jjgalvez@illinois.edu", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: Free for non-commercial use", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: System :: Clustering", "Topic :: System :: Distributed Computing" ], "description": "========\nCharm4py\n========\n\n\n.. image:: https://travis-ci.com/UIUC-PPL/charm4py.svg?branch=master\n :target: https://travis-ci.com/UIUC-PPL/charm4py\n\n.. image:: http://readthedocs.org/projects/charm4py/badge/?version=latest\n :target: https://charm4py.readthedocs.io/\n\n.. image:: https://img.shields.io/pypi/v/charm4py.svg\n :target: https://pypi.python.org/pypi/charm4py/\n\n\nCharm4py (Charm++ for Python *-formerly CharmPy-*) is a distributed computing and\nparallel programming framework for Python, for the productive development of fast,\nparallel and scalable applications.\nIt is built on top of `Charm++`_, a C++ adaptive runtime system that has seen\nextensive use in the scientific and high-performance computing (HPC) communities\nacross many disciplines, and has been used to develop applications that run on a\nwide range of devices: from small multi-core devices up to the largest supercomputers.\n\nPlease see the Documentation_ for more information.\n\nShort Example\n-------------\n\nThe following computes Pi in parallel, using any number of machines and processors:\n\n.. code-block:: python\n\n from charm4py import charm, Chare, Group, Reducer, Future\n from math import pi\n import time\n\n class Worker(Chare):\n\n def work(self, n_steps, pi_future):\n h = 1.0 / n_steps\n s = 0.0\n for i in range(self.thisIndex, n_steps, charm.numPes()):\n x = h * (i + 0.5)\n s += 4.0 / (1.0 + x**2)\n # perform a reduction among members of the group, sending the result to the future\n self.reduce(pi_future, s * h, Reducer.sum)\n\n def main(args):\n n_steps = 1000\n if len(args) > 1:\n n_steps = int(args[1])\n mypi = Future()\n workers = Group(Worker) # create one instance of Worker on every processor\n t0 = time.time()\n workers.work(n_steps, mypi) # invoke 'work' method on every worker\n print('Approximated value of pi is:', mypi.get(), # 'get' blocks until result arrives\n 'Error is', abs(mypi.get() - pi), 'Elapsed time=', time.time() - t0)\n exit()\n\n charm.start(main)\n\n\nThis is a simple example and demonstrates only a few features of Charm4py. Some things to note\nfrom this example:\n\n- *Chares* (pronounced chars) are distributed Python objects.\n- A *Group* is a type of distributed collection where one instance of the specified\n chare type is created on each processor.\n- Remote method invocation in Charm4py is *asynchronous*.\n\nIn this example, there is only one chare per processor, but multiple chares (of the same\nor different type) can exist on any given processor, which can bring flexibility and also performance\nbenefits (like dynamic load balancing). Please refer to the documentation_ for more information.\n\n\nContact\n-------\n\nWe would like feedback from the community. If you have feature suggestions,\nsupport questions or general comments, please visit our `forum`_\nor emails us at , or\n\nMain author at \n\n\n.. _Charm++: https://github.com/UIUC-PPL/charm\n\n.. _Documentation: https://charm4py.readthedocs.io\n\n.. _forum: https://charm.discourse.group/c/charm4py\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/UIUC-PPL/charm4py", "keywords": "parallel parallel-programming distributed distributed-computing hpc HPC runtime", "license": "", "maintainer": "", "maintainer_email": "", "name": "charm4py", "package_url": "https://pypi.org/project/charm4py/", "platform": "", "project_url": "https://pypi.org/project/charm4py/", "project_urls": { "Homepage": "https://github.com/UIUC-PPL/charm4py" }, "release_url": "https://pypi.org/project/charm4py/1.0/", "requires_dist": [ "numpy (>=1.10.0)", "greenlet" ], "requires_python": "", "summary": "Charm4py Parallel Programming Framework", "version": "1.0" }, "last_serial": 5801572, "releases": { "0.10.1": [ { "comment_text": "", "digests": { "md5": "9e77dbc9aec333f405690beccee35339", "sha256": "aca8f8f5ecfa6b72d4d97d652d6ead985209ad1f83306ce370e548e7a444ab22" }, "downloads": -1, "filename": "charm4py-0.10.1.tar.gz", "has_sig": false, "md5_digest": "9e77dbc9aec333f405690beccee35339", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3252865, "upload_time": "2018-11-09T18:36:39", "url": "https://files.pythonhosted.org/packages/c0/86/40c231377514f242326f11f07b15d75cfaba9f622a414f1488a8698ecc5a/charm4py-0.10.1.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "e4a7b71ff6405f84dd2374a77d8a71b3", "sha256": "2097c5b87628ff2f7bb625d1b9d161da4ce4b3373ec8cd1e1352fa765163450b" }, "downloads": -1, "filename": "charm4py-0.11.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e4a7b71ff6405f84dd2374a77d8a71b3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1304625, "upload_time": "2018-11-27T19:36:46", "url": "https://files.pythonhosted.org/packages/92/50/bd4683790257c0676491d032714b7bdfc42989129dff5be464ff238de108/charm4py-0.11.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "96d01d41c7e8ae6764a45765422159b1", "sha256": "74305be163b7a80965585b28e381db546be384676fa6c38be36e28c9170e8aa9" }, "downloads": -1, "filename": "charm4py-0.11.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "96d01d41c7e8ae6764a45765422159b1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1524154, "upload_time": "2018-11-27T19:36:48", "url": "https://files.pythonhosted.org/packages/99/42/e7937a32313668edb9bde769b6acd2af0b471d1cf0e07b6984b6479b966b/charm4py-0.11.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d4aa590c4560879fef855ebfcb9445fe", "sha256": "304283d50af812e04c7c8eee3fc11b54e048f7a3237e4a5ae09392dc046d17f0" }, "downloads": -1, "filename": "charm4py-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d4aa590c4560879fef855ebfcb9445fe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1524154, "upload_time": "2018-11-27T19:36:50", "url": "https://files.pythonhosted.org/packages/80/8d/c54f41db59e4185ef8670d77834739e65dba5e4dff199cc1516c27ff31d9/charm4py-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "27539bdd96e1e8863b31920d9d6b1011", "sha256": "8d7a93a46dceb0bfdb3496e251999bffac193c9c872610f53354a23e35004bba" }, "downloads": -1, "filename": "charm4py-0.11.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "27539bdd96e1e8863b31920d9d6b1011", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1413532, "upload_time": "2018-11-27T19:36:52", "url": "https://files.pythonhosted.org/packages/80/a5/bd6f671feb44f76d5b05842a54dc716af499a06892f569f4c64d7e32c793/charm4py-0.11.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8016d0ca388729f93a5a4d46c6ba6abd", "sha256": "9159688c640b48302df663523cb218cd0c127c3fef39ac0d7e919c8efa5aa8e4" }, "downloads": -1, "filename": "charm4py-0.11.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8016d0ca388729f93a5a4d46c6ba6abd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1649314, "upload_time": "2018-11-27T19:36:53", "url": "https://files.pythonhosted.org/packages/dc/c5/5d476a77588ee70d556092ce2ec91613d7770a25f0d51a84b086bc1c211a/charm4py-0.11.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e07de0b5da3369ebfbd8bc243113a7f8", "sha256": "b4a0c85a45fef54729dcc0e497ecb365ffd83c8304a9f04884f3517797c9b31d" }, "downloads": -1, "filename": "charm4py-0.11.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e07de0b5da3369ebfbd8bc243113a7f8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 920359, "upload_time": "2018-11-27T21:55:56", "url": "https://files.pythonhosted.org/packages/5a/7f/a3d7aa68c7ab784f7e409f8fae483c14009e4d6a393b132007d720ed03c8/charm4py-0.11.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac0a86f77e61b66df84d95cbbbc25ba9", "sha256": "996b50aa766d929e16b96e0b77932f98cd7902c8f33db6d4108486afc1c436da" }, "downloads": -1, "filename": "charm4py-0.11.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ac0a86f77e61b66df84d95cbbbc25ba9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1409909, "upload_time": "2018-11-27T19:36:55", "url": "https://files.pythonhosted.org/packages/c5/49/e1d5a2474b1da180b0fe2d2e7ebb64c2f88cae939699f7ba79cde75baa8a/charm4py-0.11.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "4ad6f17d191023a2c7cb4f0a15c64593", "sha256": "d2020d29b61f4b3b22e390a34294cac0413d92aa7a8cd632042d3e767c2d13fb" }, "downloads": -1, "filename": "charm4py-0.11.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4ad6f17d191023a2c7cb4f0a15c64593", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1650780, "upload_time": "2018-11-27T19:36:57", "url": "https://files.pythonhosted.org/packages/b9/89/54fc22a8c00c3ba3660465be99caddfa8b260f48496ccf14ae203f80743c/charm4py-0.11.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "886148599d7f498282279fc313915e06", "sha256": "fba1a46cd04ee0af45466e42422d65b05c5071b9162bce7b28864915b2fadfcc" }, "downloads": -1, "filename": "charm4py-0.11.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "886148599d7f498282279fc313915e06", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 919960, "upload_time": "2018-11-27T21:55:58", "url": "https://files.pythonhosted.org/packages/fe/6a/2b71e638af676522d3460c96e6af2f81f39475e4c06c8672923096adc9e8/charm4py-0.11.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "361fa05f5c16c5bd9441ccd15620d9f7", "sha256": "ef64c963c4e20f117df5502b224d40fd1759b0c4e074e1b698851d06ad4cec5b" }, "downloads": -1, "filename": "charm4py-0.11.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "361fa05f5c16c5bd9441ccd15620d9f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1408570, "upload_time": "2018-11-27T19:36:58", "url": "https://files.pythonhosted.org/packages/87/35/e851d914749623a17d139dd5459317c251e022aeaf00f110ad6ab72f9adc/charm4py-0.11.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d6e7c02d54a870f320bb59f463e073ad", "sha256": "abc30fe7f66ee4f847aa177e7a9347a7a4beeeb17d7f09b9919070322fc237d3" }, "downloads": -1, "filename": "charm4py-0.11.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6e7c02d54a870f320bb59f463e073ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1656417, "upload_time": "2018-11-27T19:37:00", "url": "https://files.pythonhosted.org/packages/62/24/2ce22561c66b581f32fdd694fabb500bc3a5854c9eee6ae662bc9bf9838e/charm4py-0.11.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ceb32e3cd9be328a5630401f213b19f8", "sha256": "1888c9c077f97d9b8bf52d4db35317efa6a70fd3e509075f3209e1d2fedf077d" }, "downloads": -1, "filename": "charm4py-0.11.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ceb32e3cd9be328a5630401f213b19f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 924066, "upload_time": "2018-11-27T21:56:00", "url": "https://files.pythonhosted.org/packages/3b/08/284e2d6a803c2049cef0c49697d2e5fcca4f12f192f48e69fcb0841c17f6/charm4py-0.11.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cc0457e58b8689d360ede3462501a40c", "sha256": "3d8f316b893ea953edf40f6a0672ae57b1ff7b3415b8bed9584ab9dea708a934" }, "downloads": -1, "filename": "charm4py-0.11.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "cc0457e58b8689d360ede3462501a40c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1408855, "upload_time": "2018-11-27T19:37:02", "url": "https://files.pythonhosted.org/packages/56/b7/a38cde28d47326eb067165de511ebd586fee316eadb45cc2fdaa0cfe65b8/charm4py-0.11.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "639b3edad88ba6f545f849cecea44490", "sha256": "be0c6c829bf91515ee07e1f462e5099fe5a9bee7be71861fe2d440e24d58cab4" }, "downloads": -1, "filename": "charm4py-0.11.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "639b3edad88ba6f545f849cecea44490", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1655931, "upload_time": "2018-11-27T19:37:03", "url": "https://files.pythonhosted.org/packages/07/de/beb0b1f549528edbd8b8ca4f19505190dcf4c1e6bad5cc2fdccd3c1cc402/charm4py-0.11.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b378e5e43d764dc5acdd699e2f93324", "sha256": "a5ce423e733060f8450475f577388a678c249adbf11c03a6793c71feaaf55e7a" }, "downloads": -1, "filename": "charm4py-0.11.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1b378e5e43d764dc5acdd699e2f93324", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 923912, "upload_time": "2018-11-27T21:56:02", "url": "https://files.pythonhosted.org/packages/a3/1d/17d232682e53b3e0fb8c63e76c4c4fe072fa33bad6e744a639eabe6eb085/charm4py-0.11.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d88049fab8c19f3616e2e272b4945112", "sha256": "b89a91550044b5726f7e70fed72d7d603e508c0062cfd645f543892556b29314" }, "downloads": -1, "filename": "charm4py-0.11.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d88049fab8c19f3616e2e272b4945112", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 825873, "upload_time": "2018-11-27T19:37:05", "url": "https://files.pythonhosted.org/packages/2c/8b/e92ccb0b057c6d22b077253830708728743ae53bb86c9be08efd7f3e9125/charm4py-0.11.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ffded655ce454b4a575ab19db6a6f5d2", "sha256": "1f37999ac85d4476a155e08604dcd3315e78e991dd68bdeca0926aa555cfd57a" }, "downloads": -1, "filename": "charm4py-0.11.0.tar.gz", "has_sig": false, "md5_digest": "ffded655ce454b4a575ab19db6a6f5d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3270845, "upload_time": "2018-11-27T19:36:15", "url": "https://files.pythonhosted.org/packages/bf/c4/2b83f20b69d4450b14688b12db7ae7efd6fab170562afd789572e1a2eeea/charm4py-0.11.0.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "a87722902d486f8e74cc46e6a9a31417", "sha256": "e76b410b39fe44c38f806f37f081716705d6fd7316ebac2623a1f2d0b0ccb91f" }, "downloads": -1, "filename": "charm4py-0.12.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a87722902d486f8e74cc46e6a9a31417", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1310498, "upload_time": "2019-01-19T01:26:03", "url": "https://files.pythonhosted.org/packages/6d/f2/00ee5e4990498dba8ec66fd21263a2c45f87bca777bb75092122a216d4c8/charm4py-0.12.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8561237f591f2d6018bed63a489fc10c", "sha256": "6d87b0ea7dec656c29b60f12b1395f7d2355e3bfddb5053ab62d94487fc4d310" }, "downloads": -1, "filename": "charm4py-0.12.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8561237f591f2d6018bed63a489fc10c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1529579, "upload_time": "2019-01-19T01:26:06", "url": "https://files.pythonhosted.org/packages/cc/4f/b89ba4694a413c5cb7b0bc2c21391e9bd2a3a0262fce748cbd7440ff2b68/charm4py-0.12.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "44d2b2175e42e7af07751f9ea4e77609", "sha256": "133f13d3b0fee9684f54e046b75ae888cbd0f5d749adb82f086552e7f97c0c36" }, "downloads": -1, "filename": "charm4py-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44d2b2175e42e7af07751f9ea4e77609", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1529583, "upload_time": "2019-01-19T01:26:08", "url": "https://files.pythonhosted.org/packages/b6/21/df3e27227cae8c8f193cd7b4a6e227a3001eb9e3f1929f6544807516a522/charm4py-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "401261b34bd43303d542a4f56dbcee81", "sha256": "1e4351eca1c861bd33ef9f66bf3a7efc41e4acfc4050dddef6a11cb63dfae7e8" }, "downloads": -1, "filename": "charm4py-0.12.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "401261b34bd43303d542a4f56dbcee81", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1421042, "upload_time": "2019-01-19T01:26:11", "url": "https://files.pythonhosted.org/packages/f7/fd/bb95a8974fb043b767c7380635d35cb481478fb35044633aadc1b2ff5eb4/charm4py-0.12.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "7c6f2a72627d0898aed84cc7d451bda8", "sha256": "d5b4369cdeb9c2895b6f7adb98d2b53dcac80a1c905505d85a7fae1d669f439f" }, "downloads": -1, "filename": "charm4py-0.12.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c6f2a72627d0898aed84cc7d451bda8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1656222, "upload_time": "2019-01-19T01:26:14", "url": "https://files.pythonhosted.org/packages/05/69/c6a3c2fbe70905bbf0cb2ebfd534047b19b4e9b1ce6eda36c7797aa92f75/charm4py-0.12.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "136e5b4b4d1c7b5318a4c37d28dd1f43", "sha256": "8c3134081a3617de452fce021f73c893109a84c83fb9ab44a7401339cd0d1d5f" }, "downloads": -1, "filename": "charm4py-0.12.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "136e5b4b4d1c7b5318a4c37d28dd1f43", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1417491, "upload_time": "2019-01-19T01:26:17", "url": "https://files.pythonhosted.org/packages/3b/95/a360303689031323526edf9d87857c48c078ddde564f01754bddf7c18f4f/charm4py-0.12.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "0fc01acdfe748f9e082d825692b7aa97", "sha256": "3410f84500f05becea022f093ae19e109f0993a02f1f3f4f890fa3ffad26fff5" }, "downloads": -1, "filename": "charm4py-0.12.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0fc01acdfe748f9e082d825692b7aa97", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1657225, "upload_time": "2019-01-19T01:26:20", "url": "https://files.pythonhosted.org/packages/36/e1/c794a75026cb073f1f242ad0aafd72d741c738e19320e9d09de35ebbac28/charm4py-0.12.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3aef164f58ad7d736bea1d1684f3686d", "sha256": "94ed125881ad857c3466486b837c5fed9e8b4903eaeb104321cad1f667e82b45" }, "downloads": -1, "filename": "charm4py-0.12.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3aef164f58ad7d736bea1d1684f3686d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1416103, "upload_time": "2019-01-19T01:26:22", "url": "https://files.pythonhosted.org/packages/0c/63/04b8bc00c229f46983f3ed8ed3ed14a965424ff1acb70771072225bcfd70/charm4py-0.12.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1a720d119bc78c81633d1bca6f02e5ec", "sha256": "1ed7245ef7ff81399721777369e343e386e082c29ecaea41c3d2fbd0823bcab1" }, "downloads": -1, "filename": "charm4py-0.12.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a720d119bc78c81633d1bca6f02e5ec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1663413, "upload_time": "2019-01-19T01:26:25", "url": "https://files.pythonhosted.org/packages/9b/16/7860f354fee1fbfa69b4965f4bf4407816185bc0ec24f1706b1044ed65cd/charm4py-0.12.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "04b15c7cb05a7b80c54861caf135034f", "sha256": "f9ca47b6bf7c65ae79249de0724aa17c4dee935e8a0035770bf75876faad792f" }, "downloads": -1, "filename": "charm4py-0.12.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "04b15c7cb05a7b80c54861caf135034f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1416417, "upload_time": "2019-01-19T01:26:28", "url": "https://files.pythonhosted.org/packages/47/10/fa94c71527a37c81751867350b191a76d9764fb2f5348d52ced322b3450f/charm4py-0.12.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "6d8d6ef1795c9f769dce03fafaf27176", "sha256": "d1e29b9afc1d5b0e532f1d275aac1b9aeb67904b366a2e88831af42e72ed5272" }, "downloads": -1, "filename": "charm4py-0.12.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d8d6ef1795c9f769dce03fafaf27176", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1662254, "upload_time": "2019-01-19T01:26:30", "url": "https://files.pythonhosted.org/packages/04/0d/e688b40b9d16ab9fc527f2bbec80c9f95742c09de1abc5b0b031850ccd61/charm4py-0.12.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "178804b8f215b40d636fbadf3ddcda13", "sha256": "4e83464b0f96a306a26006053b89ba4e5d3d88e2dfaa8ae357d9a604c1c414c0" }, "downloads": -1, "filename": "charm4py-0.12.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "178804b8f215b40d636fbadf3ddcda13", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 830031, "upload_time": "2019-01-19T01:26:33", "url": "https://files.pythonhosted.org/packages/b7/62/873040379c3cf9fc8aa6c9105858a115aa40a8d00f5b3b340d6f55b91538/charm4py-0.12.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8e67a589bd70282488b3e4b1cb42c7ba", "sha256": "c0aeae3d71c96f6ea4631fbfa99b45e9f9531268ce0614f3b32eaa0b990ce887" }, "downloads": -1, "filename": "charm4py-0.12.0.tar.gz", "has_sig": false, "md5_digest": "8e67a589bd70282488b3e4b1cb42c7ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3259154, "upload_time": "2019-01-19T01:26:36", "url": "https://files.pythonhosted.org/packages/fb/e6/3e5937ade174ae792bc58501feedf4699907fa96da56d3e568ac0bd8d553/charm4py-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "a0599a70e6b69cbd5317f8cb3f2cf176", "sha256": "40be69e4450a675fb1989fb4fde90e00665ceae5f48b3736bda390c1fc4906fa" }, "downloads": -1, "filename": "charm4py-0.12.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a0599a70e6b69cbd5317f8cb3f2cf176", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1310496, "upload_time": "2019-01-19T04:49:35", "url": "https://files.pythonhosted.org/packages/ca/18/10880c01cc8c14c3467238a041b03623c291219048ddac414f892c502d89/charm4py-0.12.1-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "78634c2e4743393841f3ef16998ef70c", "sha256": "028e87ee1284833da968752a45decd9422a065a50b8a5cb5d6a23a628527c145" }, "downloads": -1, "filename": "charm4py-0.12.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "78634c2e4743393841f3ef16998ef70c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1529577, "upload_time": "2019-01-19T04:49:38", "url": "https://files.pythonhosted.org/packages/b1/b3/2f6a8a4dac6d3acb7c6fa1a574ff7ee69bded69337c4d61224ac048d5e07/charm4py-0.12.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5ac1ff55e2ab0edaa8260098150582d", "sha256": "658b2c35d49914fc406c9cc1ef2b355292beba6c4550fb70dae1ac1ed9d5b4f6" }, "downloads": -1, "filename": "charm4py-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5ac1ff55e2ab0edaa8260098150582d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1529579, "upload_time": "2019-01-19T04:49:40", "url": "https://files.pythonhosted.org/packages/a7/ac/0c77e7146fb6263fc3177e6b756a381beb4c84c149e02f592d3368fc0cb2/charm4py-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e7954dfde4dad0fd6c9c3fae48009e9a", "sha256": "4c24679ef296ec24ce9dd77bef2554e39357cd93c8384372252fc0baafca814c" }, "downloads": -1, "filename": "charm4py-0.12.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e7954dfde4dad0fd6c9c3fae48009e9a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1421040, "upload_time": "2019-01-19T04:49:43", "url": "https://files.pythonhosted.org/packages/8d/b1/9bf7124ddd4d876f0e7d59d5a31a5baf607f82eb29ae9080b1eef47a089f/charm4py-0.12.1-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "75a332825a1889a8a0dfc0b2f1f71eb1", "sha256": "6e0766b001f4e095db9e9b45fcd703fdb3290624f8bf94b52c86b9423525cd1d" }, "downloads": -1, "filename": "charm4py-0.12.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75a332825a1889a8a0dfc0b2f1f71eb1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1656222, "upload_time": "2019-01-19T04:49:45", "url": "https://files.pythonhosted.org/packages/85/5a/5461b1e72fbe5e59b0db64a0b12c5669d226b15758b82a788b196e3949e1/charm4py-0.12.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f2d31d02dc3769840786b815bf775d88", "sha256": "0d5ca2efac5aa880e61fcf6ff2799990c7713d99d3ae7c88788162df1e564a39" }, "downloads": -1, "filename": "charm4py-0.12.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "f2d31d02dc3769840786b815bf775d88", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 926320, "upload_time": "2019-01-19T05:29:22", "url": "https://files.pythonhosted.org/packages/8f/14/a2bd785abb59f9940ca02c6b25a6e091e6dea918ed481832379c007ee47b/charm4py-0.12.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0415101bf4121690ec0a8ddcdbb0a665", "sha256": "fd534f6364568d57a2baaf476cecafc7ab1aad8d26d9902cbbd4c46dd0eccdd1" }, "downloads": -1, "filename": "charm4py-0.12.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0415101bf4121690ec0a8ddcdbb0a665", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1417490, "upload_time": "2019-01-19T04:49:48", "url": "https://files.pythonhosted.org/packages/cf/0c/3f504d2709653c8d3e1152c1e5eb11536d7ed55c8b40cfba2fc77ce0768d/charm4py-0.12.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "4e6b6ffd7f12849e72e88c5edceeb7f2", "sha256": "a691c9766a07dda78ab8233ef36919a197191a00d34d83828743a78327033a6d" }, "downloads": -1, "filename": "charm4py-0.12.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e6b6ffd7f12849e72e88c5edceeb7f2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1657222, "upload_time": "2019-01-19T04:49:51", "url": "https://files.pythonhosted.org/packages/3d/a0/b61133da7aefd48cd2c27430bb13b37988aff27b4d47cf1f3bf0e00035bf/charm4py-0.12.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f56ec31f7724aeff61cdd99bc73f7f29", "sha256": "5e819a6e0b9896002153d71157f1b29856b2298dee05e59d3bc056c796db25b0" }, "downloads": -1, "filename": "charm4py-0.12.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f56ec31f7724aeff61cdd99bc73f7f29", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 925684, "upload_time": "2019-01-19T05:29:24", "url": "https://files.pythonhosted.org/packages/b3/44/1c8a3630e53991dfb19b739fd8bf9e60a1e8a83d5f76c7c39abb5bfd7c86/charm4py-0.12.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "094e9689cc236d87f94e4c653a32ece3", "sha256": "24741f72e1b48572b059e057703207d2ccdc2825a3ed94a86a619d18e21bd2af" }, "downloads": -1, "filename": "charm4py-0.12.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "094e9689cc236d87f94e4c653a32ece3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1416100, "upload_time": "2019-01-19T04:49:53", "url": "https://files.pythonhosted.org/packages/2d/44/67ce8f694cb930b0bac14d3af4ce2931a9ad64a0a2d409778335c7d43e2e/charm4py-0.12.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c83c638c7ab916959b19595f04571a16", "sha256": "b8168497fcb2cbb580418533316d16aea5972be125ebc886cbf975deb4b52d68" }, "downloads": -1, "filename": "charm4py-0.12.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c83c638c7ab916959b19595f04571a16", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1663404, "upload_time": "2019-01-19T04:49:56", "url": "https://files.pythonhosted.org/packages/a4/d3/59fd3f12198262d94de59c4ef3ce980e709aab4637958da6dd9438fb9bdb/charm4py-0.12.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "efd80622c4061d422363a5bbd4330150", "sha256": "730481ff349a103b15784f78cd9b51b9c4ad80259e8ed7b53cf16780a9124e3f" }, "downloads": -1, "filename": "charm4py-0.12.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "efd80622c4061d422363a5bbd4330150", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 929752, "upload_time": "2019-01-19T05:29:26", "url": "https://files.pythonhosted.org/packages/15/1f/80f97730a3511128c4d5d41da68599a461ee28b808752509333f722c63dc/charm4py-0.12.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "35b772e5b1838ddd2473c237f20cc6e0", "sha256": "502c635c8865bb12062a3dae09e8b0f5f9b7c92bf1f0b9342ccb7cf61519dde8" }, "downloads": -1, "filename": "charm4py-0.12.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "35b772e5b1838ddd2473c237f20cc6e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1416414, "upload_time": "2019-01-19T04:49:59", "url": "https://files.pythonhosted.org/packages/68/a7/cc3dfa676e0993c6f7e2ebf6f636dd0c58bf2d7e5d8b1506754624f73983/charm4py-0.12.1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2847c235ef34186776424ad1b781d0d5", "sha256": "644076786802627e15e0abe7dcab92faad940aaf8678109ac2709f896e597db6" }, "downloads": -1, "filename": "charm4py-0.12.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2847c235ef34186776424ad1b781d0d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1662260, "upload_time": "2019-01-19T04:50:01", "url": "https://files.pythonhosted.org/packages/82/65/6fd3b0a13b68230feed2743865b8da7534864dae287d93a96b3779cda8bf/charm4py-0.12.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4211d8c08d5ed8b9ed72c18c1f702b5", "sha256": "a3bfee831577c94dcf41d1af3a96fd1029cbdc11c06816e215d8d32f46421c9e" }, "downloads": -1, "filename": "charm4py-0.12.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c4211d8c08d5ed8b9ed72c18c1f702b5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 929696, "upload_time": "2019-01-19T05:29:28", "url": "https://files.pythonhosted.org/packages/d9/8f/5848038efac85e7dd9ce0570594deef0a4c25e590a032a16b6b45d23029e/charm4py-0.12.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7122f452eae5d9829dca3600bb5044ab", "sha256": "f31b238206d44bce74826ac75c8dbfecbbb2533f2a89e75b0f64c651acbf4044" }, "downloads": -1, "filename": "charm4py-0.12.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7122f452eae5d9829dca3600bb5044ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 830030, "upload_time": "2019-01-19T04:50:04", "url": "https://files.pythonhosted.org/packages/12/b9/1093fd95b93cf5af94480d41a6c39b7433709bef62263155c9c3e905ee7c/charm4py-0.12.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7bd11c80187d46bbda2b56968dd31193", "sha256": "92a33edece7f3923215ca0eb7ab759ffcc20b74ed350a59d965d6f74554b0cc5" }, "downloads": -1, "filename": "charm4py-0.12.1.tar.gz", "has_sig": false, "md5_digest": "7bd11c80187d46bbda2b56968dd31193", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3259327, "upload_time": "2019-01-19T04:50:08", "url": "https://files.pythonhosted.org/packages/b3/ff/922f28d6b1c948e5e7b329c5a49707207fb49820f5cb2741a3006f694dc3/charm4py-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "af775b5355da3687f014719babba996b", "sha256": "b29e1cd0bf9121300a08497c6e9b0c7f574781da79395fd45f8823c086e130ef" }, "downloads": -1, "filename": "charm4py-0.12.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "af775b5355da3687f014719babba996b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1312418, "upload_time": "2019-01-26T19:02:24", "url": "https://files.pythonhosted.org/packages/5e/17/f9bebbb737d8e132cd11de83efebfe259408394e5438eceea200134dc371/charm4py-0.12.2-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2343668e25eb6fe72d128a54d6a56331", "sha256": "745e0ad5edc0ead3435aee1d619e7aea50ea5773fde88796000ca53ac1d4f408" }, "downloads": -1, "filename": "charm4py-0.12.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2343668e25eb6fe72d128a54d6a56331", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1531654, "upload_time": "2019-01-26T19:02:27", "url": "https://files.pythonhosted.org/packages/38/ed/cfc887c49edab225f10c869b7ae860dd3371c34d11ad866ecfa7dc080f9d/charm4py-0.12.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "319a803cb4c3b0926a4e1bf9e7a1cdd3", "sha256": "fb60f963049b3135a01b4dd5b84306b26d32bc4d412ae9453a2d998c9cc39120" }, "downloads": -1, "filename": "charm4py-0.12.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "319a803cb4c3b0926a4e1bf9e7a1cdd3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1531657, "upload_time": "2019-01-26T19:02:29", "url": "https://files.pythonhosted.org/packages/dc/88/5d85f7127c39187cec75ee5a3c0f9f804f030e65c42ce0bcbd5a61de45a6/charm4py-0.12.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6831a0687058592613dea604fd97c55d", "sha256": "42aeac0cf68cb79fd4d6a375af3cb6eeff6640dbf184c52e8d08878cba85a36a" }, "downloads": -1, "filename": "charm4py-0.12.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6831a0687058592613dea604fd97c55d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1425243, "upload_time": "2019-01-26T19:02:32", "url": "https://files.pythonhosted.org/packages/9a/0b/f78787769d9419d68fdef6ad78a9c129a45d62336c9b7b60f879ce13cb5c/charm4py-0.12.2-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "245c11b258ff3bea992310b4de1de330", "sha256": "7b756667ab8bbed9881f8ca36210ddbc500a93bb521fdd6292eb2a479a703cd0" }, "downloads": -1, "filename": "charm4py-0.12.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "245c11b258ff3bea992310b4de1de330", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1662000, "upload_time": "2019-01-26T19:02:35", "url": "https://files.pythonhosted.org/packages/7e/7b/7afcb74e1784d37b1b855cabf244646b762074aca278a36d5fe13cccf8bb/charm4py-0.12.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8a9433408c3f23698d2cba321611db0d", "sha256": "d3f00fc44b170a6b315a707ef95bb6cfebaf94d27a584ea5c566103b70f66709" }, "downloads": -1, "filename": "charm4py-0.12.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8a9433408c3f23698d2cba321611db0d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1421738, "upload_time": "2019-01-26T19:02:38", "url": "https://files.pythonhosted.org/packages/55/95/9e69bffa3d4c35e744d9193f1b7a23d245daa1eb2c051cf93710c1b32b77/charm4py-0.12.2-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c73c1d4a886835fb5a5eadef024eca6c", "sha256": "bbcb344c1b6cd77a2774f4989fc08ab299d28c02655de248a18eb99c25c99f00" }, "downloads": -1, "filename": "charm4py-0.12.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c73c1d4a886835fb5a5eadef024eca6c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1663003, "upload_time": "2019-01-26T19:02:40", "url": "https://files.pythonhosted.org/packages/22/e0/f10d41cade25dc774714949c74fa4f4d9e0d64029026f7713c254eaf5b4a/charm4py-0.12.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6bf36d7be4cf8496e8e0ace9df57a1bd", "sha256": "b18868831128fe07341f2595934461a786ca4adf0c5006ae94ba7c6ec1314ec5" }, "downloads": -1, "filename": "charm4py-0.12.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6bf36d7be4cf8496e8e0ace9df57a1bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1420598, "upload_time": "2019-01-26T19:02:43", "url": "https://files.pythonhosted.org/packages/8d/fe/967f7026ea52bdc91e027d424e1a46bf1a48303d3c7072c51474d3d6c4d7/charm4py-0.12.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "92a3a7deba20987367211d6785fe457f", "sha256": "f15842c716f9332fc695eb802d039c5af4b1e4df3d3f3783ebd6c237f6034bea" }, "downloads": -1, "filename": "charm4py-0.12.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "92a3a7deba20987367211d6785fe457f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1667980, "upload_time": "2019-01-26T19:02:46", "url": "https://files.pythonhosted.org/packages/44/57/0b5f0e870955e0b133804773bf545a8fd4dc416bb064e1aad67ad29083fe/charm4py-0.12.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9441945fb575b945686e82e01215ae21", "sha256": "efb4fe12f026834ba9360b9fa0e8abd1c6f0f504ac5e5bbdb1015bfd2d1f8fd5" }, "downloads": -1, "filename": "charm4py-0.12.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9441945fb575b945686e82e01215ae21", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1420848, "upload_time": "2019-01-26T19:02:49", "url": "https://files.pythonhosted.org/packages/09/06/68f93f6d462834422128fdfb214e973583b6e35a6e7cf77d810850007e67/charm4py-0.12.2-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "699fa77480d83ccfaa1fed1ce2390258", "sha256": "4a101dab26ef2e527a60ee4bc948b5f59190abb1988b1ccabb45f0eaffe20c37" }, "downloads": -1, "filename": "charm4py-0.12.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "699fa77480d83ccfaa1fed1ce2390258", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1667976, "upload_time": "2019-01-26T19:02:51", "url": "https://files.pythonhosted.org/packages/00/1d/206e8dfa36c75251dadaab116a3dae9cc8dd0a301dc08370ac460238b784/charm4py-0.12.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f654d70c193b2f7453732d25175c0441", "sha256": "6d92eee2770378cf2b0c5e0afe349b1ba6e74d585136145b0b9ab6be7a9862cb" }, "downloads": -1, "filename": "charm4py-0.12.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "f654d70c193b2f7453732d25175c0441", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 831620, "upload_time": "2019-01-26T19:02:53", "url": "https://files.pythonhosted.org/packages/01/e5/b04067d5a162c5b7278bfed487c412a9e89c0807deb61a7a7e7d2eb7c941/charm4py-0.12.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6823922b1151ffd7e0c9b5bf47b05581", "sha256": "8876e8529323b188dffbc399640a680cd40854ebdf4789ce5b3002bd6b2cdaa1" }, "downloads": -1, "filename": "charm4py-0.12.2.tar.gz", "has_sig": false, "md5_digest": "6823922b1151ffd7e0c9b5bf47b05581", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3260992, "upload_time": "2019-01-26T19:02:57", "url": "https://files.pythonhosted.org/packages/df/97/72cbe38939e6328b9899caa87fc84aaa333a18cda39fe735fd35ce48147f/charm4py-0.12.2.tar.gz" } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "6920eb398d4691a166619b617cc08f4b", "sha256": "8cd9a2d23246402cb4513a7fdf29ce21b859e416b33da4d66517e96f919f1641" }, "downloads": -1, "filename": "charm4py-0.12.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6920eb398d4691a166619b617cc08f4b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1312424, "upload_time": "2019-02-27T23:19:21", "url": "https://files.pythonhosted.org/packages/f3/c6/f879ebc5335229b6480613e8631c7089287bad8e5eb2d6942b5f2aea1bf9/charm4py-0.12.3-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2a46fdc1799ec0a161a41b3a4c7714c3", "sha256": "596cfb202330bfc1384c1c82cd83de2332326c6998ecd8b088458086a3ec0e0e" }, "downloads": -1, "filename": "charm4py-0.12.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2a46fdc1799ec0a161a41b3a4c7714c3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1531656, "upload_time": "2019-02-27T23:19:23", "url": "https://files.pythonhosted.org/packages/61/9e/8030cda3ed35214bf853273e58f020b79a0f78ec546ffe94989b6194123a/charm4py-0.12.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88662dc4e0c64f93c93f4285b00abb06", "sha256": "a26fde2c5c9b556d1750925920dd039075f16d1da11f29242d5e7169195c3d8a" }, "downloads": -1, "filename": "charm4py-0.12.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "88662dc4e0c64f93c93f4285b00abb06", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1531657, "upload_time": "2019-02-27T23:19:26", "url": "https://files.pythonhosted.org/packages/fb/d9/76a165d87fd506352a95680db39a60544c709f7687f8811ab8aea28d57a0/charm4py-0.12.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "142267a10cd341d327740c4dee94b71d", "sha256": "ace08f5ca4188c01b9fc22557bb60bd29b687e05a5b3711fe2755d2773d0bdb5" }, "downloads": -1, "filename": "charm4py-0.12.3-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "142267a10cd341d327740c4dee94b71d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1425249, "upload_time": "2019-02-27T23:19:28", "url": "https://files.pythonhosted.org/packages/9f/cc/277bf54292a67f3017528299246cf8e7345fd448859be4f92ea2d90be03c/charm4py-0.12.3-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "962bafefaa7981f51024e8a9a1334705", "sha256": "f3b18e5bf9a5f472e40799a78f779a15890b867fd4e4f8c156fd314b9cc543b7" }, "downloads": -1, "filename": "charm4py-0.12.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "962bafefaa7981f51024e8a9a1334705", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1661996, "upload_time": "2019-02-27T23:19:31", "url": "https://files.pythonhosted.org/packages/46/5c/b4a647a981f430e43d627a62eaaff3b63fd65a92eab9b6d4d09515a9a50e/charm4py-0.12.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1eb8c3c29b0d48a879bef17d5298a41d", "sha256": "1f37b625d0db8edc15630d60cce54af73c2d64587dc4c5fbcb7b1b423d655382" }, "downloads": -1, "filename": "charm4py-0.12.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "1eb8c3c29b0d48a879bef17d5298a41d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 930683, "upload_time": "2019-02-27T23:32:46", "url": "https://files.pythonhosted.org/packages/c4/4d/62bed458b2f231a52565e643236f2a5b8d135e3c45f8dbf694a7a2d095e4/charm4py-0.12.3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "afda31ce921d0949c897da78b8af26b0", "sha256": "4b2d877031e1f22ab111a2621db566974fc68b1615757712a6d3dc0032e2504a" }, "downloads": -1, "filename": "charm4py-0.12.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "afda31ce921d0949c897da78b8af26b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1421744, "upload_time": "2019-02-27T23:19:34", "url": "https://files.pythonhosted.org/packages/c1/32/8c87f6de965715fb6007f883d1c66c2d593f6e67b8cd698fc9b168a3bd6e/charm4py-0.12.3-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2de92986142dc2796f32ae4372c1b2a9", "sha256": "01edaba59347dd81974845cd42dac4a709dd70a8fa429fb1232901e94935aae8" }, "downloads": -1, "filename": "charm4py-0.12.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2de92986142dc2796f32ae4372c1b2a9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1662987, "upload_time": "2019-02-27T23:19:37", "url": "https://files.pythonhosted.org/packages/d1/58/e9815b775427f46446db0462d72f99ceb71966b4bb746053f18e42e138bd/charm4py-0.12.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e6b71d26d63734b435e5125f3b534d2", "sha256": "a306316d94dd169886ad9b4c8d4305e956db60f4bfc19b62cec57916f15144e8" }, "downloads": -1, "filename": "charm4py-0.12.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5e6b71d26d63734b435e5125f3b534d2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 930821, "upload_time": "2019-02-27T23:32:48", "url": "https://files.pythonhosted.org/packages/80/23/8c5975b69136be39a9946ccfb758e653c3061d51ccf8c2042e41c4451e60/charm4py-0.12.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "65b7068da60c5824d398763c60540c0c", "sha256": "136d41be28d6f05b9552b53adcd184d390805b47f7480bf27f9fdf28b3c8d2a9" }, "downloads": -1, "filename": "charm4py-0.12.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "65b7068da60c5824d398763c60540c0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1420603, "upload_time": "2019-02-27T23:19:39", "url": "https://files.pythonhosted.org/packages/f0/f1/169a1f10d765a28cded74530a5aae95412869006e0d26d3c29cc736c6b8d/charm4py-0.12.3-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "fae80095d31ceab477c0c0a4642632de", "sha256": "60bd23f3c02572186e9430aca9a01edb06a12ffcbc1b74cb8b239c714dab78f0" }, "downloads": -1, "filename": "charm4py-0.12.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fae80095d31ceab477c0c0a4642632de", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1667978, "upload_time": "2019-02-27T23:19:42", "url": "https://files.pythonhosted.org/packages/dd/b1/340cdbe0b213da47a80a90b655c1996a8d00899cd9b9e6b7bdd5fdb7d20f/charm4py-0.12.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dada2bc36bdee1f8c3d99160883af52f", "sha256": "f9e09228e3d4c75f52809feb7f1e4644d2dfadb1c34f8b7e26f0dec95b6ecc3e" }, "downloads": -1, "filename": "charm4py-0.12.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dada2bc36bdee1f8c3d99160883af52f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 934333, "upload_time": "2019-02-27T23:32:51", "url": "https://files.pythonhosted.org/packages/8a/6a/93a9ac803971529b16cc942c2f60e1d5c3f5b94653e9c747180206e78a05/charm4py-0.12.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0073cd848427f2482c592e22854ca4fc", "sha256": "9085c9f9dbf7daaf47f4929c9faeffaf200582be99c56d46fd514721877597b0" }, "downloads": -1, "filename": "charm4py-0.12.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0073cd848427f2482c592e22854ca4fc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1420854, "upload_time": "2019-02-27T23:19:45", "url": "https://files.pythonhosted.org/packages/f3/3a/4f5bccde563df14be12e9e7f6f13cfe32ffcb41d52be201324aecdae6b66/charm4py-0.12.3-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "dfeadf64d50a660db26f164c36028269", "sha256": "f92de6466eb927bc04c2d1a1373f282ef715d3f258f236928298faac10a77046" }, "downloads": -1, "filename": "charm4py-0.12.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dfeadf64d50a660db26f164c36028269", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1667974, "upload_time": "2019-02-27T23:19:48", "url": "https://files.pythonhosted.org/packages/b9/65/ddcc38643c0f025389080694d0f76a3ba3e8794a84df178785fbdd14b181/charm4py-0.12.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "468f710cb8336a1c010beffa7505c24c", "sha256": "3dd4128e9d4d90a6e0f7192fa2783818cebcdeb328861efe1227c18d5b562c05" }, "downloads": -1, "filename": "charm4py-0.12.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "468f710cb8336a1c010beffa7505c24c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 934292, "upload_time": "2019-02-27T23:32:53", "url": "https://files.pythonhosted.org/packages/4a/90/7fa10aa8aaaacfd1b1e7f1825a2e176af6db0512bf7575ce66ee6cab94b9/charm4py-0.12.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c81510a30c0075fa7bbe6d5ba03b2e31", "sha256": "4adc0ef9ad0b1f9f2d817c47b59949285419e3b1817bba8834b4ec2ab4885478" }, "downloads": -1, "filename": "charm4py-0.12.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c81510a30c0075fa7bbe6d5ba03b2e31", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 831625, "upload_time": "2019-02-27T23:19:50", "url": "https://files.pythonhosted.org/packages/a8/a3/a87ad1681b9af1e70f760dea753fad0bf0ed9dcf1e17c8aea69c2f11cf9f/charm4py-0.12.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "07061c2550483b72f5a8c30bace28f28", "sha256": "795a0b2179cf5404b863d86ce6795796638fbaa4300387171bcfb493d948f6e8" }, "downloads": -1, "filename": "charm4py-0.12.3.tar.gz", "has_sig": false, "md5_digest": "07061c2550483b72f5a8c30bace28f28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3261180, "upload_time": "2019-02-27T23:19:54", "url": "https://files.pythonhosted.org/packages/f4/b0/8ad15ed70bf8c2e49cc6ce4f5f6e30a54e33e6a0d5077fcdfe3de556dbf8/charm4py-0.12.3.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "917b4db81531bcca60d7836361a7610c", "sha256": "717e734f88f2152a73e7206d3edc5789dc3b130f69fe583524fdbc38bdce8d70" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "917b4db81531bcca60d7836361a7610c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1356160, "upload_time": "2019-09-09T01:36:52", "url": "https://files.pythonhosted.org/packages/1a/75/fd3a89f653e730f9725eda1de2618b4ba854439ac5a431015635ffcb0afa/charm4py-1.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ee2d8f7ffad5ed7b94919bc56c5b7a9d", "sha256": "1beb3510e4ad8bdcd066135dd2157767d87d190ae3aa4cc2b0e38b6f0cb1c1c2" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee2d8f7ffad5ed7b94919bc56c5b7a9d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1577652, "upload_time": "2019-09-09T01:36:54", "url": "https://files.pythonhosted.org/packages/fd/8a/f076e88cbd9a433ea1d5217935662cc17dee6a1f2a89da5b146b0f604f6c/charm4py-1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c002ff1f150e9fa7d23113dc5eb73d3c", "sha256": "6c5d0e860db5e409de494cd394b7f7b2b183a109468077736ee79f394559b267" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c002ff1f150e9fa7d23113dc5eb73d3c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1577651, "upload_time": "2019-09-09T01:36:57", "url": "https://files.pythonhosted.org/packages/da/cd/7da8bd2f85de8a213f651874044ba1896c11050fc9551efd64ede882ef51/charm4py-1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6b1934166e14715013f99adffc17850b", "sha256": "f1547032f8d3e22fba97f7f13fca0b299af2bedacc8b673ffc7348d93297ca63" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6b1934166e14715013f99adffc17850b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1485616, "upload_time": "2019-09-09T01:37:00", "url": "https://files.pythonhosted.org/packages/49/c4/7696dd3dfb5ce8709377adfdd6a0ebd20b80772b5723013972dfd98513fe/charm4py-1.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "0c3e39ff75c5b48648fb470892fd01ce", "sha256": "d8664125bd060ad73adeba1ffbb618cfd7801ba64d7179c58f1a1c68d519f948" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c3e39ff75c5b48648fb470892fd01ce", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1729114, "upload_time": "2019-09-09T01:37:03", "url": "https://files.pythonhosted.org/packages/86/fa/57c1529a08ddf330a675343094426eec8bc34d5e3183fad575d087fa554e/charm4py-1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cfa3a5b79d5ed024fdc4d7674f421fd4", "sha256": "9a32f2eb044c0810c702329ca0f503291406cb70e9d418396aabd169efd0cc40" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "cfa3a5b79d5ed024fdc4d7674f421fd4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 963848, "upload_time": "2019-09-09T04:01:30", "url": "https://files.pythonhosted.org/packages/15/96/c0db1aad4e472ebd7f02db4a86f780da945dd9faa45b36e6f8e69b98e07c/charm4py-1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d60e880e635f3f51e4c978f6414bb6ef", "sha256": "61a5b5da67951da579137ae5558b59252ed54216bb93f7b84398865e72f3f782" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d60e880e635f3f51e4c978f6414bb6ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1481547, "upload_time": "2019-09-09T01:37:06", "url": "https://files.pythonhosted.org/packages/bb/d6/33a2a0cfc7d12df43df8c908506d1687eb1113baf0f8c9c1889818cc4b96/charm4py-1.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "564dc21d165c6e7aa5eb20696e5a9890", "sha256": "e11187c0411417dfa5d0417999bc39303e10d1d0edd8f1d547531b3420eac0b3" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "564dc21d165c6e7aa5eb20696e5a9890", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1730220, "upload_time": "2019-09-09T01:37:09", "url": "https://files.pythonhosted.org/packages/e0/ca/137b3bca649e9a74a251fe89d6d9c875d8b472ef8906b5296f224bb2f71e/charm4py-1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fee25e33b78f7a6aa42d252481b70b9f", "sha256": "f60fdb479283b8f53174a6a15b7a23685e3d296b3fd03f3514329502fd5ef61e" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fee25e33b78f7a6aa42d252481b70b9f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 964236, "upload_time": "2019-09-09T04:01:33", "url": "https://files.pythonhosted.org/packages/69/e2/b7f22fe4226ef51be67676d7a47d956b9a363edafc46b6b03b6a00395bcb/charm4py-1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1bc36d0716b68aefde408261a2f2c707", "sha256": "927d627364f099c389e6f2c86bf10038b8426df8177885e474c52b3d10c6c1ce" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1bc36d0716b68aefde408261a2f2c707", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1479943, "upload_time": "2019-09-09T01:37:12", "url": "https://files.pythonhosted.org/packages/3c/1f/8691c3229717c7ee1ed2a5ccd3c05b173825d1946decfd3785dfa0d64da1/charm4py-1.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c28a77d632ba28867b593dc7b95147a2", "sha256": "240e1d624c63b22fdcfdaff856425b4753798f7c809392093d16e9cf1efb46d1" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c28a77d632ba28867b593dc7b95147a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1735191, "upload_time": "2019-09-09T01:37:16", "url": "https://files.pythonhosted.org/packages/b3/52/e27ae0308fc31ff3e4b40ec1b4a38299743af7a07ebe5cbb09c75cad5648/charm4py-1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3dedf4a5775196422f2124484344b2ad", "sha256": "f6af4ebbc86723acd3d637f3d6e990158904735ed093a66e1c6fe01b2a03681f" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3dedf4a5775196422f2124484344b2ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 967887, "upload_time": "2019-09-09T04:01:36", "url": "https://files.pythonhosted.org/packages/fc/2b/5af72025d28f482f8277e1ed05279878cc8423282f0e914f9f5e27cf20f6/charm4py-1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "97cda3da294c2744f223ed19b0bf192c", "sha256": "cfc56b35d5a757a2349fa7b56c80d7edb63545a20fc30b2a10249e68d799e3da" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "97cda3da294c2744f223ed19b0bf192c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1480535, "upload_time": "2019-09-09T01:37:19", "url": "https://files.pythonhosted.org/packages/e5/c7/f7f546c3d1a0d0053c9bb77ee40de04593681fe769f4658f64af3e587238/charm4py-1.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "922617fa548e919bbe2886e33eea3824", "sha256": "892084d301fb67a871b6a92ee17863dd9cffc5741afe70e497c2488759e853fd" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "922617fa548e919bbe2886e33eea3824", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1734937, "upload_time": "2019-09-09T01:37:22", "url": "https://files.pythonhosted.org/packages/2a/03/939dadcc4070b7608271a217a49c6b99fe2b58a55d2fca134faf9240d4c0/charm4py-1.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f81a9107e99a3b24d207a481c99b173c", "sha256": "639ef0a48fb4497b9c4563114e7e6e11f8ad2e1b0ba67aacb81710a1df13ac27" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f81a9107e99a3b24d207a481c99b173c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 968180, "upload_time": "2019-09-09T04:01:38", "url": "https://files.pythonhosted.org/packages/c0/1a/55d9bda329a8f7607b644227eb99e16adf008394facdaedcb5f97241394f/charm4py-1.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c38122e851974c88c15887deb2792af8", "sha256": "44c41a63fd2e2de1770bc3272bd1ec6ccb60881dcef39d81e7646a5f97d00363" }, "downloads": -1, "filename": "charm4py-1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c38122e851974c88c15887deb2792af8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 850802, "upload_time": "2019-09-09T01:37:24", "url": "https://files.pythonhosted.org/packages/3e/84/6830251f45c472a445fb1c4d4459f7f5f6284f6967e9e634e4e10216f129/charm4py-1.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fdc9e13c902e61761e3c373e481c95d7", "sha256": "8ddb9f021b7379fde94b28c31f4ab6a60ced2c2a207a2d75ce57cb91b6be92bc" }, "downloads": -1, "filename": "charm4py-1.0.tar.gz", "has_sig": false, "md5_digest": "fdc9e13c902e61761e3c373e481c95d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3379984, "upload_time": "2019-09-09T01:37:29", "url": "https://files.pythonhosted.org/packages/b4/a8/3287448c7061fbf5a37493eab1b4838cbc5f5ceb86750ce56fa7caf6b3e5/charm4py-1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "917b4db81531bcca60d7836361a7610c", "sha256": "717e734f88f2152a73e7206d3edc5789dc3b130f69fe583524fdbc38bdce8d70" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "917b4db81531bcca60d7836361a7610c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1356160, "upload_time": "2019-09-09T01:36:52", "url": "https://files.pythonhosted.org/packages/1a/75/fd3a89f653e730f9725eda1de2618b4ba854439ac5a431015635ffcb0afa/charm4py-1.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ee2d8f7ffad5ed7b94919bc56c5b7a9d", "sha256": "1beb3510e4ad8bdcd066135dd2157767d87d190ae3aa4cc2b0e38b6f0cb1c1c2" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee2d8f7ffad5ed7b94919bc56c5b7a9d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1577652, "upload_time": "2019-09-09T01:36:54", "url": "https://files.pythonhosted.org/packages/fd/8a/f076e88cbd9a433ea1d5217935662cc17dee6a1f2a89da5b146b0f604f6c/charm4py-1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c002ff1f150e9fa7d23113dc5eb73d3c", "sha256": "6c5d0e860db5e409de494cd394b7f7b2b183a109468077736ee79f394559b267" }, "downloads": -1, "filename": "charm4py-1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c002ff1f150e9fa7d23113dc5eb73d3c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1577651, "upload_time": "2019-09-09T01:36:57", "url": "https://files.pythonhosted.org/packages/da/cd/7da8bd2f85de8a213f651874044ba1896c11050fc9551efd64ede882ef51/charm4py-1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6b1934166e14715013f99adffc17850b", "sha256": "f1547032f8d3e22fba97f7f13fca0b299af2bedacc8b673ffc7348d93297ca63" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6b1934166e14715013f99adffc17850b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1485616, "upload_time": "2019-09-09T01:37:00", "url": "https://files.pythonhosted.org/packages/49/c4/7696dd3dfb5ce8709377adfdd6a0ebd20b80772b5723013972dfd98513fe/charm4py-1.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "0c3e39ff75c5b48648fb470892fd01ce", "sha256": "d8664125bd060ad73adeba1ffbb618cfd7801ba64d7179c58f1a1c68d519f948" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c3e39ff75c5b48648fb470892fd01ce", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1729114, "upload_time": "2019-09-09T01:37:03", "url": "https://files.pythonhosted.org/packages/86/fa/57c1529a08ddf330a675343094426eec8bc34d5e3183fad575d087fa554e/charm4py-1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cfa3a5b79d5ed024fdc4d7674f421fd4", "sha256": "9a32f2eb044c0810c702329ca0f503291406cb70e9d418396aabd169efd0cc40" }, "downloads": -1, "filename": "charm4py-1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "cfa3a5b79d5ed024fdc4d7674f421fd4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 963848, "upload_time": "2019-09-09T04:01:30", "url": "https://files.pythonhosted.org/packages/15/96/c0db1aad4e472ebd7f02db4a86f780da945dd9faa45b36e6f8e69b98e07c/charm4py-1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d60e880e635f3f51e4c978f6414bb6ef", "sha256": "61a5b5da67951da579137ae5558b59252ed54216bb93f7b84398865e72f3f782" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d60e880e635f3f51e4c978f6414bb6ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1481547, "upload_time": "2019-09-09T01:37:06", "url": "https://files.pythonhosted.org/packages/bb/d6/33a2a0cfc7d12df43df8c908506d1687eb1113baf0f8c9c1889818cc4b96/charm4py-1.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "564dc21d165c6e7aa5eb20696e5a9890", "sha256": "e11187c0411417dfa5d0417999bc39303e10d1d0edd8f1d547531b3420eac0b3" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "564dc21d165c6e7aa5eb20696e5a9890", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1730220, "upload_time": "2019-09-09T01:37:09", "url": "https://files.pythonhosted.org/packages/e0/ca/137b3bca649e9a74a251fe89d6d9c875d8b472ef8906b5296f224bb2f71e/charm4py-1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fee25e33b78f7a6aa42d252481b70b9f", "sha256": "f60fdb479283b8f53174a6a15b7a23685e3d296b3fd03f3514329502fd5ef61e" }, "downloads": -1, "filename": "charm4py-1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fee25e33b78f7a6aa42d252481b70b9f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 964236, "upload_time": "2019-09-09T04:01:33", "url": "https://files.pythonhosted.org/packages/69/e2/b7f22fe4226ef51be67676d7a47d956b9a363edafc46b6b03b6a00395bcb/charm4py-1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1bc36d0716b68aefde408261a2f2c707", "sha256": "927d627364f099c389e6f2c86bf10038b8426df8177885e474c52b3d10c6c1ce" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1bc36d0716b68aefde408261a2f2c707", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1479943, "upload_time": "2019-09-09T01:37:12", "url": "https://files.pythonhosted.org/packages/3c/1f/8691c3229717c7ee1ed2a5ccd3c05b173825d1946decfd3785dfa0d64da1/charm4py-1.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c28a77d632ba28867b593dc7b95147a2", "sha256": "240e1d624c63b22fdcfdaff856425b4753798f7c809392093d16e9cf1efb46d1" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c28a77d632ba28867b593dc7b95147a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1735191, "upload_time": "2019-09-09T01:37:16", "url": "https://files.pythonhosted.org/packages/b3/52/e27ae0308fc31ff3e4b40ec1b4a38299743af7a07ebe5cbb09c75cad5648/charm4py-1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3dedf4a5775196422f2124484344b2ad", "sha256": "f6af4ebbc86723acd3d637f3d6e990158904735ed093a66e1c6fe01b2a03681f" }, "downloads": -1, "filename": "charm4py-1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3dedf4a5775196422f2124484344b2ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 967887, "upload_time": "2019-09-09T04:01:36", "url": "https://files.pythonhosted.org/packages/fc/2b/5af72025d28f482f8277e1ed05279878cc8423282f0e914f9f5e27cf20f6/charm4py-1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "97cda3da294c2744f223ed19b0bf192c", "sha256": "cfc56b35d5a757a2349fa7b56c80d7edb63545a20fc30b2a10249e68d799e3da" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "97cda3da294c2744f223ed19b0bf192c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1480535, "upload_time": "2019-09-09T01:37:19", "url": "https://files.pythonhosted.org/packages/e5/c7/f7f546c3d1a0d0053c9bb77ee40de04593681fe769f4658f64af3e587238/charm4py-1.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "922617fa548e919bbe2886e33eea3824", "sha256": "892084d301fb67a871b6a92ee17863dd9cffc5741afe70e497c2488759e853fd" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "922617fa548e919bbe2886e33eea3824", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1734937, "upload_time": "2019-09-09T01:37:22", "url": "https://files.pythonhosted.org/packages/2a/03/939dadcc4070b7608271a217a49c6b99fe2b58a55d2fca134faf9240d4c0/charm4py-1.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f81a9107e99a3b24d207a481c99b173c", "sha256": "639ef0a48fb4497b9c4563114e7e6e11f8ad2e1b0ba67aacb81710a1df13ac27" }, "downloads": -1, "filename": "charm4py-1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f81a9107e99a3b24d207a481c99b173c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 968180, "upload_time": "2019-09-09T04:01:38", "url": "https://files.pythonhosted.org/packages/c0/1a/55d9bda329a8f7607b644227eb99e16adf008394facdaedcb5f97241394f/charm4py-1.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c38122e851974c88c15887deb2792af8", "sha256": "44c41a63fd2e2de1770bc3272bd1ec6ccb60881dcef39d81e7646a5f97d00363" }, "downloads": -1, "filename": "charm4py-1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c38122e851974c88c15887deb2792af8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 850802, "upload_time": "2019-09-09T01:37:24", "url": "https://files.pythonhosted.org/packages/3e/84/6830251f45c472a445fb1c4d4459f7f5f6284f6967e9e634e4e10216f129/charm4py-1.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fdc9e13c902e61761e3c373e481c95d7", "sha256": "8ddb9f021b7379fde94b28c31f4ab6a60ced2c2a207a2d75ce57cb91b6be92bc" }, "downloads": -1, "filename": "charm4py-1.0.tar.gz", "has_sig": false, "md5_digest": "fdc9e13c902e61761e3c373e481c95d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3379984, "upload_time": "2019-09-09T01:37:29", "url": "https://files.pythonhosted.org/packages/b4/a8/3287448c7061fbf5a37493eab1b4838cbc5f5ceb86750ce56fa7caf6b3e5/charm4py-1.0.tar.gz" } ] }