{ "info": { "author": "Mike McKerns", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering", "Topic :: Software Development" ], "description": "-----------------------------\ndill: serialize all of python\n-----------------------------\n\nAbout Dill\n==========\n\n``dill`` extends python's ``pickle`` module for serializing and de-serializing\npython objects to the majority of the built-in python types. Serialization\nis the process of converting an object to a byte stream, and the inverse\nof which is converting a byte stream back to on python object hierarchy.\n\n``dill`` provides the user the same interface as the ``pickle`` module, and\nalso includes some additional features. In addition to pickling python\nobjects, ``dill`` provides the ability to save the state of an interpreter\nsession in a single command. Hence, it would be feasable to save a\ninterpreter session, close the interpreter, ship the pickled file to\nanother computer, open a new interpreter, unpickle the session and\nthus continue from the 'saved' state of the original interpreter\nsession.\n\n``dill`` can be used to store python objects to a file, but the primary\nusage is to send python objects across the network as a byte stream.\n``dill`` is quite flexible, and allows arbitrary user defined classes\nand functions to be serialized. Thus ``dill`` is not intended to be\nsecure against erroneously or maliciously constructed data. It is\nleft to the user to decide whether the data they unpickle is from\na trustworthy source.\n\n``dill`` is part of ``pathos``, a python framework for heterogeneous computing.\n``dill`` is in active development, so any user feedback, bug reports, comments,\nor suggestions are highly appreciated. A list of known issues is maintained\nat http://trac.mystic.cacr.caltech.edu/project/pathos/query.html, with a public\nticket list at https://github.com/uqfoundation/dill/issues.\n\n\nMajor Features\n==============\n\n``dill`` can pickle the following standard types:\n\n - none, type, bool, int, long, float, complex, str, unicode,\n - tuple, list, dict, file, buffer, builtin,\n - both old and new style classes,\n - instances of old and new style classes,\n - set, frozenset, array, functions, exceptions\n\n``dill`` can also pickle more 'exotic' standard types:\n\n - functions with yields, nested functions, lambdas,\n - cell, method, unboundmethod, module, code, methodwrapper,\n - dictproxy, methoddescriptor, getsetdescriptor, memberdescriptor,\n - wrapperdescriptor, xrange, slice,\n - notimplemented, ellipsis, quit\n\n``dill`` cannot yet pickle these standard types:\n\n - frame, generator, traceback\n\n``dill`` also provides the capability to:\n\n - save and load python interpreter sessions\n - save and extract the source code from functions and classes\n - interactively diagnose pickling errors\n\n\nCurrent Release\n===============\n\nThis documentation is for version ``dill-0.3.1.1``.\n\nThe latest released version of ``dill`` is available from:\n\n https://pypi.org/project/dill\n\n``dill`` is distributed under a 3-clause BSD license.\n\n >>> import dill\n >>> print (dill.license())\n\n\nDevelopment Version \n===================\n\nYou can get the latest development version with all the shiny new features at:\n\n https://github.com/uqfoundation\n\nIf you have a new contribution, please submit a pull request.\n\n\nInstallation\n============\n\n``dill`` is packaged to install from source, so you must\ndownload the tarball, unzip, and run the installer::\n\n [download]\n $ tar -xvzf dill-0.3.1.1.tar.gz\n $ cd dill-0.3.1.1\n $ python setup py build\n $ python setup py install\n\nYou will be warned of any missing dependencies and/or settings\nafter you run the \"build\" step above. \n\nAlternately, ``dill`` can be installed with ``pip`` or ``easy_install``::\n\n $ pip install dill\n\n\nRequirements\n============\n\n``dill`` requires:\n\n - ``python``, **version >= 2.6** or **version >= 3.1**, or ``pypy``\n\nOptional requirements:\n\n - ``setuptools``, **version >= 0.6**\n - ``pyreadline``, **version >= 1.7.1** (on windows)\n - ``objgraph``, **version >= 1.7.2**\n\n\nMore Information\n================\n\nProbably the best way to get started is to look at the documentation at\nhttp://dill.rtfd.io. Also see ``dill.tests`` for a set of scripts that\ndemonstrate how ``dill`` can serialize different python objects. You can\nrun the test suite with ``python -m dill.tests``. The contents of any\npickle file can be examined with ``undill``. As ``dill`` conforms to\nthe ``pickle`` interface, the examples and documentation found at\nhttp://docs.python.org/library/pickle.html also apply to ``dill``\nif one will ``import dill as pickle``. The source code is also generally\nwell documented, so further questions may be resolved by inspecting the\ncode itself. Please feel free to submit a ticket on github, or ask a\nquestion on stackoverflow (**@Mike McKerns**).\nIf you would like to share how you use ``dill`` in your work, please send\nan email (to **mmckerns at uqfoundation dot org**).\n\n\nCitation\n========\n\nIf you use ``dill`` to do research that leads to publication, we ask that you\nacknowledge use of ``dill`` by citing the following in your publication::\n\n M.M. McKerns, L. Strand, T. Sullivan, A. Fang, M.A.G. Aivazis,\n \"Building a framework for predictive science\", Proceedings of\n the 10th Python in Science Conference, 2011;\n http://arxiv.org/pdf/1202.1056\n\n Michael McKerns and Michael Aivazis,\n \"pathos: a framework for heterogeneous computing\", 2010- ;\n http://trac.mystic.cacr.caltech.edu/project/pathos\n\nPlease see http://trac.mystic.cacr.caltech.edu/project/pathos or\nhttp://arxiv.org/pdf/1202.1056 for further information.", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/uqfoundation/dill/releases/download/dill-0.3.1.1/dill-0.3.1.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pypi.org/project/dill", "keywords": "", "license": "3-clause BSD", "maintainer": "", "maintainer_email": "", "name": "dill", "package_url": "https://pypi.org/project/dill/", "platform": "Linux", "project_url": "https://pypi.org/project/dill/", "project_urls": { "Download": "https://github.com/uqfoundation/dill/releases/download/dill-0.3.1.1/dill-0.3.1.1.tar.gz", "Homepage": "https://pypi.org/project/dill" }, "release_url": "https://pypi.org/project/dill/0.3.1.1/", "requires_dist": null, "requires_python": ">=2.6, !=3.0.*", "summary": "serialize all of python", "version": "0.3.1.1" }, "last_serial": 5899940, "releases": { "0.1a1": [ { "comment_text": "", "digests": { "md5": "d9740d4beb9fd3ddefbadcbfd1aafed6", "sha256": "e16fd9c0764d60533e8c304d4217c85a3ad4270ad451b7620fce39cbe406137a" }, "downloads": -1, "filename": "dill-0.1a1.tgz", "has_sig": false, "md5_digest": "d9740d4beb9fd3ddefbadcbfd1aafed6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11294, "upload_time": "2015-12-22T20:21:13", "url": "https://files.pythonhosted.org/packages/a4/40/c515706a658678c7c75ff8a67053b8e4d0163f26ae0feb7841910d6e2cd1/dill-0.1a1.tgz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "27b2c211c05b81a5ca1bc53049280eba", "sha256": "883e30fcc9e67f48e4794d1d29d5863999fe929560db3554d3c9c58a6da33308" }, "downloads": -1, "filename": "dill-0.2.tgz", "has_sig": false, "md5_digest": "27b2c211c05b81a5ca1bc53049280eba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45266, "upload_time": "2014-05-19T16:13:21", "url": "https://files.pythonhosted.org/packages/75/e4/59c05d3f012915bb27ddae4ad272d15c2773a4f345ec3525696276fdde8b/dill-0.2.tgz" }, { "comment_text": "", "digests": { "md5": "759002d9b71605cde2a7a052dad96b5d", "sha256": "aba8d4c81c4136310e6ce333bd6f4f3ea2d53bd367e2f69c864428f260c0308c" }, "downloads": -1, "filename": "dill-0.2.zip", "has_sig": false, "md5_digest": "759002d9b71605cde2a7a052dad96b5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62890, "upload_time": "2014-05-19T16:13:34", "url": "https://files.pythonhosted.org/packages/47/69/9e1312d761d1017363b644864c0e61b741326b220ab7ed8924d8c1937ae8/dill-0.2.zip" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "66f4d8fff8724568bde03e421bf520bb", "sha256": "c0223a75afeef28734c6cd1ca40bd676e010209789f2e3986bbb4ca66d3754d4" }, "downloads": -1, "filename": "dill-0.2.1.tgz", "has_sig": false, "md5_digest": "66f4d8fff8724568bde03e421bf520bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45794, "upload_time": "2014-06-01T22:35:15", "url": "https://files.pythonhosted.org/packages/24/e2/dd6fcbccf89e7e056c216316fa3ba5c3ce0fe304dfe9d0fa0adb64077052/dill-0.2.1.tgz" }, { "comment_text": "", "digests": { "md5": "b2354a5717da6228acae33cb13bc407b", "sha256": "a54401bdfae419cfe1c9e0b48e9b290afccaa413d2319d9bb0fdb85c130a7923" }, "downloads": -1, "filename": "dill-0.2.1.zip", "has_sig": false, "md5_digest": "b2354a5717da6228acae33cb13bc407b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63980, "upload_time": "2014-06-01T22:35:28", "url": "https://files.pythonhosted.org/packages/51/76/14048a72ccea086e80621d39b1519fb3219f9c2354ac8481d2a0a027543e/dill-0.2.1.zip" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "c0802fb6a8aca62fa88325fc5f4a48b4", "sha256": "0b83accdce4aef0e241c3f75cdc177bee84c014219f689749cfbc07e7cdb0a2d" }, "downloads": -1, "filename": "dill-0.2.2.tgz", "has_sig": false, "md5_digest": "c0802fb6a8aca62fa88325fc5f4a48b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54865, "upload_time": "2014-12-26T16:40:12", "url": "https://files.pythonhosted.org/packages/c5/86/7c5bbc04f4e04acec19a070b561a11da667679158b1de9cf2f482d532331/dill-0.2.2.tgz" }, { "comment_text": "", "digests": { "md5": "a282b81a6d289f91218bba8d07f49bd8", "sha256": "6ad223cc41614dcc8cf217e8d7a32857f13752cd0a5332580c80b9fa054ece69" }, "downloads": -1, "filename": "dill-0.2.2.zip", "has_sig": false, "md5_digest": "a282b81a6d289f91218bba8d07f49bd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74339, "upload_time": "2014-12-26T16:40:34", "url": "https://files.pythonhosted.org/packages/f0/a6/6f96502f293e9b126d87dcc18e85283f865664fe89eb0df804f05f1fc1ed/dill-0.2.2.zip" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "a127dbcf9b9a41d1746dafc678353943", "sha256": "2b98942466b7841c26562a7ebfbf4a15a6026347b5c3edc0a2e57387416f1c86" }, "downloads": -1, "filename": "dill-0.2.3.tgz", "has_sig": false, "md5_digest": "a127dbcf9b9a41d1746dafc678353943", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57618, "upload_time": "2015-06-22T11:51:17", "url": "https://files.pythonhosted.org/packages/85/6a/64e2c6da064f2c30e19c478580db1da3060266f5279886df22f559e793a2/dill-0.2.3.tgz" }, { "comment_text": "", "digests": { "md5": "0b6c4f55da320893991cc32628a6e9be", "sha256": "9abf049a5305cb982ebbdccf084273b108c8042b826a7606ba568fc5e063e582" }, "downloads": -1, "filename": "dill-0.2.3.zip", "has_sig": false, "md5_digest": "0b6c4f55da320893991cc32628a6e9be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78310, "upload_time": "2015-06-22T11:51:02", "url": "https://files.pythonhosted.org/packages/fe/b0/7591e33d830826cd447c61b649e7e4fba43bbb7c1d8940aa49008c54d823/dill-0.2.3.zip" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "8e7d1ec5a0f150b536da4d0623c3931b", "sha256": "deca57da33ad2121ab1b9c4493bf8eb2b3a72b6426d4b9a3a853a073c68b97ca" }, "downloads": -1, "filename": "dill-0.2.4.tgz", "has_sig": false, "md5_digest": "8e7d1ec5a0f150b536da4d0623c3931b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58607, "upload_time": "2015-08-05T12:54:53", "url": "https://files.pythonhosted.org/packages/90/f0/1cfd13b09b73756019140a254fe3ae0e5885125558ac941f2fe256ec5cff/dill-0.2.4.tgz" }, { "comment_text": "", "digests": { "md5": "5d10cd1cafea38a45bcd4542f2ca3adc", "sha256": "db68929eef0e886055d6bcd86f830141c1f653ddbf5d081c086e9d1c45efb334" }, "downloads": -1, "filename": "dill-0.2.4.zip", "has_sig": false, "md5_digest": "5d10cd1cafea38a45bcd4542f2ca3adc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79049, "upload_time": "2015-08-05T12:55:08", "url": "https://files.pythonhosted.org/packages/ea/c0/3e20aa1bcdd0c73106ca8ca188cdbdeb43f7cabffbf162b540697156c6ca/dill-0.2.4.zip" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "5b0c312f034914be2e230457747d9b6c", "sha256": "431c9d46e190dcdf1397234cf659d66e2e22e33b0474ed6ee2d0b16c9c0ea319" }, "downloads": -1, "filename": "dill-0.2.5.tgz", "has_sig": false, "md5_digest": "5b0c312f034914be2e230457747d9b6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60572, "upload_time": "2016-02-06T16:05:27", "url": "https://files.pythonhosted.org/packages/47/59/a72f5c3b17647031d426cd3df6874c7e2a8821b007ef4241ee4a59594cb3/dill-0.2.5.tgz" }, { "comment_text": "", "digests": { "md5": "c9eecc32351f4934e2e67740a40397f6", "sha256": "e82b3db7b9d962911c9c2d5cf2bb4a04f43933f505a624fb7dc5f68b949f0a5c" }, "downloads": -1, "filename": "dill-0.2.5.zip", "has_sig": false, "md5_digest": "c9eecc32351f4934e2e67740a40397f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81705, "upload_time": "2016-02-06T16:05:43", "url": "https://files.pythonhosted.org/packages/e9/c9/4ceb72351dd929f5b50d7586b34721efb177fad67114f312ac4d768af4a1/dill-0.2.5.zip" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "f8b98b15223d23431024349f2102b4f9", "sha256": "6c1ccca68be483fa8c66e85a89ffc850206c26373aa77a97b83d8d0994e7f1fd" }, "downloads": -1, "filename": "dill-0.2.6.zip", "has_sig": false, "md5_digest": "f8b98b15223d23431024349f2102b4f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83370, "upload_time": "2017-02-01T19:15:09", "url": "https://files.pythonhosted.org/packages/ef/69/0d03d5f9af0e16d41bb47262100b0c4c08f90538c9a5c2de0d44284172ba/dill-0.2.6.zip" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "3a85cb1c47c473a85917b4a186b68986", "sha256": "ddda0107e68e4eb1772a9f434f62a513c080c7171bd0dd6fb65d992788509812" }, "downloads": -1, "filename": "dill-0.2.7.tar.gz", "has_sig": false, "md5_digest": "3a85cb1c47c473a85917b4a186b68986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64067, "upload_time": "2017-07-06T23:52:19", "url": "https://files.pythonhosted.org/packages/8f/41/c995c721bd57340b7d84fc644eeb5605791e5ee73a899d58131731eba7e0/dill-0.2.7.tar.gz" } ], "0.2.7.1": [ { "comment_text": "", "digests": { "md5": "e58b860720a9bf47195e117636fe3c6a", "sha256": "97fd758f5fe742d42b11ec8318ecfcff8776bccacbfcec05dfd6276f5d450f73" }, "downloads": -1, "filename": "dill-0.2.7.1.tar.gz", "has_sig": false, "md5_digest": "e58b860720a9bf47195e117636fe3c6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64485, "upload_time": "2017-07-18T17:05:37", "url": "https://files.pythonhosted.org/packages/91/a0/19d4d31dee064fc553ae01263b5c55e7fb93daff03a69debbedee647c5a0/dill-0.2.7.1.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "80ca9ce15cb430b0ac4dfafa25014f90", "sha256": "ffa40ac8a000af69d94090f68bbc434ef98d762a882ad72fed5c4b3bb0e1935b" }, "downloads": -1, "filename": "dill-0.2.8.tar.gz", "has_sig": false, "md5_digest": "80ca9ce15cb430b0ac4dfafa25014f90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 593797, "upload_time": "2018-06-21T02:02:32", "url": "https://files.pythonhosted.org/packages/d3/42/f4a51617ebc608e177525347d751214416bb871771f3b01a91ccaf1b72a6/dill-0.2.8.tar.gz" } ], "0.2.8.1": [ { "comment_text": "", "digests": { "md5": "60a82d88b9fabeaa6178e660ee483dfd", "sha256": "53a6d7bf74f737a514cb89f72d0cb8b80dbd44a9cbbffaa14bffb57f4d7c3822" }, "downloads": -1, "filename": "dill-0.2.8.1.tar.gz", "has_sig": false, "md5_digest": "60a82d88b9fabeaa6178e660ee483dfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150079, "upload_time": "2018-06-21T03:32:31", "url": "https://files.pythonhosted.org/packages/e5/d5/f129d6bec4eebb6f8b74d37226bb8f94380439bf8201dd9b553a41503410/dill-0.2.8.1.tar.gz" } ], "0.2.8.2": [ { "comment_text": "", "digests": { "md5": "cf933658c57ed142a3ae11be411a2863", "sha256": "624dc244b94371bb2d6e7f40084228a2edfff02373fe20e018bef1ee92fdd5b3" }, "downloads": -1, "filename": "dill-0.2.8.2.tar.gz", "has_sig": false, "md5_digest": "cf933658c57ed142a3ae11be411a2863", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150078, "upload_time": "2018-06-22T22:12:44", "url": "https://files.pythonhosted.org/packages/6f/78/8b96476f4ae426db71c6e86a8e6a81407f015b34547e442291cd397b18f3/dill-0.2.8.2.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "d11b326ff82b88e17ba886c4c05756f2", "sha256": "f6d6046f9f9195206063dd0415dff185ad593d6ee8b0e67f12597c0f4df4986f" }, "downloads": -1, "filename": "dill-0.2.9.tar.gz", "has_sig": false, "md5_digest": "d11b326ff82b88e17ba886c4c05756f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.5, !=3.0.*", "size": 150738, "upload_time": "2019-01-21T17:07:54", "url": "https://files.pythonhosted.org/packages/fe/42/bfe2e0857bc284cbe6a011d93f2a9ad58a22cb894461b199ae72cfef0f29/dill-0.2.9.tar.gz" } ], "0.2a1": [ { "comment_text": "", "digests": { "md5": "34d0258df5c7258c0cd781025899c2c4", "sha256": "4a3bf154741c8d7d0a13e9af34421621cf13321b09078a4760a8a6c9cde1c73b" }, "downloads": -1, "filename": "dill-0.2a1.tgz", "has_sig": false, "md5_digest": "34d0258df5c7258c0cd781025899c2c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24298, "upload_time": "2013-10-20T19:46:36", "url": "https://files.pythonhosted.org/packages/7a/24/8ad532f3837a347b16ff173e83b29e264da37eadfbd58ed260a0a4546a4d/dill-0.2a1.tgz" }, { "comment_text": "", "digests": { "md5": "fc9ad093a26f3262ed8a598722de96ab", "sha256": "a6b0d3d16f0a387157d5fd0750b1bbf0f69eed2c66fd17cbbfcc8facc44d89a5" }, "downloads": -1, "filename": "dill-0.2a1.win32.exe", "has_sig": false, "md5_digest": "fc9ad093a26f3262ed8a598722de96ab", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 91125, "upload_time": "2013-10-20T23:00:04", "url": "https://files.pythonhosted.org/packages/64/0b/a2734c03bff1505f69a0a1ba77c83c20cf6acb6bbd91c1d64f7f370376d8/dill-0.2a1.win32.exe" }, { "comment_text": "", "digests": { "md5": "d6a3016f6f0a5b36c059c77c41c3e21f", "sha256": "5de92063ceb66683ae1640ff1e114e9d660eeb674a6b025f7a1cf9cfd25ea2f7" }, "downloads": -1, "filename": "dill-0.2a1.zip", "has_sig": false, "md5_digest": "d6a3016f6f0a5b36c059c77c41c3e21f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34710, "upload_time": "2013-10-20T22:54:56", "url": "https://files.pythonhosted.org/packages/b9/b9/49a2b1db0765691940bc67d330a027fe9fd23cef28ea42b8c476f87f1b2f/dill-0.2a1.zip" } ], "0.2b1": [ { "comment_text": "", "digests": { "md5": "75f44a4727017e0c08d8a23daac7a2f2", "sha256": "cf2386ef438f5de656ecb9cd8f45a26016081ef7df50d18e660d9abe66124082" }, "downloads": -1, "filename": "dill-0.2b1.tgz", "has_sig": false, "md5_digest": "75f44a4727017e0c08d8a23daac7a2f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24066, "upload_time": "2013-11-27T22:35:24", "url": "https://files.pythonhosted.org/packages/6b/3c/8d73834acadfc161108bd05ff24a093cb0890da0eba3c586f4c7ab6374a5/dill-0.2b1.tgz" }, { "comment_text": "", "digests": { "md5": "0294660d677dabd3a64b495914c394dc", "sha256": "a0cb5c8c974bf577bf4a2650d398d63cbfa38137014f77afd973007dfd9e6e46" }, "downloads": -1, "filename": "dill-0.2b1.win32.exe", "has_sig": false, "md5_digest": "0294660d677dabd3a64b495914c394dc", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 92695, "upload_time": "2013-11-27T22:36:02", "url": "https://files.pythonhosted.org/packages/23/3b/3d3e4149c0abce24b95b0a8949f967981a76844c265103c33584b2d1a60b/dill-0.2b1.win32.exe" }, { "comment_text": "", "digests": { "md5": "e101140037b9486e040fd80d8860f070", "sha256": "3da931e7025c3e7b38bfd96d07d02b50a2f9ce68a598a553b5f15e6a75e3bdd3" }, "downloads": -1, "filename": "dill-0.2b1.zip", "has_sig": false, "md5_digest": "e101140037b9486e040fd80d8860f070", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36756, "upload_time": "2013-11-27T22:35:41", "url": "https://files.pythonhosted.org/packages/db/67/a778910d32f70fbfd4c991936d202fbc8b41434f913cdf84a303caf309b3/dill-0.2b1.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "542c55140d4059d4a3ae519e8029d87e", "sha256": "993409439ebf7f7902d9de93eaa2a395e0446ff773d29f13dc46646482f76906" }, "downloads": -1, "filename": "dill-0.3.0.tar.gz", "has_sig": false, "md5_digest": "542c55140d4059d4a3ae519e8029d87e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, !=3.0.*", "size": 151375, "upload_time": "2019-06-26T23:05:27", "url": "https://files.pythonhosted.org/packages/39/7a/70803635c850e351257029089d38748516a280864c97cbc73087afef6d51/dill-0.3.0.tar.gz" } ], "0.3.1.1": [ { "comment_text": "", "digests": { "md5": "ca71f3de8ae69fd3c527a55a95abbda8", "sha256": "42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c" }, "downloads": -1, "filename": "dill-0.3.1.1.tar.gz", "has_sig": false, "md5_digest": "ca71f3de8ae69fd3c527a55a95abbda8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, !=3.0.*", "size": 151986, "upload_time": "2019-09-28T15:44:19", "url": "https://files.pythonhosted.org/packages/c7/11/345f3173809cea7f1a193bfbf02403fff250a3360e0e118a1630985e547d/dill-0.3.1.1.tar.gz" } ], "0.3.1.dev0": [ { "comment_text": "", "digests": { "md5": "5568d4210de9d50a0f7724afaefea42f", "sha256": "d3ddddf2806a7bc9858b20c02dc174396795545e9d62f243b34481fd26eb3e2c" }, "downloads": -1, "filename": "dill-0.3.1.tar.gz", "has_sig": false, "md5_digest": "5568d4210de9d50a0f7724afaefea42f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, !=3.0.*", "size": 151996, "upload_time": "2019-09-28T14:49:43", "url": "https://files.pythonhosted.org/packages/3e/ad/31932a4e2804897e6fd2f946d53df51dd9b4aa55e152b5404395d00354d1/dill-0.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ca71f3de8ae69fd3c527a55a95abbda8", "sha256": "42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c" }, "downloads": -1, "filename": "dill-0.3.1.1.tar.gz", "has_sig": false, "md5_digest": "ca71f3de8ae69fd3c527a55a95abbda8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, !=3.0.*", "size": 151986, "upload_time": "2019-09-28T15:44:19", "url": "https://files.pythonhosted.org/packages/c7/11/345f3173809cea7f1a193bfbf02403fff250a3360e0e118a1630985e547d/dill-0.3.1.1.tar.gz" } ] }