{ "info": { "author": "Fred van Goor", "author_email": "Fred511949@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# LightPipes\n\n**Simulations of optical phenomena where diffraction is essential**\n\nLightPipes is a set of functions written in Python (Before version 2.0.0 these functions are in C++). It is designed to model coherent optical devices when the diffraction is essential. We put the C++ based version of LightPipes in another repository: opticspy/clightpipes.\nThe pure Python version is as fast as the C++ version due to the use of the numpy, scipy and pyFFTW packages.\n\nThe toolbox consists of a number of functions. Each function represents an optical element or a step in the light propagation. There are apertures, intensity filters, beam-splitters, lenses and models of free space diffraction. There are also more advanced tools for manipulating the phase and amplitude of the light. The program operates on a large data structure, containing square two-dimensional arrays of complex amplitudes of the optical field of the propagating light beam.\n\nThe LightPipes routines are modifications of the LightPipes C routines written by Gleb Vdovin for Unix, Linux, DOS and OS2 workstations.\n\nVisit the website of **Flexible Optical**: [http://www.okotech.com](http://www.okotech.com), where you can find the source code of *LightPipes* and a *manual*.\n\n## Credits.\n\n**Gleb Vdovin**\n\nLightPipes was written by Gleb Vdovin in 1993 for MS DOS.\nthe output of a command was the input for the next command. Gleb used the \"pipe\" feature of MS DOS, that's why it is called LightPipes. The source code of LightPipes for UNIX can be obtained for free from http://www.okotech.com.\n\n**Fred van Goor**\n\nFred rewrote the commands for using them in Mathcad and Matlab in 1996. Later he made a version for Python (2017).\nThe [Mathcad](http://www.ptc.com/engineering-math-software/mathcad) and [Matlab](https://www.mathworks.com/) versions (not free) can be obtained from [Flexible Optical](http://www.okotech.com). \nThe Python version can be obtained for free from [https://github.com/opticspy/lightpipes](https://github.com/opticspy/lightpipes).\nFred also developed the [LightPipes for Python website](https://opticspy.github.io/lightpipes/) using [Sphinx](http://www.sphinx-doc.org).\nFred used LightPipes for his course \"Introduction to Optics\" at the [University of Twente](https://www.utwente.nl/en/education/bachelor/programmes/applied-physics/)\nas an introduction to the optics lab.\nSee how Fred is [blowing out a HeNe laser](https://youtu.be/sm7MrA8Usuw?t=58s) during this lesson.\n(The laser stops because the outcoupling mirror was covered with vapor from Fred's breath)\n\n**Guyskk**\n\nGuyskk' s contribution to the development of the LightPipes C++ package was very important.\nHis knowledge of Python helped a lot to get the package operative for the windows,\nmacintosh and several linux platforms.\n\n**Leonard Doyle**\n\nLeonard translated the C++ code of LightPipes into pure Python, using the numpy,\nscipy and pyFFTW packages.\nThanks to the matrix routines of numpy and the fast pyFFTW Fourier transform\nthe speed of the pure python version is as fast as the C++ version.\nAlso parallel processing is possible now, which enhances the speed even more.\nFrom LightPipes version 2.0.0 LightpIpes is pure python. As usual, it can be installed with pip:\n\n pip install LightPipes\n\nThe older C++ versions are still on [PyPi](https://pypi.python.org/pypi/LightPipes/) \nand can be installed by typing (for the latest C++ version, 1.2.0):\n\n pip install LightPipes==1.2.0\n\n## Install\n\nThe pure Python version of LightPipes (from version 2.0.0) can be installed on any platform with Python version 3.+ installed. We tested it on a number of computers: Windows, Macintosh and Linux.\n\n \n\n\nThe packages are on [PyPi](https://pypi.python.org/pypi/LightPipes/), so simply open a terminal window and type at the prompt:\n\n\tpip install LightPipes\n\nThe C++ versions are still on [PyPi](https://pypi.python.org/pypi/LightPipes/) and can be installed using:\n\n\tpip install LightPipes==1.2.0\n\nfor the latest C++ version.\n\nUse pip3 to install for Python 3.7.\nYou can also download packages from [Releases](https://github.com/opticspy/lightpipes/releases).\n\n**Raspberry Pi:**\n\nWe encountered problems when installing it on a Raspberry Pi 4.0. It seems that pyFFTW package is not compatible with the Raspberry (ARM processor). Maybe they will solve that in the future. \nIn the mean time you can follow the instructions in the [install section](https://opticspy.github.io/lightpipes/install.html#known-installation-problems) of our documentation to install pyFFTW on a Raspberry PI, or install the latest C++ version, 1.2.0, of LightPipes when Python 3.7 is installed on your Raspberry Pi.\nType at a terminal prompt:\n \n\tsudo pip3 install LightPipes==1.2.0\n\n## Document\n\n[https://opticspy.github.io/lightpipes/](https://opticspy.github.io/lightpipes/)\n\n## Example: Young interferometer\n\nA plane wave is diffracted by two small holes, separated a distance, d. So two more or less spherical waves will propagate from these holes.\n\n![](img/twoholesSetUp.png)\n\nThe resulting interference pattern on a screen at distance z looks like:\n\n![](img/twoholesPattern.png)\n\nThe Python program [Young.py](Examples/Interference/Young.py) described in detail.\n\nThe first step in *Python* is to import the *LightPipes* library:\n\n```python\nfrom LightPipes import *\n```\nBesides the *LightPipes* library, we import units and a few more in this way.\n\nIf the *LightPipes* library is successful installed on your computer Python can proceed with the next step.\nYou probably want to plot the results, so import *matplotlib*:\n\n```python\nimport matplotlib.pyplot as plt\n```\n\nNext we define some variables: a wavelength of 20 micrometer , a 30 x 30 mm2 square grid with 500 x 500 pixels.\n\n```python\nwavelength = 20*um\nsize = 30.0*mm\nN = 500\n```\n\nNow we are ready to start the simulation. The *Begin* command generates a field with amplitude 1.0 and phase zero, a plane wave. So, all the 500 x 500 elements of array, F, contain the complex number: 1.0 + j0.0.\nThe next commands generate two waves, F1 and F2, which are apertured by the two circular apertures and combined (simply added) by the *BeamMix* command. The combined wavefront is propagated a distance z=30 cm by the *Fresnel* command. After that the intensity is caculated and normalized to 255 (2 -> 255, 1 -> 1.0, 0 -> not normalized) by the *Intensity* command.\n\n```python\nF = Begin(size,wavelength,N)\nF1 = CircAperture(0.15*mm, -0.6*mm,0, F)\nF2 = CircAperture(0.15*mm, 0.6*mm,0, F) \nF = BeamMix(F1,F2)\nF = Fresnel(10*cm,F)\nI = Intensity(2,F)\n```\n\nThe result is plotted using the fantastic *matplot* routines. We are not interested in axis around the pattern and we like to write a title above the plot.\n\n```python\nplt.imshow(I, cmap='rainbow');\nplt.axis('off');\nplt.title('intensity pattern')\nplt.show()\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/opticspy/lightpipes/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/opticspy/lightpipes", "keywords": "", "license": "BSD-3-Clause", "maintainer": "", "maintainer_email": "", "name": "LightPipes", "package_url": "https://pypi.org/project/LightPipes/", "platform": null, "project_url": "https://pypi.org/project/LightPipes/", "project_urls": { "Download": "https://github.com/opticspy/lightpipes/releases", "Homepage": "https://github.com/opticspy/lightpipes" }, "release_url": "https://pypi.org/project/LightPipes/2.1.3/", "requires_dist": [ "numpy", "scipy", "matplotlib", "pyfftw ; extra == 'pyfftw'" ], "requires_python": "", "summary": "LightPipes for Python optical toolbox", "version": "2.1.3", "yanked": false, "yanked_reason": null }, "last_serial": 13713476, "releases": { "1.1.2": [ { "comment_text": "", "digests": { "md5": "640fe0e606bcd6a03eab02e95c80c8e5", "sha256": "49ec206f947d42e55ca072fd167a9292792b944877e7006bfddbd9bf7b7494fb" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "640fe0e606bcd6a03eab02e95c80c8e5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 698798, "upload_time": "2017-03-12T13:36:14", "upload_time_iso_8601": "2017-03-12T13:36:14.302394Z", "url": "https://files.pythonhosted.org/packages/e1/25/984c5025236f2921eb28e8115a4d90512190699b5e9fa8776e60d69cde33/LightPipes-1.1.2-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53533618835d6186821df0ba146be85c", "sha256": "15945c8bb0a3a50fd7df27bcffdc24780330b65a44043726c5e70bf3dc7707a0" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "53533618835d6186821df0ba146be85c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 876384, "upload_time": "2017-03-10T16:48:12", "upload_time_iso_8601": "2017-03-10T16:48:12.918903Z", "url": "https://files.pythonhosted.org/packages/8d/5b/cd11cdebad1a42c6f4e0996e30236b138fd10645366c84cdd021679c85f2/LightPipes-1.1.2-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6449dfa03ab318bdbf1c88e1c0bf333b", "sha256": "3d61f33ebba166270bec9351e9e7266538ada920ad982af56d6dd90a876508a9" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6449dfa03ab318bdbf1c88e1c0bf333b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1038845, "upload_time": "2017-03-10T16:48:16", "upload_time_iso_8601": "2017-03-10T16:48:16.838666Z", "url": "https://files.pythonhosted.org/packages/17/09/a86742803491b9a6d4cb39f8b32be39cfa4a6a95bb32db9b5c6525f33036/LightPipes-1.1.2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86d3d127cce0240420eef9d24420934a", "sha256": "f33aa617466761aa187cdcf761afdf481ae71b90c458cba3b75b1e16f0f71f71" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "86d3d127cce0240420eef9d24420934a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 876355, "upload_time": "2017-03-10T16:48:20", "upload_time_iso_8601": "2017-03-10T16:48:20.764588Z", "url": "https://files.pythonhosted.org/packages/94/b3/4e9cbb5e0ab13cd7abd569f30c6ffa91e90f55f44d7103acb63b92e2e19b/LightPipes-1.1.2-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25887a515599210efe432820ba41cc61", "sha256": "a958c5cb01bbd7aeed2d801b689d67fdbf53f2f814f6f5fe3ade16d6889374a2" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "25887a515599210efe432820ba41cc61", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1038891, "upload_time": "2017-03-10T16:48:24", "upload_time_iso_8601": "2017-03-10T16:48:24.450131Z", "url": "https://files.pythonhosted.org/packages/4c/05/68cfd45b60047b2ba9a75b180352a15db132481513ab7fc2e2eeeedaa307/LightPipes-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f3183ad8bc0845b18822acd29804c8f", "sha256": "baa7018ccc8a90f0ec2ea5d2f9dad1b2317498cf2c4b5fa2c0f8aceacbdc582a" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6f3183ad8bc0845b18822acd29804c8f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 809951, "upload_time": "2017-03-10T16:43:20", "upload_time_iso_8601": "2017-03-10T16:43:20.864135Z", "url": "https://files.pythonhosted.org/packages/45/1d/7cac07ab5c15d992dbbbf6fbd2009c1648e50eec080e0738233ff2291707/LightPipes-1.1.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b7f17f696b4a5d57437a0b15204d657", "sha256": "ea5eb5b3782667e4177eb89345bd0230009f599f9d05f90ee4ef2a1a32e41b81" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp27-none-macosx_10_12_intel.whl", "has_sig": false, "md5_digest": "4b7f17f696b4a5d57437a0b15204d657", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 163211, "upload_time": "2017-03-10T20:57:45", "upload_time_iso_8601": "2017-03-10T20:57:45.595414Z", "url": "https://files.pythonhosted.org/packages/da/02/9c75e5fc72c6a27d933c3717b3141e296391e32e622fa86e9aba387195f2/LightPipes-1.1.2-cp27-none-macosx_10_12_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9034afe3d3803a83697ae0870bd3b111", "sha256": "bcd66200e07d65f75d220148fe67c246e29b10e3beeac81a11e00ccd5413abcc" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "9034afe3d3803a83697ae0870bd3b111", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 699521, "upload_time": "2017-03-12T13:36:17", "upload_time_iso_8601": "2017-03-12T13:36:17.308122Z", "url": "https://files.pythonhosted.org/packages/10/0d/9465b4e7c7d9366c255af3de80e1e7a31d938e551de1ee2e7a332bdc4de2/LightPipes-1.1.2-cp34-cp34m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07ae58cebd8943970835c202cadc9648", "sha256": "a875171881be0c8b676f892c9ca632626a845ab2da4a26eb5050acb4298b191c" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "07ae58cebd8943970835c202cadc9648", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 876304, "upload_time": "2017-03-10T16:48:27", "upload_time_iso_8601": "2017-03-10T16:48:27.972150Z", "url": "https://files.pythonhosted.org/packages/1f/83/df6a4e8481a96a85bb269e2137bcbe0cb41cdf24de53d372710404755816/LightPipes-1.1.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "858322e560ba7bc234c404d712d78782", "sha256": "f3324e6169f0f0cf9ee8d4724513d6e19e3dabda52e12b4021a63e19a8876a58" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "858322e560ba7bc234c404d712d78782", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1034032, "upload_time": "2017-03-10T16:48:31", "upload_time_iso_8601": "2017-03-10T16:48:31.300874Z", "url": "https://files.pythonhosted.org/packages/f9/a6/6169b4ef1773a07ab92516977d3e4ef71a3c358f18366c36333070cb26f9/LightPipes-1.1.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "939576a883b1541dbca38d9638dd65f7", "sha256": "bf80148cf50d6a0ffe56c5395739ea1f7c98413a11635009980788526fd2b7f6" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp35-cp35m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "939576a883b1541dbca38d9638dd65f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 699557, "upload_time": "2017-03-12T13:36:20", "upload_time_iso_8601": "2017-03-12T13:36:20.904381Z", "url": "https://files.pythonhosted.org/packages/2c/ab/f2fae286521d3b3186283ac0330bc77e6ce6d2044a263b1f28fbe9d92772/LightPipes-1.1.2-cp35-cp35m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5958f7135a9260f36031f085146219c", "sha256": "87c0a5acf03441c5b934c7195c82ef4fe95b069fe6b739a594cb01cc26127ec2" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e5958f7135a9260f36031f085146219c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 876462, "upload_time": "2017-03-10T16:48:35", "upload_time_iso_8601": "2017-03-10T16:48:35.798728Z", "url": "https://files.pythonhosted.org/packages/2d/5e/fcda1fa9e91824534be3232fa6ac3abd5258aaf8e7f84fb0f28182325cec/LightPipes-1.1.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e3befcef07195a429dc758bc0f207b1", "sha256": "3d5fbf54fc7c7fb6f0d59d397874dbffc688a5f035c193e8e7a98517fd0c0c7a" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2e3befcef07195a429dc758bc0f207b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1033548, "upload_time": "2017-03-10T16:48:38", "upload_time_iso_8601": "2017-03-10T16:48:38.150741Z", "url": "https://files.pythonhosted.org/packages/eb/25/ddf1da9331a1ba81bca8a238559ae6cd5097792500aa8eb8e30c9e32ddce/LightPipes-1.1.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac67cd10a9614020628abcbcfd8d710c", "sha256": "dce5c2445d2d3502e3a0951c82b5420d0d2ffccea99b87d3899ffd9c2f512027" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ac67cd10a9614020628abcbcfd8d710c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 814148, "upload_time": "2017-03-10T16:43:23", "upload_time_iso_8601": "2017-03-10T16:43:23.738704Z", "url": "https://files.pythonhosted.org/packages/55/68/adba365e5fd0d428b9ae37e871d496d35f4f997e6722bb5bb5ea72e8ccaf/LightPipes-1.1.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5e30c1790d1d23a76e0b79c7e4de241", "sha256": "246c9da0cb6c7ad1cbf1d93f2730ef32074df3f4bb5956c2963b1eb388eb40af" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b5e30c1790d1d23a76e0b79c7e4de241", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 985727, "upload_time": "2017-03-10T16:43:27", "upload_time_iso_8601": "2017-03-10T16:43:27.293231Z", "url": "https://files.pythonhosted.org/packages/94/24/9c9b2f60212de13d5ed404927a54d154f1246f0717cc24119ecff9bbfb74/LightPipes-1.1.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9e7c7b2ddf21da2d1ff0d7b08b9ffc0", "sha256": "267b04e78f7937e4d1d747559e2dab998ca91ca9ca73d14bac98eb347ffad0e9" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c9e7c7b2ddf21da2d1ff0d7b08b9ffc0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 699557, "upload_time": "2017-03-12T13:36:24", "upload_time_iso_8601": "2017-03-12T13:36:24.641927Z", "url": "https://files.pythonhosted.org/packages/b2/f5/c56605eb18d1392cad4a4ab7a7599907b5225043d62457d574f201551748/LightPipes-1.1.2-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d27304e1ff1597d21d4c496887330f10", "sha256": "fe16361e811a043ed76d9ffdb9bc9926c9e63976dabe5ed5c6db98d8c302b1fe" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d27304e1ff1597d21d4c496887330f10", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 876841, "upload_time": "2017-03-10T16:48:40", "upload_time_iso_8601": "2017-03-10T16:48:40.184201Z", "url": "https://files.pythonhosted.org/packages/45/2b/77244f0cdafed05296212e87dd9da2f8a284357a6d1f4983b9aa316c26c1/LightPipes-1.1.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66e7735bd48a1b8e8ed0a29e66366ba0", "sha256": "add6169695b2c2aa58064081a911cb10dd62b40ff4f565e9d49bf46cc88da29c" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "66e7735bd48a1b8e8ed0a29e66366ba0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1033890, "upload_time": "2017-03-10T16:48:44", "upload_time_iso_8601": "2017-03-10T16:48:44.909819Z", "url": "https://files.pythonhosted.org/packages/55/75/b65b35a2196ac481044fa61ed6b38defa451afcdb516a74d1ddefb955d88/LightPipes-1.1.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "437fbe2133a46d472282d31d55f6785f", "sha256": "6413682f1bd7550e038c33917332b4cc0513bf510e2e5aa010ee63a824767481" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "437fbe2133a46d472282d31d55f6785f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 814150, "upload_time": "2017-03-10T16:43:30", "upload_time_iso_8601": "2017-03-10T16:43:30.047770Z", "url": "https://files.pythonhosted.org/packages/08/d2/f9377cc7ecba3f53590e49bdfa5ebc66a6da41919e67b7b55a8c9c14f9ff/LightPipes-1.1.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e922a49e747efe8045ed25bd4f2d8e", "sha256": "55bcad0274a30ab662c98abad6b87a96cb88ee7de0042adb7b637f341fc7c20b" }, "downloads": -1, "filename": "LightPipes-1.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "08e922a49e747efe8045ed25bd4f2d8e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 985721, "upload_time": "2017-03-10T16:43:33", "upload_time_iso_8601": "2017-03-10T16:43:33.848983Z", "url": "https://files.pythonhosted.org/packages/38/27/99272c342cd26e48906a15e62d3eee0eaf3ebae979a7df41c68e55787711/LightPipes-1.1.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "280a60a0b7e19426b17689feda51229b", "sha256": "86bd225ccb5744e7234d635f47f79679d7a7eb0b76f8c96b04e66e85bdc2213a" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "280a60a0b7e19426b17689feda51229b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 702629, "upload_time": "2017-05-26T11:43:56", "upload_time_iso_8601": "2017-05-26T11:43:56.556715Z", "url": "https://files.pythonhosted.org/packages/a2/77/450563d73e131732134357b736a8434a26ffd9182d82fc00864d698ab77d/LightPipes-1.1.3-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d3047a1f51bcc3f4cd5e80e16f2845e", "sha256": "23c1b0f63a91e8da32a0b1e31ed7f0da7978becefc4ee46a6158b72943d2f0bf" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2d3047a1f51bcc3f4cd5e80e16f2845e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 880977, "upload_time": "2017-05-26T11:44:00", "upload_time_iso_8601": "2017-05-26T11:44:00.289642Z", "url": "https://files.pythonhosted.org/packages/4c/47/fee87bd9d3314a57c552526478279573c4f145f0eac23632c3b9b30f9b01/LightPipes-1.1.3-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d912d5dd37f917d19a94fb42e08ffc3a", "sha256": "50c2ee2cd09cab2e56d6a03ff379eafd16f0ba9fcd9deeb1420d97420d089dd4" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d912d5dd37f917d19a94fb42e08ffc3a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1051492, "upload_time": "2017-05-26T11:44:04", "upload_time_iso_8601": "2017-05-26T11:44:04.030911Z", "url": "https://files.pythonhosted.org/packages/da/a3/9958ad78dfc0421fff7835042611e27edd5327a4990055e535e48ccbb9bd/LightPipes-1.1.3-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbd6cee1ad0211616cfe682d7e548300", "sha256": "07db156b508dacb8a1a7a28379d71a6693bb9e2f46683ba4a61557bdba25b953" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fbd6cee1ad0211616cfe682d7e548300", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 880961, "upload_time": "2017-05-26T11:44:14", "upload_time_iso_8601": "2017-05-26T11:44:14.705028Z", "url": "https://files.pythonhosted.org/packages/07/00/248984271a07c172b5e8bc917c8af6652a61ffec661116df49a5733d4d6d/LightPipes-1.1.3-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c1d659a247c42714ceeb973b52ce859", "sha256": "f804b44ee1a160bd34bab1a899b5f8a2f6e4bbd5202422eec26f977a7da3db63" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2c1d659a247c42714ceeb973b52ce859", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1051503, "upload_time": "2017-05-26T11:44:18", "upload_time_iso_8601": "2017-05-26T11:44:18.183473Z", "url": "https://files.pythonhosted.org/packages/ce/aa/d8c0e570e9eb20dbaa404181924d81dcda3869de4b982b2f46182b1c943e/LightPipes-1.1.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "777c50fbf748f3556fd115ce0400198b", "sha256": "1a2ba32f8b8af5ea03a998442055e9db5ef908c61a6cbbf5c0c7c9d4b30fb741" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "777c50fbf748f3556fd115ce0400198b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 812667, "upload_time": "2017-05-26T11:44:06", "upload_time_iso_8601": "2017-05-26T11:44:06.925000Z", "url": "https://files.pythonhosted.org/packages/1f/8e/29b19a81956b79a61136d9d95fe02f6f746e7b1739385db710da550d5284/LightPipes-1.1.3-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0768379c832dcd9026e8bb4470565cf", "sha256": "77e8c640b36bccc4207d6ac2297cc5aefb296916e065d353ea778b0b85c4f64e" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a0768379c832dcd9026e8bb4470565cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 991514, "upload_time": "2017-05-26T11:44:10", "upload_time_iso_8601": "2017-05-26T11:44:10.903126Z", "url": "https://files.pythonhosted.org/packages/d8/4d/42997a79c872b6c95066ee8aec50394726e638d0721406447764813cd631/LightPipes-1.1.3-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa08dec4182b489c256c4804fb43e66b", "sha256": "bc9aae00abb070ee14a96e6a831af26f91946b95511778fefc15d7ca7f1b70ab" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "aa08dec4182b489c256c4804fb43e66b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 702648, "upload_time": "2017-05-26T11:44:21", "upload_time_iso_8601": "2017-05-26T11:44:21.734646Z", "url": "https://files.pythonhosted.org/packages/59/fc/cb180a903db0366a38f6dddeb107799dd81217c9df51330decad4c1f1c82/LightPipes-1.1.3-cp34-cp34m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0947c02a88e4959ca1956f56e53a7734", "sha256": "87189ddb4c7bdbae9a4386ccd139f3c0d589affd34edc5b339ebad91c95e8215" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0947c02a88e4959ca1956f56e53a7734", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 882898, "upload_time": "2017-05-26T11:44:25", "upload_time_iso_8601": "2017-05-26T11:44:25.074094Z", "url": "https://files.pythonhosted.org/packages/b9/24/a1adc633fa6c4d71425e65153806bcf1cebe748a5c2b180a56b92f9c8fba/LightPipes-1.1.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9ff244303c42b53c57094cc65846753", "sha256": "e8bfccdb8f18dde8f2d8cfd7e39b239ef88ad70fce3fb83eef5c9a974b4fb6ba" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e9ff244303c42b53c57094cc65846753", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1047447, "upload_time": "2017-05-26T11:44:28", "upload_time_iso_8601": "2017-05-26T11:44:28.781163Z", "url": "https://files.pythonhosted.org/packages/5c/8c/c4a2c10f01b1744444f88adfcebb2190176545ee9c9ca5f2246e04842e5a/LightPipes-1.1.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c0510e614022c420b8d4ff732f79ee3", "sha256": "0b8d4b5675573686c61633fde1177ca5f159445f61806047803064313d8e8432" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp35-cp35m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "2c0510e614022c420b8d4ff732f79ee3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 702683, "upload_time": "2017-05-26T11:44:32", "upload_time_iso_8601": "2017-05-26T11:44:32.536735Z", "url": "https://files.pythonhosted.org/packages/f2/77/7244826ce4d49efbfb25e6c89ce83033cab41faf9065c719f6e01675ad22/LightPipes-1.1.3-cp35-cp35m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23c47c8832c1b8a878fe3410f0286c1e", "sha256": "f3498e2886c63a899fff53976442e907a20e5774196f68841cc1600687e63bc0" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "23c47c8832c1b8a878fe3410f0286c1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 882710, "upload_time": "2017-05-26T11:44:36", "upload_time_iso_8601": "2017-05-26T11:44:36.224590Z", "url": "https://files.pythonhosted.org/packages/4a/e8/9090358b0e859c65d457a50e678f274cb2402035b1957957194e3ef6cbee/LightPipes-1.1.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d9ef2b6c8cc6c1d243ef4aa05bce357", "sha256": "e5a5e7b69451db27322aa0dc3d63ed4f5d1c1b8dfa667d313cfd62cdde769566" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d9ef2b6c8cc6c1d243ef4aa05bce357", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1048200, "upload_time": "2017-05-26T11:44:40", "upload_time_iso_8601": "2017-05-26T11:44:40.196552Z", "url": "https://files.pythonhosted.org/packages/b3/1a/c67af7c3d7da0784a9726bf22c02c4913721cc03430cf852494f95e2fa27/LightPipes-1.1.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "692c064e08374eadc9ef625bbba62ad6", "sha256": "30732ae1784411911a24ef30b44ca83a53ab2d8bf6b095b4de48ea3ddfc93b0d" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "692c064e08374eadc9ef625bbba62ad6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 817082, "upload_time": "2017-05-26T11:44:44", "upload_time_iso_8601": "2017-05-26T11:44:44.234985Z", "url": "https://files.pythonhosted.org/packages/06/8e/cedb48131906ce13f13567b876a73922a639c065ebe921e2433c3ba28f39/LightPipes-1.1.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b59ca5441167110253741ce4978d9598", "sha256": "ed0059228cd0b058920dc407466636bb027c529363dcace35ff98ff6eb5c0eb9" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b59ca5441167110253741ce4978d9598", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 988949, "upload_time": "2017-05-26T11:44:47", "upload_time_iso_8601": "2017-05-26T11:44:47.769709Z", "url": "https://files.pythonhosted.org/packages/3e/0c/3d11c1272213c67a61e1c2e42aaa2df7bc50ffc1e68b62b58767be00576f/LightPipes-1.1.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3fe0e6801e3561c39e39a38d21374f8", "sha256": "06d909b01c4f08c60330954ac3624285df5359785a5408e369048db5c0f82509" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c3fe0e6801e3561c39e39a38d21374f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 702685, "upload_time": "2017-05-26T11:44:51", "upload_time_iso_8601": "2017-05-26T11:44:51.295338Z", "url": "https://files.pythonhosted.org/packages/34/60/cdafdd96a29f1c8cba84dec677a153e274c141f04d59f5a3ff4dd9055d64/LightPipes-1.1.3-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dc890b8652723058ae6e1e4541e3942", "sha256": "bc1186feb12aeb3b3c531cf8b9baa19a9e6716117606814fb2446849f98c3b3e" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4dc890b8652723058ae6e1e4541e3942", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 882934, "upload_time": "2017-05-26T11:44:54", "upload_time_iso_8601": "2017-05-26T11:44:54.739523Z", "url": "https://files.pythonhosted.org/packages/0e/cb/1a2d1388c20e1388f59cf1aef5433674214f63fea29f45d525d903ec258e/LightPipes-1.1.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee9ec125ebe792b28018bf74ee8ebd73", "sha256": "5d5fa1241e37bcc04a5de80c402c88381122a1e945af55638bcf38976b8a126e" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee9ec125ebe792b28018bf74ee8ebd73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1048544, "upload_time": "2017-05-26T11:44:58", "upload_time_iso_8601": "2017-05-26T11:44:58.515431Z", "url": "https://files.pythonhosted.org/packages/fd/ec/4924bbe05b0b2e910df5af1b217e05d55b5c53c2a0fbe2119b71a5ab8ef3/LightPipes-1.1.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aaad574cfc48de7cbbc6ee61a1eb3328", "sha256": "5a0eddfe1f3c8b4f6648101f102198d01805508c1f98f74f4cf91a7f7adb849f" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "aaad574cfc48de7cbbc6ee61a1eb3328", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 817085, "upload_time": "2017-05-26T11:45:02", "upload_time_iso_8601": "2017-05-26T11:45:02.409256Z", "url": "https://files.pythonhosted.org/packages/28/a2/792a0820c98b358e8c19228bda04e72bf2015053b70f877be90a44f65816/LightPipes-1.1.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85539031cc1cf4d7dbc8bdf1872e12fd", "sha256": "00fc385812dda16e0264c14d04e499f9f955db41ab1a30077ae02668ca0a20e0" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "85539031cc1cf4d7dbc8bdf1872e12fd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 988945, "upload_time": "2017-05-26T11:45:06", "upload_time_iso_8601": "2017-05-26T11:45:06.517794Z", "url": "https://files.pythonhosted.org/packages/5e/ac/188600717b5b4a6ad7bbb02370e951de9061342cae4875cdb8d0c9206aba/LightPipes-1.1.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c65d884da661af5a98a4734272835b0a", "sha256": "b309bf732b79de548e25eb77d4b8ce0852c3ecae0c5e0b0e108a19c6fe187db9" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c65d884da661af5a98a4734272835b0a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 966913, "upload_time": "2018-08-09T12:58:00", "upload_time_iso_8601": "2018-08-09T12:58:00.379195Z", "url": "https://files.pythonhosted.org/packages/ea/ed/3b7ee275934dc6c7758ef52e1ec993a3b11a23ddd1e149e2d9c91af555c9/LightPipes-1.1.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3df915624178b29c178d1ef9c35a7393", "sha256": "a18d3102efa46048fe48f04ad6700ed72a75ca6e7de5de6675acdc9e776dc5b9" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3df915624178b29c178d1ef9c35a7393", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1135373, "upload_time": "2018-08-09T12:58:02", "upload_time_iso_8601": "2018-08-09T12:58:02.695993Z", "url": "https://files.pythonhosted.org/packages/b0/fb/4de242a20766400cbf30ef6512ca694e694702146374b0eed172d4ea032f/LightPipes-1.1.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfc115981154b5e4813bb53bbd34a529", "sha256": "7ef236a290a6318436fd15206c81eed20049a51816112bfbedb1d3c8da79effa" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bfc115981154b5e4813bb53bbd34a529", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 827463, "upload_time": "2018-08-03T13:02:03", "upload_time_iso_8601": "2018-08-03T13:02:03.699594Z", "url": "https://files.pythonhosted.org/packages/78/cf/434bc3c98b322bd94c8df98974a351e7ff694fedd785bc4e7a359eaac7ec/LightPipes-1.1.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c39b532254652d88b4ca1ee62614ae95", "sha256": "8d2d5d0e57b4e2c2c24d170efe7e4813272850f0dba5b880b437266c0dc59843" }, "downloads": -1, "filename": "LightPipes-1.1.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c39b532254652d88b4ca1ee62614ae95", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1001939, "upload_time": "2018-08-03T13:02:05", "upload_time_iso_8601": "2018-08-03T13:02:05.877071Z", "url": "https://files.pythonhosted.org/packages/b7/a6/ff97663d474cdebbecf1cafa3f8680c77e75c0faee52f6654baa53f2484e/LightPipes-1.1.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ae3fdd2977727a7388ab559fb216a293", "sha256": "631f2c8d27f727c9e54909fa81ea47593be6fb10f2d2c4ed540c32f1beff5afc" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ae3fdd2977727a7388ab559fb216a293", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 723704, "upload_time": "2019-10-30T13:42:33", "upload_time_iso_8601": "2019-10-30T13:42:33.436573Z", "url": "https://files.pythonhosted.org/packages/f7/b0/fbc66d6995a6e5e7c2fb789bf48f6de52aa5bb7338bcf78d4ccc5b367112/LightPipes-1.2.0-cp27-cp27m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fac9d2eba6bf4afd4010e8de27ce16d7", "sha256": "d96da18f07d98f83ae236d87626e6040d07ccd346474ee4e61b50469a142aa60" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fac9d2eba6bf4afd4010e8de27ce16d7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 942405, "upload_time": "2019-10-30T13:42:37", "upload_time_iso_8601": "2019-10-30T13:42:37.335337Z", "url": "https://files.pythonhosted.org/packages/4b/14/00b1be3d338311d8294c961ea97dab9bee24b3389eb24ab4e1f16d67d5d9/LightPipes-1.2.0-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab534145276008cecf6f67a279e8a85e", "sha256": "48995b14050687b901dc12ddb323356ec7362dfa963a05dfc67c858d16c642c6" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ab534145276008cecf6f67a279e8a85e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1118854, "upload_time": "2019-10-30T13:42:41", "upload_time_iso_8601": "2019-10-30T13:42:41.198796Z", "url": "https://files.pythonhosted.org/packages/cf/b7/4ce6bb725b40be0fc9c61093ccd01d668ec9caaa05bf076d15eb8cf12e34/LightPipes-1.2.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54daa09f7d705f41f77eb50a47c8b218", "sha256": "971c08488e4e0deecd5ba4d009fdb90b48818431fe9329463e8226427f4c201d" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27mu-linux_armv7l.whl", "has_sig": false, "md5_digest": "54daa09f7d705f41f77eb50a47c8b218", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 795043, "upload_time": "2019-10-30T13:42:48", "upload_time_iso_8601": "2019-10-30T13:42:48.130098Z", "url": "https://files.pythonhosted.org/packages/b4/75/80f891281905cc5948632b480dfd15557e019ea1c755f1e03cde99ed75cb/LightPipes-1.2.0-cp27-cp27mu-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a2cd8e3a00154887dfe5dec680eb7c4", "sha256": "69699fb59f60910edcfa2ac73b356b6db422ba628a5832c6415769b8e6db7883" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7a2cd8e3a00154887dfe5dec680eb7c4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 942413, "upload_time": "2019-10-30T13:42:51", "upload_time_iso_8601": "2019-10-30T13:42:51.666941Z", "url": "https://files.pythonhosted.org/packages/76/04/91800fc74ef70b641d4b7ca9a8bfde9bb4e912658399893613fd0af280fa/LightPipes-1.2.0-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e40504838311cf489646282a8e5c6273", "sha256": "83c59186ba1f376be9bb280da7698f4d7b13fe420fd705921a83eebff6b0c6ee" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e40504838311cf489646282a8e5c6273", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1118877, "upload_time": "2019-10-30T13:42:56", "upload_time_iso_8601": "2019-10-30T13:42:56.599329Z", "url": "https://files.pythonhosted.org/packages/43/62/e10744be0d41e2be49a153bcd48a6748858becf23fd36a816561e7d5223b/LightPipes-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ab0ce5ca4ac12609b45a8d762bb8dba", "sha256": "bed6f34a78d5f3475c31c0ca0b16211912de0632e2df1f2aa8eb8e74847621b7" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "3ab0ce5ca4ac12609b45a8d762bb8dba", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 825617, "upload_time": "2019-10-30T13:42:45", "upload_time_iso_8601": "2019-10-30T13:42:45.107352Z", "url": "https://files.pythonhosted.org/packages/e3/85/c1dca291e4a8277898d52c289dcca022403bff06fb85da1856039fb4a251/LightPipes-1.2.0-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2226735dd989b324387aeb7be8c8b0e5", "sha256": "1cb9e2e7631bb72289644bbaecd09bb6fab77637e40e1ba9f410e1b37213ddaa" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "2226735dd989b324387aeb7be8c8b0e5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 724009, "upload_time": "2019-10-30T13:42:59", "upload_time_iso_8601": "2019-10-30T13:42:59.600844Z", "url": "https://files.pythonhosted.org/packages/bd/07/628ff82c208a6af8ec4552cad7305f1c6285f8598768ecad503d4b19780d/LightPipes-1.2.0-cp34-cp34m-macosx_10_6_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8a29e43e1ddeec1711bebf7a2a63b80", "sha256": "4138ee76105ca6dfd307fb3e7a2d6ff4c47e487ff9862daf0bb0c4a8ef6621b9" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c8a29e43e1ddeec1711bebf7a2a63b80", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 957391, "upload_time": "2019-10-30T13:43:02", "upload_time_iso_8601": "2019-10-30T13:43:02.645922Z", "url": "https://files.pythonhosted.org/packages/01/4c/73555380a8acba28dbd61dfb8ea5f09bd99470ec89f491af0a6a7143cdb9/LightPipes-1.2.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33bfba752b7721bc26d4d8ebb223fc22", "sha256": "3261686d528ca5d2b802105068ed5b1f6148c6b73b07718f94143a184ae3407b" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "33bfba752b7721bc26d4d8ebb223fc22", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1124889, "upload_time": "2019-10-30T13:43:06", "upload_time_iso_8601": "2019-10-30T13:43:06.138599Z", "url": "https://files.pythonhosted.org/packages/14/28/ed114abc3e0903c63fb0a37becb25f4e7ed2028ba620cf6c5a113cd00062/LightPipes-1.2.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c6baaaf0f1422e599f0341ba21db8b5", "sha256": "dd1f0dce21edb16b9d8c048130d38fd0c4949e6e0bc4351f330f4568cac2c89b" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "6c6baaaf0f1422e599f0341ba21db8b5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 828050, "upload_time": "2019-10-30T13:43:09", "upload_time_iso_8601": "2019-10-30T13:43:09.291102Z", "url": "https://files.pythonhosted.org/packages/2a/2c/570523cbde2a953d3159f656dc1af886d99265964dc29a27f5027f3c1c8c/LightPipes-1.2.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b855cfdcf92d77495aae02bc00d48a3a", "sha256": "b294868a447064385980d6269b47eb8620cbd05c8d259a42c85d21f5753bcadf" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b855cfdcf92d77495aae02bc00d48a3a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1005570, "upload_time": "2019-10-30T13:43:12", "upload_time_iso_8601": "2019-10-30T13:43:12.948196Z", "url": "https://files.pythonhosted.org/packages/42/f3/c3bcae3f0b5b64d8983d425ca228301870ac8117875807f83ff20f189d81/LightPipes-1.2.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5fc9c39d0308d0b43a79583a0bd4880", "sha256": "31f34762877c216e79e2fa562468a00f7dc7dbaf25c303e09a227c2bad846e99" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp35-cp35m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c5fc9c39d0308d0b43a79583a0bd4880", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 724358, "upload_time": "2019-10-30T13:43:16", "upload_time_iso_8601": "2019-10-30T13:43:16.190797Z", "url": "https://files.pythonhosted.org/packages/66/ea/32be757f9cb2f3f55d06653f5bc900ab53c06efc4d34267e6454596ac5da/LightPipes-1.2.0-cp35-cp35m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0461e03d9e3154df1c55f3ace92607ca", "sha256": "4cd559bb91858f7a59e9b43f1a2d6c5ef677a15790bec938a8076dc08ed7af07" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0461e03d9e3154df1c55f3ace92607ca", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 959743, "upload_time": "2019-10-30T13:43:19", "upload_time_iso_8601": "2019-10-30T13:43:19.391709Z", "url": "https://files.pythonhosted.org/packages/18/15/1603966cb48f33b1ea638b188b79f3defd79d145d257bd012bd66d5163bb/LightPipes-1.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0f0d24c3f2f43d53898ef4d76ae740d", "sha256": "d2fdacdef2c9458fab631e01a3614610772b46622583fa254b65b5eb3bd47047" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a0f0d24c3f2f43d53898ef4d76ae740d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1130821, "upload_time": "2019-10-30T13:43:22", "upload_time_iso_8601": "2019-10-30T13:43:22.812514Z", "url": "https://files.pythonhosted.org/packages/ee/c7/09e792f9e9f14e0d6d53ef5b63695a8d3bd78cd290dbeb14b6a7ef5f298b/LightPipes-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f703449ab9d8636201498109ffa54e0b", "sha256": "06909495d9d35bffec9c17d048e68a21abe240af997dd59a571b18d98195cf45" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f703449ab9d8636201498109ffa54e0b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 827857, "upload_time": "2019-10-30T13:43:26", "upload_time_iso_8601": "2019-10-30T13:43:26.092190Z", "url": "https://files.pythonhosted.org/packages/87/92/a149e85296e20ad5a0fe10f9d042ef32260f574b2a884a99bbdae988c63e/LightPipes-1.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30bbc00a80363a9af91dc9afa975d292", "sha256": "8037280a6521158313a064b12bc3b07bc746653db8910e72106d50d4eb72c472" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "30bbc00a80363a9af91dc9afa975d292", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1002782, "upload_time": "2019-10-30T13:43:29", "upload_time_iso_8601": "2019-10-30T13:43:29.494411Z", "url": "https://files.pythonhosted.org/packages/c0/36/e9ffd5291b7f844282c854b52302179eb1548077c34c62275de947328db6/LightPipes-1.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "635fd70810587a3d979bc1a959826ff7", "sha256": "8b8c97423a02800925fcaef16daf60ca681a2a11090b64b93affcb841e739b88" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "635fd70810587a3d979bc1a959826ff7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 726118, "upload_time": "2019-10-30T13:43:32", "upload_time_iso_8601": "2019-10-30T13:43:32.533764Z", "url": "https://files.pythonhosted.org/packages/58/ac/7e6235a2b816e4ed966c57879ea06ae988c18ea0972998cb90f3257a6de6/LightPipes-1.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a6f386b7c48d1cd8b307524418400df", "sha256": "780d253b506397a513be137a6774f4ebc7097ba85b414f1e924b71d093d9bf9f" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8a6f386b7c48d1cd8b307524418400df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 967640, "upload_time": "2019-10-30T13:43:36", "upload_time_iso_8601": "2019-10-30T13:43:36.294857Z", "url": "https://files.pythonhosted.org/packages/8a/f4/d78a029f666c3af78d9871dfa9daf8e3fc195145b3ad1920d67b61879031/LightPipes-1.2.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf8309ac2654ab59d6967a24a4b65986", "sha256": "f1eab3f520696e2f7534c61f119e178cc1ac1eecb51a082416857ab720da656a" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cf8309ac2654ab59d6967a24a4b65986", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1136481, "upload_time": "2019-10-30T13:43:39", "upload_time_iso_8601": "2019-10-30T13:43:39.695203Z", "url": "https://files.pythonhosted.org/packages/22/fb/17d5ccbc17e2880bf044a1c008421ac8ba7750c126208389ae9fc346be90/LightPipes-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23762afd22d3fcab9f59e142f4d0e87f", "sha256": "11ded2f5e7119b9178594f317ac70c38c94e3721b06c566893acb99033baf9ec" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "23762afd22d3fcab9f59e142f4d0e87f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 829729, "upload_time": "2019-10-30T13:43:42", "upload_time_iso_8601": "2019-10-30T13:43:42.932402Z", "url": "https://files.pythonhosted.org/packages/0b/08/1b09f9a299b5581141c2d3c941611d265d7c3f0537a7ad1f040b67c29bb1/LightPipes-1.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d80a7e8c6557e8b3c09abed4af35468", "sha256": "996f78a963a8e0c68bc90e15da4924e2234423c573831b81346fe9084854cc52" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0d80a7e8c6557e8b3c09abed4af35468", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1004501, "upload_time": "2019-10-30T13:43:46", "upload_time_iso_8601": "2019-10-30T13:43:46.638806Z", "url": "https://files.pythonhosted.org/packages/be/db/1361001dfef6b15e0555dfbeeb56530d07a204d998ae1d3aa0c40f66501f/LightPipes-1.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8f616c70dc54b01a44a73d8645c22bf", "sha256": "cb144ee44449a9b6452384631d6de96c128937342f80d305335b843dcf483bf6" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "d8f616c70dc54b01a44a73d8645c22bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 811505, "upload_time": "2019-10-30T13:43:49", "upload_time_iso_8601": "2019-10-30T13:43:49.589542Z", "url": "https://files.pythonhosted.org/packages/41/58/e13a6b6f2ddc08f16cbcc044253c04700d10ade5ca796519eea877d5b179/LightPipes-1.2.0-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9acf03637267de4eabdea914a91ef32c", "sha256": "43e06b4cf45b172388d82add8ec6e36f47e91fdfa38afedd05b65818a51a8f89" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9acf03637267de4eabdea914a91ef32c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 119149, "upload_time": "2019-10-30T13:43:51", "upload_time_iso_8601": "2019-10-30T13:43:51.259579Z", "url": "https://files.pythonhosted.org/packages/f5/e5/f5cd0134674d163aed723be2366a07f281fb0528672bd8d1b549a90faaaa/LightPipes-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf235e995624b7ea42d75880768c63d1", "sha256": "a3d7f045e68d9364532475a9254cce9976fde560312f749abe7becab80de5e09" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bf235e995624b7ea42d75880768c63d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 965647, "upload_time": "2019-10-30T13:43:54", "upload_time_iso_8601": "2019-10-30T13:43:54.455387Z", "url": "https://files.pythonhosted.org/packages/83/de/ecba70cf42e60234cef7b7a84ef17c359cb2a5f7983c891e96dc7bcfcd18/LightPipes-1.2.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07f79594e99a23278a935708a75f7f48", "sha256": "11c287302729287de8923418a111f72207cb0f757ea1e48b133ca94d6b533fdf" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "07f79594e99a23278a935708a75f7f48", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1135445, "upload_time": "2019-10-30T13:43:58", "upload_time_iso_8601": "2019-10-30T13:43:58.337012Z", "url": "https://files.pythonhosted.org/packages/30/67/463e648ac76ce1a33c619d9f29d15c89d01a270bb780d6abe381d411f0ae/LightPipes-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6b64778ee0e3d0038f05851c2ff8d9b", "sha256": "19aacf6cb87a5184171c6f3ecc484c64b7322693e4a81c9f3858f3c7d494fd14" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c6b64778ee0e3d0038f05851c2ff8d9b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 830198, "upload_time": "2019-10-30T13:44:01", "upload_time_iso_8601": "2019-10-30T13:44:01.228927Z", "url": "https://files.pythonhosted.org/packages/30/15/add7c7d40c2213e41c798fba81fa3551d3497dda58479899c33032951f2c/LightPipes-1.2.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c1e91cc57336f83bb162e1172e5e09a", "sha256": "fd9e2917014fbc150541e8074dc62178e2a9e7b6fab2da57f6fb61d5a1580fc3" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2c1e91cc57336f83bb162e1172e5e09a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1005012, "upload_time": "2019-10-30T13:44:04", "upload_time_iso_8601": "2019-10-30T13:44:04.534418Z", "url": "https://files.pythonhosted.org/packages/c2/e7/2a8d19e318508d15ea0d52878af17f75e14c8994ced99a5c63d99a43cdac/LightPipes-1.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "555aab5e2b3ec836858d2cfe45200310", "sha256": "72e5dec22efc732de8d4708d8f9bc84a9ac65edc3eb0f213c8457b917dd9f040" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "555aab5e2b3ec836858d2cfe45200310", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 830433, "upload_time": "2020-03-28T14:31:51", "upload_time_iso_8601": "2020-03-28T14:31:51.511448Z", "url": "https://files.pythonhosted.org/packages/a6/ea/22185cd80ee8bb186121a96a9613b7b5ad424c7da95e9b3737c58692cd9e/LightPipes-1.2.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3329da57fc6f23a0d94804d967af211d", "sha256": "1cd01742da99defd1ddd547dbc2dd55067c58513b87647a948a963341e99230a" }, "downloads": -1, "filename": "LightPipes-1.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3329da57fc6f23a0d94804d967af211d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1005440, "upload_time": "2020-03-28T14:31:53", "upload_time_iso_8601": "2020-03-28T14:31:53.211208Z", "url": "https://files.pythonhosted.org/packages/d7/ff/9f1959dcc8cd16e99cc5288523894efbce56ab534be09a6d300e3936d7a8/LightPipes-1.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e3acc459bbce8276d921d02e8801f8cd", "sha256": "bca504d140f0310cb5610e4de8d231e417d7ab22bb69b3c8846a51f8f0bccb3a" }, "downloads": -1, "filename": "LightPipes-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e3acc459bbce8276d921d02e8801f8cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39021, "upload_time": "2020-05-18T20:36:10", "upload_time_iso_8601": "2020-05-18T20:36:10.685686Z", "url": "https://files.pythonhosted.org/packages/4e/3f/672a740efac74ee930588b5a28bcc2b491e2536177d5c4660eaea96b23c3/LightPipes-2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "80653a2ba971ec7083bb1c5defee4cc8", "sha256": "1d9c66803de5ed57d3bdcab6fe6d87f9b85955ff4193bb10b05673a7a7f96bd1" }, "downloads": -1, "filename": "LightPipes-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "80653a2ba971ec7083bb1c5defee4cc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39059, "upload_time": "2020-05-19T11:31:09", "upload_time_iso_8601": "2020-05-19T11:31:09.438997Z", "url": "https://files.pythonhosted.org/packages/84/11/9e68d2b3f9019ae6c09496c887bca66b5d70ca60ad64c48f742e216fdbdd/LightPipes-2.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "e4e4818a23b23e3eff944d5c1cd91905", "sha256": "04ec8ae0817457966452ffa38296620dcb8e2ac0dc99ffd2e09ffc94bb2ca261" }, "downloads": -1, "filename": "LightPipes-2.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e4e4818a23b23e3eff944d5c1cd91905", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43173, "upload_time": "2020-06-06T16:10:25", "upload_time_iso_8601": "2020-06-06T16:10:25.818136Z", "url": "https://files.pythonhosted.org/packages/f5/6b/5f126ed8872cbd85984edc991f4282e46c672cc83b1a9c867b2d351b6f1b/LightPipes-2.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "eed3e9da56def71bee95044501f9efc9", "sha256": "6a3eb3756c143cbad6833c13558819a702752e7fbd208de67bf8da397e19d15f" }, "downloads": -1, "filename": "LightPipes-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "eed3e9da56def71bee95044501f9efc9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43176, "upload_time": "2020-06-07T19:14:31", "upload_time_iso_8601": "2020-06-07T19:14:31.266573Z", "url": "https://files.pythonhosted.org/packages/d0/49/4bece179cb5dbe821f44b8b9ae14adb297c9c3781f36903d6d8c513f91c2/LightPipes-2.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "fdc8b92cbe10082627558aff6fc2d164", "sha256": "5ca6b9f05717bfedabd9e27687864335ee782bf6bd2f97dc2c443d9a681d4ba4" }, "downloads": -1, "filename": "LightPipes-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fdc8b92cbe10082627558aff6fc2d164", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46263, "upload_time": "2020-06-07T19:32:33", "upload_time_iso_8601": "2020-06-07T19:32:33.501436Z", "url": "https://files.pythonhosted.org/packages/dc/86/79398388743cb3cec4c39c1b71e036ab14bc00af10762af546b5fb6c9e4b/LightPipes-2.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "866bb363f57aea826e78b9772d6f31f2", "sha256": "4217425dfa3e167a9d8554a1d6bf87380606e99f82ffbb59854b7f2ed8aef634" }, "downloads": -1, "filename": "LightPipes-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "866bb363f57aea826e78b9772d6f31f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46855, "upload_time": "2020-12-15T15:50:48", "upload_time_iso_8601": "2020-12-15T15:50:48.988834Z", "url": "https://files.pythonhosted.org/packages/2c/fb/184732a558eadcde373cc6d200e42d9314da480781be2b69aa42a3bca708/LightPipes-2.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "1c62bfd3098ae672240c8e3236ab230b", "sha256": "b07dc3b456ef0b337dc9c006ccf5385e9c2ec88d061dba11b49bee2c0a791feb" }, "downloads": -1, "filename": "LightPipes-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "1c62bfd3098ae672240c8e3236ab230b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 47048, "upload_time": "2021-02-07T15:05:13", "upload_time_iso_8601": "2021-02-07T15:05:13.043717Z", "url": "https://files.pythonhosted.org/packages/e6/3b/f87b1fd17332294ffc6f0ed514c11864ba3400ea862130206046810be960/LightPipes-2.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "142bda4153d88d8ed8982a69adbf8fd0", "sha256": "b8c5d1eeedd3de5325fb2e6c3bff4508f900ab3ab5b169a595cb5e374aba930b" }, "downloads": -1, "filename": "LightPipes-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "142bda4153d88d8ed8982a69adbf8fd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 49567, "upload_time": "2021-03-17T16:12:34", "upload_time_iso_8601": "2021-03-17T16:12:34.488795Z", "url": "https://files.pythonhosted.org/packages/7f/fa/e798671b11a4aa771545c86d38bac501b480cddc954fd00a51af8d8acbea/LightPipes-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "2041cb1a1ed3874eb0ffb881e403aa60", "sha256": "e002e9437901033d54fa1be3cdc25333386087175155f82944add92ea9f75f72" }, "downloads": -1, "filename": "LightPipes-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "2041cb1a1ed3874eb0ffb881e403aa60", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 49993, "upload_time": "2021-09-09T13:35:05", "upload_time_iso_8601": "2021-09-09T13:35:05.795821Z", "url": "https://files.pythonhosted.org/packages/0d/81/d138d49c76bd586f09c210045de08bb25913573b35c4293e0106ab56e233/LightPipes-2.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "8874d78d64bc9728903fcb55cf07e5b0", "sha256": "cb2527c40870f3a9f6b14553f86e16dc67759ae487e8f75cd0c9300cd1fd3841" }, "downloads": -1, "filename": "LightPipes-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8874d78d64bc9728903fcb55cf07e5b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 49992, "upload_time": "2021-09-09T13:45:45", "upload_time_iso_8601": "2021-09-09T13:45:45.509290Z", "url": "https://files.pythonhosted.org/packages/8f/d4/6859b75c1018cb46c2e30215c82c519617a86ff1973162bedffca4c318a2/LightPipes-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "7252407160a1151a7fa43513616588ca", "sha256": "36550f6f886ad7f762cf529b57166da1e24319b741e374c029a6d1960438e73d" }, "downloads": -1, "filename": "LightPipes-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7252407160a1151a7fa43513616588ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50016, "upload_time": "2021-10-07T09:41:17", "upload_time_iso_8601": "2021-10-07T09:41:17.354380Z", "url": "https://files.pythonhosted.org/packages/39/5c/b8cd3ca9cd756dec7e1f8c3e485dfa270c51653b98e7376aa76b37e93c79/LightPipes-2.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "5db9cf285207d40e57d5a417e536aed2", "sha256": "7895fd9d6cb7797559c902b6b2d30a5216ab01fda2e9088dc168eab559e09eea" }, "downloads": -1, "filename": "LightPipes-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5db9cf285207d40e57d5a417e536aed2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50331, "upload_time": "2021-12-19T06:16:32", "upload_time_iso_8601": "2021-12-19T06:16:32.697404Z", "url": "https://files.pythonhosted.org/packages/92/32/6cdfb3f201d451ed6df7be336aab540c15b3ebc7810e402de2ba13860dc4/LightPipes-2.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "ce23f65e72737d06d75b506b8196d6b4", "sha256": "4b6cd291f07ce979aa51a488c85edfb807a6e8571770bb55ae62584196416a1a" }, "downloads": -1, "filename": "LightPipes-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ce23f65e72737d06d75b506b8196d6b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51489, "upload_time": "2022-05-04T19:52:47", "upload_time_iso_8601": "2022-05-04T19:52:47.203835Z", "url": "https://files.pythonhosted.org/packages/f3/93/371271ee9ae650bcfe2e71a8e6df84fb95e237bd7617c254622c40e1a23f/LightPipes-2.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ce23f65e72737d06d75b506b8196d6b4", "sha256": "4b6cd291f07ce979aa51a488c85edfb807a6e8571770bb55ae62584196416a1a" }, "downloads": -1, "filename": "LightPipes-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ce23f65e72737d06d75b506b8196d6b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51489, "upload_time": "2022-05-04T19:52:47", "upload_time_iso_8601": "2022-05-04T19:52:47.203835Z", "url": "https://files.pythonhosted.org/packages/f3/93/371271ee9ae650bcfe2e71a8e6df84fb95e237bd7617c254622c40e1a23f/LightPipes-2.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }