{ "info": { "author": "Will Mayner", "author_email": "wmayner@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": ".. image:: https://img.shields.io/travis/wmayner/pyemd/develop.svg?style=flat-square&maxAge=3600\n :target: https://travis-ci.org/wmayner/pyemd\n.. image:: https://img.shields.io/pypi/pyversions/pyemd.svg?style=flat-square&maxAge=86400\n :target: https://wiki.python.org/moin/Python2orPython3\n :alt: Python versions badge\n\nPyEMD: Fast EMD for Python\n==========================\n\nPyEMD is a Python wrapper for `Ofir Pele and Michael Werman's implementation\n`_ of the `Earth Mover's\nDistance `_ that allows\nit to be used with NumPy. **If you use this code, please cite the papers listed\nat the end of this document.**\n\n\nInstallation\n------------\n\n.. code:: bash\n\n pip install pyemd\n\n\nUsage\n-----\n\n.. code:: python\n\n >>> from pyemd import emd\n >>> import numpy as np\n >>> first_histogram = np.array([0.0, 1.0])\n >>> second_histogram = np.array([5.0, 3.0])\n >>> distance_matrix = np.array([[0.0, 0.5],\n ... [0.5, 0.0]])\n >>> emd(first_histogram, second_histogram, distance_matrix)\n 3.5\n\nYou can also get the associated minimum-cost flow:\n\n.. code:: python\n\n >>> from pyemd import emd_with_flow\n >>> emd_with_flow(first_histogram, second_histogram, distance_matrix)\n (3.5, [[0.0, 0.0], [0.0, 1.0]])\n\nYou can also calculate the EMD directly from two arrays of observations:\n\n.. code:: python\n\n >>> from pyemd import emd_samples\n >>> first_array = [1, 2, 3, 4]\n >>> second_array = [2, 3, 4, 5]\n >>> emd_samples(first_array, second_array, bins=2)\n 0.5\n\nDocumentation\n-------------\n\nemd()\n~~~~~\n\n.. code:: python\n\n emd(first_histogram,\n second_histogram,\n distance_matrix,\n extra_mass_penalty=-1.0)\n\n*Arguments:*\n\n- ``first_histogram`` *(np.ndarray)*: A 1D array of type ``np.float64`` of\n length *N*.\n- ``second_histogram`` *(np.ndarray)*: A 1D array of ``np.float64`` of length\n *N*.\n- ``distance_matrix`` *(np.ndarray)*: A 2D array of ``np.float64,`` of size at\n least *N* \u00d7 *N*. This defines the underlying metric, or ground distance, by\n giving the pairwise distances between the histogram bins. It must represent a\n metric; there is no warning if it doesn't.\n\n*Keyword Arguments:*\n\n- ``extra_mass_penalty`` *(float)*: The penalty for extra mass. If you want the\n resulting distance to be a metric, it should be at least half the diameter of\n the space (maximum possible distance between any two points). If you want\n partial matching you can set it to zero (but then the resulting distance is\n not guaranteed to be a metric). The default value is ``-1.0``, which means the\n maximum value in the distance matrix is used.\n\n*Returns:* *(float)* The EMD value.\n\n----\n\nemd_with_flow()\n~~~~~~~~~~~~~~~\n\n.. code:: python\n\n emd_with_flow(first_histogram,\n second_histogram,\n distance_matrix,\n extra_mass_penalty=-1.0)\n\nArguments are the same as for ``emd()``.\n\n*Returns:* *(tuple(float, list(list(float))))* The EMD value and the associated\nminimum-cost flow.\n\n----\n\nemd_samples()\n~~~~~~~~~~~~~\n\n.. code:: python\n\n emd_samples(first_array,\n second_array,\n extra_mass_penalty=-1.0,\n distance='euclidean',\n normalized=True,\n bins='auto',\n range=None)\n\n*Arguments:*\n\n- ``first_array`` *(Iterable)*: A 1D array of samples used to generate a\n histogram.\n- ``second_array`` *(Iterable)*: A 1D array of samples used to generate a\n histogram.\n\n*Keyword Arguments:*\n\n- ``extra_mass_penalty`` *(float)*: Same as for ``emd()``.\n- ``distance`` *(string or function)*: A string or function implementing\n a metric on a 1D ``np.ndarray``. Defaults to the Euclidean distance. Currently\n limited to 'euclidean' or your own function, which must take a 1D array and\n return a square 2D array of pairwise distances.\n- ``normalized`` (*boolean*): If true (default), treat histograms as fractions\n of the dataset. If false, treat histograms as counts. In the latter case the\n EMD will vary greatly by array length.\n- ``bins`` *(int or string)*: The number of bins to include in the generated\n histogram. If a string, must be one of the bin selection algorithms accepted\n by ``np.histogram()``. Defaults to ``'auto'``, which gives the maximum of the\n 'sturges' and 'fd' estimators.\n- ``range`` *(tuple(int, int))*: The lower and upper range of the bins, passed\n to ``numpy.histogram()``. Defaults to the range of the union of\n ``first_array`` and ``second_array``. Note: if the given range is not a\n superset of the default range, no warning will be given.\n\n*Returns:* *(float)* The EMD value between the histograms of ``first_array`` and\n``second_array``.\n\n----\n\nLimitations and Caveats\n-----------------------\n\n- ``emd()`` and ``emd_with_flow()``:\n\n - The ``distance_matrix`` is assumed to represent a metric; there is no check\n to ensure that this is true. See the documentation in\n ``pyemd/lib/emd_hat.hpp`` for more information.\n - The histograms and distance matrix must be numpy arrays of type\n ``np.float64``. The original C++ template function can accept any numerical\n C++ type, but this wrapper only instantiates the template with ``double``\n (Cython converts ``np.float64`` to ``double``). If there's demand, I can add\n support for other types.\n\n- ``emd_with_flow()``:\n\n - The flow matrix does not contain the flows to/from the extra mass bin.\n\n- ``emd_samples()``:\n\n - Using the default ``bins='auto'`` results in an extra call to\n ``np.histogram()`` to determine the bin lengths, since `the NumPy\n bin-selectors are not exposed in the public API\n `_. For performance, you may\n want to set the bins yourself.\n\n\nContributing\n------------\n\nTo help develop PyEMD, fork the project on GitHub and install the requirements\nwith ``pip install -r requirements.txt``.\n\nThe ``Makefile`` defines some tasks to help with development:\n\n- ``test``: Run the test suite\n- ``build`` Generate and compile the Cython extension\n- ``clean``: Remove the compiled Cython extension\n- ``default``: Run ``build``\n\nTests for different Python environments can be run with ``tox``.\n\n\nCredit\n------\n\n- All credit for the actual algorithm and implementation goes to `Ofir Pele\n `_ and `Michael Werman\n `_. See the `relevant paper\n `_.\n- Thanks to the Cython developers for making this kind of wrapper relatively\n easy to write.\n\nPlease cite these papers if you use this code:\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOfir Pele and Michael Werman. A linear time histogram metric for improved SIFT\nmatching. *Computer Vision - ECCV 2008*, Marseille, France, 2008, pp. 495-508.\n\n.. code-block:: latex\n\n @INPROCEEDINGS{pele2008,\n title={A linear time histogram metric for improved sift matching},\n author={Pele, Ofir and Werman, Michael},\n booktitle={Computer Vision--ECCV 2008},\n pages={495--508},\n year={2008},\n month={October},\n publisher={Springer}\n }\n\nOfir Pele and Michael Werman. Fast and robust earth mover's distances. *Proc.\n2009 IEEE 12th Int. Conf. on Computer Vision*, Kyoto, Japan, 2009, pp. 460-467.\n\n.. code-block:: latex\n\n @INPROCEEDINGS{pele2009,\n title={Fast and robust earth mover's distances},\n author={Pele, Ofir and Werman, Michael},\n booktitle={2009 IEEE 12th International Conference on Computer Vision},\n pages={460--467},\n year={2009},\n month={September},\n organization={IEEE}\n }\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/wmayner/pyemd", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyemd", "package_url": "https://pypi.org/project/pyemd/", "platform": "", "project_url": "https://pypi.org/project/pyemd/", "project_urls": { "Homepage": "http://github.com/wmayner/pyemd" }, "release_url": "https://pypi.org/project/pyemd/0.5.1/", "requires_dist": [ "numpy (<2.0.0,>=1.9.0)" ], "requires_python": "", "summary": "A Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance.", "version": "0.5.1" }, "last_serial": 3530428, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "c730a6e7f23909c2e5f9827f7c6d3e4e", "sha256": "c32647920b6c86ad7198a1f6890c8e9a57d183b00dad7271f6615e5a37ddd323" }, "downloads": -1, "filename": "pyemd-0.0.10-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c730a6e7f23909c2e5f9827f7c6d3e4e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 59099, "upload_time": "2015-03-10T18:47:11", "url": "https://files.pythonhosted.org/packages/52/ec/1960377012ff17ea8d950daf0e82cbb0f9c6009f2cbf881ee5ea011de596/pyemd-0.0.10-cp34-cp34m-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2388f83efbe08f1ee0aa5195852fa267", "sha256": "7ec3104e1b11ce7fa99ec54760046012b7923a8b9a4cfdf640cfa8bba79d2b9d" }, "downloads": -1, "filename": "pyemd-0.0.10-cp34-none-win32.whl", "has_sig": false, "md5_digest": "2388f83efbe08f1ee0aa5195852fa267", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 57124, "upload_time": "2015-03-10T20:42:21", "url": "https://files.pythonhosted.org/packages/d8/29/1cf748d01033d2a1d369f6d0a1e3b3a9955b3bbe983fe544d96e972505e8/pyemd-0.0.10-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "85f4064f0fa877e4b2ec937cfdd7b89c", "sha256": "663629bc5dfc0df8346f58cd9968d6b890320655c4f4cc254266f057ebbf07f2" }, "downloads": -1, "filename": "pyemd-0.0.10-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "85f4064f0fa877e4b2ec937cfdd7b89c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 61002, "upload_time": "2015-03-10T20:42:10", "url": "https://files.pythonhosted.org/packages/30/46/4a4de9ce41dc22f413ffdb26a276f766f61df51c0743d3b5b8912f1215a5/pyemd-0.0.10-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f94ccd479429c1205f7f368118b1e231", "sha256": "65a3f26d3e386514739f1c7b9fb7d624ec60b02c54b68fcb35c77203615d4e7e" }, "downloads": -1, "filename": "pyemd-0.0.10.tar.gz", "has_sig": true, "md5_digest": "f94ccd479429c1205f7f368118b1e231", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57220, "upload_time": "2014-06-05T19:32:22", "url": "https://files.pythonhosted.org/packages/ce/88/bbff691c0559c10218d08cfc34685fe25dd70bae5a245c4bb3de1b201747/pyemd-0.0.10.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "9713773ab90468e41ff5ae1939c291c9", "sha256": "ec13073a6db8b6a228d19cd4b1bdd6970003e2870ec08bde0653e837416524c2" }, "downloads": -1, "filename": "pyemd-0.0.6-cp33-cp33m-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "9713773ab90468e41ff5ae1939c291c9", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 43367, "upload_time": "2014-04-09T21:22:28", "url": "https://files.pythonhosted.org/packages/45/ae/a3cbd203830331a29f2ed398337df6f58831374895f45348e60e4fbfdc80/pyemd-0.0.6-cp33-cp33m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c05bec67a26665cbb7cb3071d73c3c8c", "sha256": "5ba591e6f2eb39db86c6e61e7451c842780438c03bbaa5efec9afabb9192a543" }, "downloads": -1, "filename": "pyemd-0.0.6.tar.gz", "has_sig": true, "md5_digest": "c05bec67a26665cbb7cb3071d73c3c8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48988, "upload_time": "2014-04-09T21:22:32", "url": "https://files.pythonhosted.org/packages/f3/44/bfbdb2515360805dbb4242f2d1e0be3752e8fbdff82714ce35d1a2c1ac4e/pyemd-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "fb27d638664a9dbae8006965264c852c", "sha256": "f51e63ecf0280d9867d8a4fe38f98d73948f5a6a303875fe5131b86124fe7baf" }, "downloads": -1, "filename": "pyemd-0.0.7-cp33-cp33m-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "fb27d638664a9dbae8006965264c852c", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 59741, "upload_time": "2014-04-09T23:49:34", "url": "https://files.pythonhosted.org/packages/bd/55/b7dcaf8f9444a476aa82f841c38efbef7535f9c86cf48fe3eaf5c7a15950/pyemd-0.0.7-cp33-cp33m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d3b16ce03a056373862c9cb2299b3d48", "sha256": "70360f9729979bf171a0fd9b16318ace4af5f3c0cd523db58bb9892d103a05bc" }, "downloads": -1, "filename": "pyemd-0.0.7.tar.gz", "has_sig": true, "md5_digest": "d3b16ce03a056373862c9cb2299b3d48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59140, "upload_time": "2014-04-09T23:49:38", "url": "https://files.pythonhosted.org/packages/4f/c6/d719791829a7a4989d8c41456f4ea835fd9726f169ed779d591b43ff7901/pyemd-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "ff3eeb09406fc7796a82e5ac7993b582", "sha256": "1cbfed0f2496c5a35faad4847f8d527702f235943debf319ea38c5e33da4dc65" }, "downloads": -1, "filename": "pyemd-0.0.8-cp27-none-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "ff3eeb09406fc7796a82e5ac7993b582", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 61729, "upload_time": "2014-05-19T18:48:33", "url": "https://files.pythonhosted.org/packages/f0/40/aca5219fa5231c17ad5bf332107cc7a4bada2a41c3ee7beef51679227d52/pyemd-0.0.8-cp27-none-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c5550ec8a698aaca9560643d992b46f1", "sha256": "469b36b3646427e8afb893b51be8047da4d1eb562dbfea9c357518003c48feaa" }, "downloads": -1, "filename": "pyemd-0.0.8.tar.gz", "has_sig": false, "md5_digest": "c5550ec8a698aaca9560643d992b46f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55365, "upload_time": "2014-05-19T17:32:07", "url": "https://files.pythonhosted.org/packages/9f/67/dee711a2e6e0f3002bd0dfce441ddfa9453ec7cf77ddd3c67277091c2b49/pyemd-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "8cedc5218af8ff1999e3f0c6840bc296", "sha256": "348e88aaeecf01b55f5bd64a7b9e91fe9080261da89ec97132b3a69fba66a106" }, "downloads": -1, "filename": "pyemd-0.0.9.tar.gz", "has_sig": true, "md5_digest": "8cedc5218af8ff1999e3f0c6840bc296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57219, "upload_time": "2014-06-05T16:39:42", "url": "https://files.pythonhosted.org/packages/9c/e7/d83e1a89461bf971af1d0c955fc6bc285d1dce0df5b31257527fd5127c43/pyemd-0.0.9.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "22a66ea4653d1b2757e9b50024f9bee4", "sha256": "da8c29d2d1e5536d1a4739f527c4498b2604f74cfccee9acfda109038080c73e" }, "downloads": -1, "filename": "pyemd-0.1.1-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "22a66ea4653d1b2757e9b50024f9bee4", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 60768, "upload_time": "2015-05-12T20:40:37", "url": "https://files.pythonhosted.org/packages/43/d6/e21587bcd3e211f6ad7a7c920aab15cebe80d03361f2434a48b23d6fe6a6/pyemd-0.1.1-cp34-cp34m-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6b586e30f496ff7ba7afae1172a0d7f5", "sha256": "f35a038e236f229a0c5d60136a7c2fb5b6a6eedbae8ba02d05983ade33ddd3ca" }, "downloads": -1, "filename": "pyemd-0.1.1.tar.gz", "has_sig": true, "md5_digest": "6b586e30f496ff7ba7afae1172a0d7f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56374, "upload_time": "2015-05-12T20:40:53", "url": "https://files.pythonhosted.org/packages/94/a6/6b53206ec31d2a447e3fe26ab27672e8bc4f04f540473325605668c20cf5/pyemd-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "2ef8eba1ef40b0e40b7681a010fb45c2", "sha256": "df80a6da5656c0efda5417ce5a36893fb9ccb7ef79998069a33f588f3901f540" }, "downloads": -1, "filename": "pyemd-0.2.0-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "2ef8eba1ef40b0e40b7681a010fb45c2", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 54050, "upload_time": "2015-11-09T20:49:38", "url": "https://files.pythonhosted.org/packages/04/ff/7bf3a43e12eee43a3268b4f0e55ad2f1b24706d77ecb52ff0fc8a6cf9993/pyemd-0.2.0-cp34-cp34m-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1cd8428384903939e596fc5bd2bb688a", "sha256": "724d49d76433af6d9d0dd2e13daff5dafafb88afcfec7377d0e02422d91cf8d1" }, "downloads": -1, "filename": "pyemd-0.2.0.tar.gz", "has_sig": true, "md5_digest": "1cd8428384903939e596fc5bd2bb688a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52693, "upload_time": "2015-11-09T20:49:26", "url": "https://files.pythonhosted.org/packages/05/e4/d006f53edefc19b2edba0889bb754551c03d664e74ad13666c623e2ab149/pyemd-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2dd47648d6bbaab8ac591ab3c026eb72", "sha256": "b98be1284e20a5f03810a300a60294cff9b0322569aa5b4e45eaa7a1d9118d4b" }, "downloads": -1, "filename": "pyemd-0.3.0-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "2dd47648d6bbaab8ac591ab3c026eb72", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 59008, "upload_time": "2016-06-02T21:19:43", "url": "https://files.pythonhosted.org/packages/7c/29/a6333690487c7d676cc768377ca5fd107658946de06183a8a05ec76656a0/pyemd-0.3.0-cp34-cp34m-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "889a0de7b417a28bfde4112fd66a47b5", "sha256": "fb913696f843bedf39c59033420f716e676fb94f15295b3bf3b35b8133c56a6f" }, "downloads": -1, "filename": "pyemd-0.3.0.tar.gz", "has_sig": true, "md5_digest": "889a0de7b417a28bfde4112fd66a47b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55346, "upload_time": "2016-06-02T21:19:37", "url": "https://files.pythonhosted.org/packages/75/63/6a6b0966e210e83d3690cb3b3e7dbb598adb02c72e639530560caa0e1561/pyemd-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "74f40531b751a931d2dbcba3ba1ac947", "sha256": "e71072209e4bab5fa49e5b983044aaa9b575dc89115a4700d64bde81e7fdc723" }, "downloads": -1, "filename": "pyemd-0.4.0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "74f40531b751a931d2dbcba3ba1ac947", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 73563, "upload_time": "2017-01-06T21:08:57", "url": "https://files.pythonhosted.org/packages/70/ce/d82016dbd7a2142c97486eb5eb8de253dc0b558595a6b8ba299ef4787d1a/pyemd-0.4.0-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ef5187b7825af7e2327414eb41083b67", "sha256": "c8a527bd252e88d2b2e310d1ac47bf96bf906c616b66f42150e97cfc83c7724b" }, "downloads": -1, "filename": "pyemd-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ef5187b7825af7e2327414eb41083b67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65739, "upload_time": "2017-01-06T21:08:55", "url": "https://files.pythonhosted.org/packages/cc/3e/be1b1bf25eeac70d4100e282e2e72048a8349546d6a7e7f6ba88bebc153b/pyemd-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "24a4060cc4ab743b6eb00185efcd3fd4", "sha256": "c9a245efba70efd59c0ca9acf77614616a7c58004d4d58bbfafdb4290dc5dcc5" }, "downloads": -1, "filename": "pyemd-0.4.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "24a4060cc4ab743b6eb00185efcd3fd4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 73552, "upload_time": "2017-01-06T21:27:20", "url": "https://files.pythonhosted.org/packages/1f/43/dc9ccea089af367c0eca29a4407b81e07a9f52115ffdbb0682ba19854a6a/pyemd-0.4.1-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1329c8e2ff69e27b6849f23520a5ac0e", "sha256": "6f9cf9aef3477417f8a4ca6956c25fbf07d3c27b45c4e584ab6e49c5f80de9fe" }, "downloads": -1, "filename": "pyemd-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1329c8e2ff69e27b6849f23520a5ac0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65739, "upload_time": "2017-01-06T21:27:19", "url": "https://files.pythonhosted.org/packages/63/b1/53043871a0d71a0874259b3e11c5112a0897ccc4384a752b799f7e4e947b/pyemd-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "4aa0f21e40ba7c85b246fbd442173c2b", "sha256": "ae286b74c2bb70341b03fdd94a92a6375b2cc58892958ef9edbabeb534f233a7" }, "downloads": -1, "filename": "pyemd-0.4.2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "4aa0f21e40ba7c85b246fbd442173c2b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 73557, "upload_time": "2017-01-12T23:30:38", "url": "https://files.pythonhosted.org/packages/22/c5/ec29e6f49938222552075c05abf19e716e65592fd7c2aedf753756886b39/pyemd-0.4.2-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "db8947dc345bfc82919ab09dfed79d4e", "sha256": "6585b27df1efe67ac553b4351abf86302365dbddee5695628e621580c4459de3" }, "downloads": -1, "filename": "pyemd-0.4.2.tar.gz", "has_sig": false, "md5_digest": "db8947dc345bfc82919ab09dfed79d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65757, "upload_time": "2017-01-12T23:30:37", "url": "https://files.pythonhosted.org/packages/ab/11/e64f693b98c7ee3f7d9c34cbf722f06efe0afa27177318dee6e440cbe882/pyemd-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "bbd143cf9c8a1e33923b4dfbc2b97b54", "sha256": "0bbe19346a37664fe37f95c991df2db366dc0b84efb19735a8a237dc21d5ae6f" }, "downloads": -1, "filename": "pyemd-0.4.3-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "bbd143cf9c8a1e33923b4dfbc2b97b54", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 73565, "upload_time": "2017-03-04T20:03:22", "url": "https://files.pythonhosted.org/packages/dc/31/9e6c5fe4a1d7ac87c33fd82c2b0c7d157e4024cc130a9f8c07bdad1bfd36/pyemd-0.4.3-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3e3d79cc1c5ff43b518446b63dfbaa7e", "sha256": "48eb573ded4fd8723a700fb8ce501bea4bbf135a0025a421913df37b932b49ab" }, "downloads": -1, "filename": "pyemd-0.4.3.tar.gz", "has_sig": false, "md5_digest": "3e3d79cc1c5ff43b518446b63dfbaa7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66413, "upload_time": "2017-03-04T20:03:20", "url": "https://files.pythonhosted.org/packages/39/af/1e3bf17544cc5b6fbc0157a6d7271962c966cda8096836154a1e831c2f3c/pyemd-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "a9d97be913c6685c0f44fd90bda73005", "sha256": "4baa0d9fca040e3a9b63559f5cef0400219a41c8c3069cf33f3777d901461ec1" }, "downloads": -1, "filename": "pyemd-0.4.4-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": true, "md5_digest": "a9d97be913c6685c0f44fd90bda73005", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 73456, "upload_time": "2017-07-19T05:21:00", "url": "https://files.pythonhosted.org/packages/a9/02/5914b1603fae81fe735982fab370bbd8c11d7ac039bfdb38ee21fc72c29b/pyemd-0.4.4-cp36-cp36m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5aad19a920239edadc424dd6789d26c8", "sha256": "2457a0066fed668a6d9a0dd89ea6171110dd5d210f0c92c9662799908f37c08f" }, "downloads": -1, "filename": "pyemd-0.4.4.tar.gz", "has_sig": true, "md5_digest": "5aad19a920239edadc424dd6789d26c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67354, "upload_time": "2017-07-19T05:20:39", "url": "https://files.pythonhosted.org/packages/34/61/0f2803463c695bdde498e63a6300f7878829427ecdb9144b6306883ce7f9/pyemd-0.4.4.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "b23aab3109719082bf0326a2785d600a", "sha256": "686e7143efb896c9748b66fd8da8d892116685162c27e450f69e7e6615f33a19" }, "downloads": -1, "filename": "pyemd-0.5.0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "b23aab3109719082bf0326a2785d600a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 81064, "upload_time": "2018-01-22T23:27:43", "url": "https://files.pythonhosted.org/packages/ea/0c/5a9ba435f25a5bf175315edc9b60722a33cb9b128e7cfd7a951d14c3dd83/pyemd-0.5.0-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "341f671532da85abc967de7b3db1bdf8", "sha256": "fdef3cd3ec6025df06718407fd3836b155e92d3392380d3133178c67d3ca1d42" }, "downloads": -1, "filename": "pyemd-0.5.0.tar.gz", "has_sig": false, "md5_digest": "341f671532da85abc967de7b3db1bdf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91001, "upload_time": "2018-01-22T23:27:58", "url": "https://files.pythonhosted.org/packages/14/56/fc93d501c9b89f1bff68b53826548e924bf4520711e34acb55f17ba4edbe/pyemd-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "6c04da115770c80861722e83dc8b275c", "sha256": "15750113757ace54a03d2efef7bbc2c5a4782cba30555e7fd401bcafcfa0ecb2" }, "downloads": -1, "filename": "pyemd-0.5.1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": true, "md5_digest": "6c04da115770c80861722e83dc8b275c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 81337, "upload_time": "2018-01-29T04:13:43", "url": "https://files.pythonhosted.org/packages/b8/b1/713de7261a0062ce41c4e2caaa16fe033890fd961b70d637c20951a1c7cf/pyemd-0.5.1-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7338811006fe8726ce71b11bd3dae7e6", "sha256": "fc81c2116f8573e559dfbb8d73e03d9f73c22d0770559f406516984302e07e70" }, "downloads": -1, "filename": "pyemd-0.5.1.tar.gz", "has_sig": true, "md5_digest": "7338811006fe8726ce71b11bd3dae7e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91498, "upload_time": "2018-01-29T04:13:45", "url": "https://files.pythonhosted.org/packages/c0/c5/7fea8e7a71cd026b30ed3c40e4c5ea13a173e28f8855da17e25271e8f545/pyemd-0.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6c04da115770c80861722e83dc8b275c", "sha256": "15750113757ace54a03d2efef7bbc2c5a4782cba30555e7fd401bcafcfa0ecb2" }, "downloads": -1, "filename": "pyemd-0.5.1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": true, "md5_digest": "6c04da115770c80861722e83dc8b275c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 81337, "upload_time": "2018-01-29T04:13:43", "url": "https://files.pythonhosted.org/packages/b8/b1/713de7261a0062ce41c4e2caaa16fe033890fd961b70d637c20951a1c7cf/pyemd-0.5.1-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7338811006fe8726ce71b11bd3dae7e6", "sha256": "fc81c2116f8573e559dfbb8d73e03d9f73c22d0770559f406516984302e07e70" }, "downloads": -1, "filename": "pyemd-0.5.1.tar.gz", "has_sig": true, "md5_digest": "7338811006fe8726ce71b11bd3dae7e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91498, "upload_time": "2018-01-29T04:13:45", "url": "https://files.pythonhosted.org/packages/c0/c5/7fea8e7a71cd026b30ed3c40e4c5ea13a173e28f8855da17e25271e8f545/pyemd-0.5.1.tar.gz" } ] }