{ "info": { "author": "David Auber and the Tulip development team", "author_email": "tulipdev@labri.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Visualization" ], "description": "Module description\r\n==================\r\n\r\nGraphs play an important role in many research areas, such as biology, microelectronics, social\r\nsciences, data mining, and computer science. Tulip (http://tulip.labri.fr) [1]_ [2]_ is an\r\nInformation Visualization framework dedicated to the analysis and visualization of such relational\r\ndata. Written in C++ the framework enables the development of algorithms, visual encodings,\r\ninteraction techniques, data models, and domain-specific visualizations.\r\n\r\nThe Tulip GUI library is available to the Python community through the Tulip-Python\r\nbindings [3]_ allowing to create and manipulate Tulip views (typically Node Link diagrams)\r\ntrough the tulipgui module. It has to be used with the `tulip `_ module\r\ndedicated to the creation, storage and manipulation of the graphs to visualize.\r\nThe bindings have been developed using the `SIP `_\r\ntool [4]_ from Riverbank Computed Limited, allowing to easily create quality Python bindings for any C/C++ library.\r\n\r\nThe main features provided by the bindings are the following ones:\r\n\r\n * creation of interactive Tulip visualizations (Adjacency Matrix, Geographic, Histogram,\r\n Node Link Diagram, Parallel Coordinates, Pixel Oriented, Scatter Plot, Self Organizing Map, Spreadsheet)\r\n * the ability to change the data source on opened visualizations\r\n * the possibilty to modify the rendering parameters for node link diagram visualizations\r\n * the ability to save visualization snapshots to image files on disk\r\n\r\nRelease notes\r\n==============\r\n\r\nSome information regarding the Tulip-Python releases pushed on the Python Packaging Index:\r\n\r\n * **5.1.0**: based on Tulip 5.1.0 released on 07/11/2017\r\n\r\n * **5.0.0**: based on Tulip 5.0.0 released on 27/06/2017\r\n\r\n * **4.10.0**: based on Tulip 4.10.0 released on 08/12/2016\r\n\r\n * **4.9.0** : based on Tulip 4.9.0 released on 08/07/2016\r\n\r\n * **4.8.1** : based on Tulip 4.8.1 released on 16/02/2016\r\n\r\n * **4.8.0** : Initial release based on Tulip 4.8\r\n\r\nExample\r\n========\r\n\r\nThe following script imports the tree structure of the file system directory of the Python\r\nstandard library, applies colors to nodes according to degrees, computes a tree layout and quadratic\r\nB\u00e9zier shapes for edges. The imported graph and its visual encoding are then visualized\r\nby creating an interactive Node Link Diagram view.\r\nA window containing an OpenGL visualization of the graph will be created and displayed.\r\n\r\n.. code:: python\r\n\r\n from tulip import tlp\r\n from tulipgui import tlpgui\r\n\r\n import os\r\n\r\n # get the root directory of the Python Standard Libraries\r\n pythonStdLibPath = os.path.dirname(os.__file__)\r\n\r\n # call the 'File System Directory' import plugin from Tulip\r\n # importing the tree structure of a file system\r\n params = tlp.getDefaultPluginParameters('File System Directory')\r\n params['directory color'] = tlp.Color.Blue\r\n params['other color'] = tlp.Color.Red\r\n params['directory'] = pythonStdLibPath\r\n graph = tlp.importGraph('File System Directory', params)\r\n\r\n # compute an anonymous graph double property that will store node degrees\r\n degree = tlp.DoubleProperty(graph)\r\n degreeParams = tlp.getDefaultPluginParameters('Degree')\r\n graph.applyDoubleAlgorithm('Degree', degree, degreeParams)\r\n\r\n # create a heat map color scale\r\n heatMap = tlp.ColorScale([tlp.Color.Green, tlp.Color.Black, tlp.Color.Red])\r\n\r\n # linearly map node degrees to colors using the 'Color Mapping' plugin from Tulip\r\n # using the heat map color scale\r\n colorMappingParams = tlp.getDefaultPluginParameters('Color Mapping', graph)\r\n colorMappingParams['input property'] = degree\r\n colorMappingParams['color scale'] = heatMap\r\n graph.applyColorAlgorithm('Color Mapping', colorMappingParams)\r\n\r\n # apply the 'Bubble Tree' graph layout plugin from Tulip\r\n graph.applyLayoutAlgorithm('Bubble Tree')\r\n\r\n # compute quadratic bezier shapes for edges\r\n curveEdgeParams = tlp.getDefaultPluginParameters('Curve edges', graph)\r\n curveEdgeParams['curve type'] = 'QuadraticDiscrete'\r\n graph.applyAlgorithm('Curve edges', curveEdgeParams)\r\n\r\n # create a node link diagram view of the graph,\r\n # a window containing the Tulip OpenGL visualization\r\n # will be created and displayed\r\n nodeLinkView = tlpgui.createNodeLinkDiagramView(graph)\r\n # set some rendering parameters for the graph\r\n renderingParameters = nodeLinkView.getRenderingParameters()\r\n renderingParameters.setViewArrow(True)\r\n renderingParameters.setMinSizeOfLabel(8)\r\n renderingParameters.setEdgeColorInterpolate(True)\r\n nodeLinkView.setRenderingParameters(renderingParameters)\r\n\r\nReferences\r\n==========\r\n\r\n.. [1] David Auber, Romain Bourqui, Maylis Delest, Antoine Lambert,\r\n Patrick Mary, Guy M\u00e9lan\u00e7on, Bruno Pinaud, Benjamin Renoust and Jason Vallet.\r\n TULIP 4. Research report. LaBRI - Laboratoire Bordelais de Recherche en Informatique. 2016.\r\n https://hal.archives-ouvertes.fr/hal-01359308\r\n\r\n.. [2] David Auber, Daniel Archambault, Romain Bourqui, Antoine Lambert, Morgan Mathiaut,\r\n Patrick Mary, Maylis Delest, Jonathan Dubois, and Guy M\u00e9lan\u00e7on. The Tulip 3 Framework:\r\n A Scalable Software Library for Information Visualization Applications Based on Relational\r\n Data. Technical report RR-7860, INRIA, January 2012\r\n https://hal.archives-ouvertes.fr/hal-00659880\r\n\r\n.. [3] Antoine Lambert and David Auber. Graph analysis and visualization with Tulip-Python.\r\n EuroSciPy 2012 - 5th European meeting on Python in Science, Bruxelles\r\n https://hal.archives-ouvertes.fr/hal-00744969\r\n\r\n.. [4] Riverbank Computing Limited. SIP - a tool for automatically generating Python bindings for\r\n C and C++ libraries. http://www.riverbankcomputing.co.uk/software/sip\r\n\r\n\r\n\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://tulip.labri.fr/", "keywords": "graph theory algorithms visualization", "license": "LGPLv3", "maintainer": "", "maintainer_email": "", "name": "tulipgui-python", "package_url": "https://pypi.org/project/tulipgui-python/", "platform": "", "project_url": "https://pypi.org/project/tulipgui-python/", "project_urls": { "Homepage": "http://tulip.labri.fr/" }, "release_url": "https://pypi.org/project/tulipgui-python/5.2.1/", "requires_dist": [ "tulip-python (==5.2.1)" ], "requires_python": "", "summary": "Tulip GUI Python bindings", "version": "5.2.1" }, "last_serial": 4426782, "releases": { "4.10.0": [ { "comment_text": "", "digests": { "md5": "fb51b53ffb7db77b8efe6b15df0083b8", "sha256": "2b462b71aeb35a0110a8306003cdf507137736900d1cabd035cea634627cd2fa" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fb51b53ffb7db77b8efe6b15df0083b8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 46030733, "upload_time": "2016-12-08T22:24:52", "url": "https://files.pythonhosted.org/packages/b1/c4/12835b49a896e32dc060741085af57221b596f6453c42010b5d91de2637c/tulipgui_python-4.10.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a54e55e2eb951e93b61ae8451260fdbc", "sha256": "11a489a0b3dcc824ee7277085a65ed5f1402d37c6f9c7f58e2a4327f97f6ce28" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a54e55e2eb951e93b61ae8451260fdbc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26491853, "upload_time": "2016-12-08T23:37:38", "url": "https://files.pythonhosted.org/packages/37/7e/04374296b68afa693faf4bff09458d185399ac4d843b79a81c1c1914c18c/tulipgui_python-4.10.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "04fcba978c66ea06ae2fe468014120e0", "sha256": "11b78d97c18ba98728b6516901fdd45ccf4c139506e56be73e614ee1a6914f9b" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "04fcba978c66ea06ae2fe468014120e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26671848, "upload_time": "2016-12-08T22:57:06", "url": "https://files.pythonhosted.org/packages/cc/6a/3bca92eaa428e31ebf1328b22faac890b80c84e7660f3eb37447802282b7/tulipgui_python-4.10.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d1cd1769608b08474dbc3772c7a0a98", "sha256": "a442972b5442a69f984b9a5577f8278b2f90e02adece4e73dc357947405209fb" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2d1cd1769608b08474dbc3772c7a0a98", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26487873, "upload_time": "2016-12-08T23:37:49", "url": "https://files.pythonhosted.org/packages/4d/fc/61e816ea692ca8e12361c63e72b3bafcf6bffd9541480faff433199789b1/tulipgui_python-4.10.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "57a0598ddd5e51cbf959c4f3db293fcc", "sha256": "4c4bd4c66075ae31908df9bea06d79a8ea68a1148ee89ff558b67a757188c73e" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "57a0598ddd5e51cbf959c4f3db293fcc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26671798, "upload_time": "2016-12-08T22:57:17", "url": "https://files.pythonhosted.org/packages/14/3d/9e8d0eba0fdaa5bea0cebcad8984acfde22c854a2bfee8f0dfa786449ab8/tulipgui_python-4.10.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "424ddfb3b24e47e6e1d1abc5332eadfa", "sha256": "7d2d8e31fe814a726340271e14d30505b5f37f9b858a8397d65ca2b7c151e336" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "424ddfb3b24e47e6e1d1abc5332eadfa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29309303, "upload_time": "2016-12-09T13:03:06", "url": "https://files.pythonhosted.org/packages/8e/5b/ab8e76610e418b621ecb00d7ca0ff362fa26f9f6cd35b5cecec6a99aa731/tulipgui_python-4.10.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9826628f580d6eeaf24d9e12965c668a", "sha256": "e733794bf56ead40bf7378543f36a2f569517280e50e7a1e0f9972ebf29e0779" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "9826628f580d6eeaf24d9e12965c668a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 29184422, "upload_time": "2016-12-09T14:20:41", "url": "https://files.pythonhosted.org/packages/5b/9e/2afff583502014ae4709dff4a01818b6b15ef43f6ce3a4066018dc77748c/tulipgui_python-4.10.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ebb65f77eeec27c405b31aa769e61242", "sha256": "91e9acfc2b7759daed51f7f12bbd2029de6e57ca97ddb10a447d7ead540a6b01" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ebb65f77eeec27c405b31aa769e61242", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 46031084, "upload_time": "2016-12-08T22:25:26", "url": "https://files.pythonhosted.org/packages/e8/10/6d64302477c349fce3fdac35e0cb9d7ae799435fb5f7a9b9d52510761610/tulipgui_python-4.10.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa39adc37debf7e221d4eb62e6335fc4", "sha256": "f7707bfc507587e02ae439c8a9c1a1c98396eee82774374a06cf308d99df0730" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "aa39adc37debf7e221d4eb62e6335fc4", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26491866, "upload_time": "2016-12-08T23:38:04", "url": "https://files.pythonhosted.org/packages/e5/3c/2774241eda6e9a691fff5355780af57b58c5db604f854480bf6faa341592/tulipgui_python-4.10.0-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "02d186cde6aaa3440628fbc648913c4f", "sha256": "2a8b0a72b2a9f5c0d6921b42413e8374349a687a370f39ea69ec051e03852f8f" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "02d186cde6aaa3440628fbc648913c4f", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26678477, "upload_time": "2016-12-08T22:57:28", "url": "https://files.pythonhosted.org/packages/e5/8f/7527995b1441a4546a534887749577946831c9f2c8d76f80fb2e1a7658b0/tulipgui_python-4.10.0-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ac6316ca21b0768a86428e5e490040e3", "sha256": "28872566b139a12bea9136defddf458e34ac114a2291ba05caa287187901d0e1" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "ac6316ca21b0768a86428e5e490040e3", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 29304945, "upload_time": "2016-12-09T13:03:22", "url": "https://files.pythonhosted.org/packages/f3/89/07f03ab271c2edf0ebe3966bb7cc826e4184989ea1aa471889947af06050/tulipgui_python-4.10.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1f44b6c8efab4539cc718eacc014a4a7", "sha256": "8c8889069a4899b69778e98587a0cc6c6a8f5b6c4ea41f1440359800bbe0e72f" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "1f44b6c8efab4539cc718eacc014a4a7", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 29179891, "upload_time": "2016-12-09T14:21:00", "url": "https://files.pythonhosted.org/packages/e6/76/6381f5e94c62d317f9fb3757544f3a222f9dbc39ee763fdf69aae7be1d76/tulipgui_python-4.10.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "35dd6d282520f05a0f5d424c413de42c", "sha256": "09fc6a9803a1fd97e7b19e9b6be1ea791c3ff7a138c5359286dc65b766434662" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "35dd6d282520f05a0f5d424c413de42c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 46031083, "upload_time": "2016-12-08T22:25:56", "url": "https://files.pythonhosted.org/packages/cb/ce/4ac250ac18270c4d07b382cea2c3fd2e1f0db6af67339310e8d6409be07e/tulipgui_python-4.10.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f58cd38686f696bf1ca1eb05674079ba", "sha256": "554f439b41f97d0981a01a75e44449fe5dd3fcb4451fb11f0b28e9e826ee6990" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f58cd38686f696bf1ca1eb05674079ba", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26488017, "upload_time": "2016-12-08T23:38:16", "url": "https://files.pythonhosted.org/packages/0b/8c/4cd06af5ae9f3865792960fcaf7c9cf3e5487c883569fa4598d049aaaaab/tulipgui_python-4.10.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "c41b03cf3c25a84dd5ec76e9712a7f32", "sha256": "16595ab733d49205e767331c00f40ca361c719440fe91eba4470c6ddf3634c26" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c41b03cf3c25a84dd5ec76e9712a7f32", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26671923, "upload_time": "2016-12-08T22:57:39", "url": "https://files.pythonhosted.org/packages/a3/00/9d16b2f8bac220ca56eb56b1b109ca7b520ec8f79cbbf6a425f2b2641dfa/tulipgui_python-4.10.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0fe40f6693b69946a6875de823de7707", "sha256": "a5f1267f5b5fc3518f4352b00565317f6b2c1f2b362d9346522324209d42c352" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "0fe40f6693b69946a6875de823de7707", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 29304923, "upload_time": "2016-12-09T13:03:42", "url": "https://files.pythonhosted.org/packages/35/7e/3e6c78604be87241f9b661ab57538882385f2d59f2a7bb043ad63fb361a2/tulipgui_python-4.10.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "cec0f455f26aa1d4598d1bc7edafb934", "sha256": "a69985117b160e46bdbcf463d857e2ef5e7622c2a51bbb5bf5dee0eb2e5e83e4" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "cec0f455f26aa1d4598d1bc7edafb934", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 29179901, "upload_time": "2016-12-09T14:21:22", "url": "https://files.pythonhosted.org/packages/a2/f4/78b048d08a4907f7dd6abee9ac9f64caa09db29e364445efceca34d88025/tulipgui_python-4.10.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a957515542d66c031d7b32e01e189e75", "sha256": "732c1f5ddd867889b2c4a2f7f7b37157709d1e7455e37916e7dd67af75efd1cf" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a957515542d66c031d7b32e01e189e75", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 46031084, "upload_time": "2016-12-08T22:26:33", "url": "https://files.pythonhosted.org/packages/b1/93/7add1d85d6b10773481548fecb6bbbf7cc2d4a4f2a62ed81678d4b7782dc/tulipgui_python-4.10.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bf969ddb771b130b7babadfd725f17f8", "sha256": "c1634e97405d1443729c98265069dc04e1340661138da42e29984e0e7145c568" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bf969ddb771b130b7babadfd725f17f8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26491881, "upload_time": "2016-12-08T23:38:26", "url": "https://files.pythonhosted.org/packages/39/07/2bf8b6705ea3fbbedf713788b8c6861e588e6f261b3e14dd691ef431ee94/tulipgui_python-4.10.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4e6723eb0863aa429b6ef4007096556e", "sha256": "eb83d1393db6925e3090e47178391728d811189f47764707612eeeb01d4fc7e4" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e6723eb0863aa429b6ef4007096556e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26671822, "upload_time": "2016-12-08T22:57:48", "url": "https://files.pythonhosted.org/packages/ee/c9/075633c74a11fec20460438eca96e0ae7f48d6b0529bc4be58c453e224ad/tulipgui_python-4.10.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "53197b932a6b034c5ce29736ee1af984", "sha256": "025399a1a11cb7fc32e682880f17d965aaaa30d32011118d169f72ceb119b570" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "53197b932a6b034c5ce29736ee1af984", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 29304937, "upload_time": "2016-12-09T13:04:00", "url": "https://files.pythonhosted.org/packages/06/4a/3b370e52ebaccd7b813df90c27ef7a8b28514d45255fe7b3f4249ae3876d/tulipgui_python-4.10.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "29245c1d1a4df6c5b08de8bff55846f3", "sha256": "eef9f43e2c4e891ca4f3d8044d8b15f7384c53b529c29cc125ba3cf45d02e4e7" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "29245c1d1a4df6c5b08de8bff55846f3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 29179899, "upload_time": "2016-12-09T14:21:37", "url": "https://files.pythonhosted.org/packages/79/b2/c0b628e629918e82e1962c7c75f5b8528c6c3211e7c6ce30e51b25c6c7da/tulipgui_python-4.10.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0981d66657f364ffbe9c5b9b5b5140ca", "sha256": "305b773a8efcd6736b24fd5fe82dc9c5c4f57edb833bcca070031d0bd18a259b" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0981d66657f364ffbe9c5b9b5b5140ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 46031083, "upload_time": "2017-01-16T20:40:24", "url": "https://files.pythonhosted.org/packages/d2/36/7b098c900412255219249473c8ad598be56a1d44ccecee7a9aeb6402c1eb/tulipgui_python-4.10.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "54fe7a1ecfe52b160d8b2297e24d340b", "sha256": "c0299e27cdaad7ede3fb020c5a20b447ecc07199ea46e42043115d7ea87b7e46" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "54fe7a1ecfe52b160d8b2297e24d340b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 26734823, "upload_time": "2017-01-12T21:26:50", "url": "https://files.pythonhosted.org/packages/e5/ae/a7fe41d3594f9622cab9148e7653abbb7a185211379cdb46cef9063b5a8c/tulipgui_python-4.10.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "49dee8d49633296ed9654e1565d4b8e3", "sha256": "b8a47e4ebdc680dfdc8376385f1b6892b917b9ba35b13e0fd8ba0935041190bb" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49dee8d49633296ed9654e1565d4b8e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 26927543, "upload_time": "2017-01-12T20:25:45", "url": "https://files.pythonhosted.org/packages/03/bd/283c2618047e06455db002cea549afdb3e7dc5c89ea8f9a1353cd146f6aa/tulipgui_python-4.10.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8c80ace20c4f692acf6f0f3e51380cea", "sha256": "33636083ba1da1e8011687e6ae57491b90fa440aa4881b9eba1114b8a8b8ca7c" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8c80ace20c4f692acf6f0f3e51380cea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 29304844, "upload_time": "2017-01-16T23:39:01", "url": "https://files.pythonhosted.org/packages/b3/93/df3eb55f1c4d9b083356ac845e2497fa43c5e52bd448b338cc30aed94165/tulipgui_python-4.10.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0bb5ff1885419807d94e0c8680fc5962", "sha256": "5d7a10bd7cf6b6ebc3e112094f4d90d25abe846fc3cb0e01b9b0326cdf831f30" }, "downloads": -1, "filename": "tulipgui_python-4.10.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0bb5ff1885419807d94e0c8680fc5962", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 29180584, "upload_time": "2017-01-16T23:43:29", "url": "https://files.pythonhosted.org/packages/69/3d/a219e6600ad790bf50725814136c9089d0e0ec7583034041b851e1603bf5/tulipgui_python-4.10.0-cp36-cp36m-win_amd64.whl" } ], "4.8.0": [ { "comment_text": "", "digests": { "md5": "5b4080b507abc17f0bdcdf2a7f3d33cb", "sha256": "d314009bfebb52a87c6b503a8312bcb2eb5cd4da8df28b528005cfaf9bce1561" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5b4080b507abc17f0bdcdf2a7f3d33cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 46363119, "upload_time": "2015-10-15T21:35:48", "url": "https://files.pythonhosted.org/packages/ab/c0/ec7a80cc36e206da2d1a88e943d640e184657ef79365be67ce099909232a/tulipgui_python-4.8.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b80d66b780c1c02b6a54c1515ac263a3", "sha256": "da0b5dea0f83a676f115d302da0d530cd4a409b045f053da9fac446b63ba3423" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp27-none-win32.whl", "has_sig": false, "md5_digest": "b80d66b780c1c02b6a54c1515ac263a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24618486, "upload_time": "2015-10-15T20:46:50", "url": "https://files.pythonhosted.org/packages/08/0d/03c91f8fb34d945dd33a1869d550ccdd1508666547a1062fdbdfa6ab872f/tulipgui_python-4.8.0-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b769674d70112febcccb9b3ddfe8617e", "sha256": "6c0c245c1e6d0f37a66515b97a68108fd945b7cd0633e1bab7d35085841ef23b" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "b769674d70112febcccb9b3ddfe8617e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23798510, "upload_time": "2015-10-15T20:29:18", "url": "https://files.pythonhosted.org/packages/90/c1/97227ffee19e309db6daa68e9a6d6ef976baa68b78b4bba0e2a218082e99/tulipgui_python-4.8.0-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d2707c17bf7ab56c681afcfa3e1b2784", "sha256": "26c6c8b01fa14640c4d7599d6261c69f26b72e35d37200fb4f8337cd55e7d2ca" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d2707c17bf7ab56c681afcfa3e1b2784", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 46363453, "upload_time": "2015-10-15T21:37:23", "url": "https://files.pythonhosted.org/packages/7a/5a/0c60247115f0b0eb730ab3fe99378a29a2bd33c77047a051bea71733280e/tulipgui_python-4.8.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c6929b3664aa768f0a105078386d0a0f", "sha256": "e6bf367ef0216441a58c18b73f7a5f808d8a52603432fc6265aadf9f84dcd2f1" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp33-none-win32.whl", "has_sig": false, "md5_digest": "c6929b3664aa768f0a105078386d0a0f", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 24614356, "upload_time": "2015-10-15T20:47:47", "url": "https://files.pythonhosted.org/packages/c0/56/aa5fed8130a40f0b15c01733a783440b4f728887e2168743e03341b07b47/tulipgui_python-4.8.0-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "637e15210f23c5f0895cc876166c21cb", "sha256": "1c99705e1eae7b8d242ff48049fb5692df8240c122c5d7fdd7e2e336957588b4" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "637e15210f23c5f0895cc876166c21cb", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 23794346, "upload_time": "2015-10-15T20:30:49", "url": "https://files.pythonhosted.org/packages/c5/82/88546f8df48f2b5ab839a6477fd27dbf14a1d1e56ff8f4c54be27672afba/tulipgui_python-4.8.0-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "866485e34bb49f18f1e15c5f23469cc5", "sha256": "4777ae5274ef75f0bd13229cfecbff4c4e9e878003eb8c707512d81c7727ee90" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "866485e34bb49f18f1e15c5f23469cc5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 46363453, "upload_time": "2015-10-15T21:38:27", "url": "https://files.pythonhosted.org/packages/ea/64/89692a319771e347e7d3e251fc5441a133a1c9bfd9fb0d007aafeeea22da/tulipgui_python-4.8.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b1d3bfcfa669cfc45bcca6047a025512", "sha256": "12b81f6e1515719091fe5fce38fa26dac92ab71d3dc15083202995f4f63e6cca" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp34-none-win32.whl", "has_sig": false, "md5_digest": "b1d3bfcfa669cfc45bcca6047a025512", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24614359, "upload_time": "2015-10-15T20:48:24", "url": "https://files.pythonhosted.org/packages/66/35/7b29607197da1bf44aaca0c1cbe2e217cc35dc51b6bdf1766bdf27fae50c/tulipgui_python-4.8.0-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a50ebcbe8ac910e0fc4a481dd5274a06", "sha256": "5a7c640a62a72f38158637ecc1c583a771a48c9a163a050cc47f48ee0d80df76" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "a50ebcbe8ac910e0fc4a481dd5274a06", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 23794334, "upload_time": "2015-10-15T20:32:40", "url": "https://files.pythonhosted.org/packages/2c/2f/f95c08e3d6ae240ba2621fdf8b6f34c5785f35f650dabd5dcc35fe40a2b6/tulipgui_python-4.8.0-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f058e02b5899d5bdde98da96151c5170", "sha256": "89d2a961f090b939d112d6869e9082b040b09cd04a823d897dcc904df9354b9a" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f058e02b5899d5bdde98da96151c5170", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 46363453, "upload_time": "2015-10-15T21:41:36", "url": "https://files.pythonhosted.org/packages/ea/be/8f26e1c16b08d26c29503aa6c3ca98e3de2fe2ff72cf55fc44dff12274f9/tulipgui_python-4.8.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7bf7c40e01516e744530f4614eabd5a8", "sha256": "bf3fb5e9f376d0cc4de4879ddc3949766925c3b448f3962b4016212c09025e46" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp35-none-win32.whl", "has_sig": false, "md5_digest": "7bf7c40e01516e744530f4614eabd5a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24614356, "upload_time": "2015-10-15T20:49:07", "url": "https://files.pythonhosted.org/packages/8f/1a/68a60f3173009102a126a6e6a8cb6e87d4673aecd39fc07b3569d5e7b62c/tulipgui_python-4.8.0-cp35-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3fe3ab2e96f175c65d01f49c47b6b979", "sha256": "e50f9166adb04258fd3ba47ba9c59db9add531bfaec63b95ce8ceb15452f2a28" }, "downloads": -1, "filename": "tulipgui_python-4.8.0-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "3fe3ab2e96f175c65d01f49c47b6b979", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 23794319, "upload_time": "2015-10-15T20:34:04", "url": "https://files.pythonhosted.org/packages/6c/35/e137861898b920e4d53080ebc449f68025f919c238a676d2f921c0e48283/tulipgui_python-4.8.0-cp35-none-win_amd64.whl" } ], "4.8.0.post1": [ { "comment_text": "", "digests": { "md5": "f04786d1871b7124a0b4693559b2213e", "sha256": "9bf994dd845e225ea441bbb280907fd1df79c1c28fd0c0dfdfddd34d79bfb09a" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f04786d1871b7124a0b4693559b2213e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 46156410, "upload_time": "2015-12-03T00:33:35", "url": "https://files.pythonhosted.org/packages/35/cf/79ae567c3b80b3959bb499f8db0250ea831cfd47515a579af2b6cef90052/tulipgui_python-4.8.0.post1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4c9c689e5d68122be816e1244e89419", "sha256": "f4103d9d3e7f28156dcd0d275045e4a45ae86f3f07ec7e4eef17e939eaf3ebd0" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "c4c9c689e5d68122be816e1244e89419", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24632420, "upload_time": "2015-12-03T02:05:34", "url": "https://files.pythonhosted.org/packages/67/8b/1506baa1902a4ba19c488977d642c95a8438dc8319767ef7035aac8bc862/tulipgui_python-4.8.0.post1-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "dea7be8901d48a8aa50bae513409c6a6", "sha256": "5029e6ecc37ecca81fd22721398cdce336e74d3d3eb619d94603ec61832770c3" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "dea7be8901d48a8aa50bae513409c6a6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 23813559, "upload_time": "2015-12-03T01:41:14", "url": "https://files.pythonhosted.org/packages/00/27/d0377c394d3ec2828836a5f5d558be95e8cce7b986dd8e32cd3239bef76e/tulipgui_python-4.8.0.post1-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c783493d0af13afdb1ba88868cb3c7ba", "sha256": "57a1023def39f8a443dc0669e56ae30ace4c1880edfa7a04fccfd238e6b7b792" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c783493d0af13afdb1ba88868cb3c7ba", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 46156654, "upload_time": "2015-12-03T00:34:27", "url": "https://files.pythonhosted.org/packages/9c/6d/6e8e85c1e99a23c08b64b7010a00dea373fa5f0adee4e6ebc9aec1af89a6/tulipgui_python-4.8.0.post1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f741b42e93fd88d7143fd18000085f68", "sha256": "073102196c1efef7673b9ed31406f6277ae6e9b6e431c9d07c89eeb719060a17" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp33-none-win32.whl", "has_sig": false, "md5_digest": "f741b42e93fd88d7143fd18000085f68", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 24628030, "upload_time": "2015-12-03T02:06:15", "url": "https://files.pythonhosted.org/packages/26/13/b27fb05be8652481eb7c3e00b8ee8399c166eaf177ebbcba19b4e4244d03/tulipgui_python-4.8.0.post1-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "f2e8b3ba9ac5a03b33368be88f7af66e", "sha256": "d09fea6c68568dbc91b988a69de725a42295ea052e1749f81af0822ad28903ce" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "f2e8b3ba9ac5a03b33368be88f7af66e", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 23809130, "upload_time": "2015-12-03T01:42:23", "url": "https://files.pythonhosted.org/packages/96/40/8ab99ba2a8f89a2210a55b74295ba981a1afa0b65a0c9850e9e600b9232e/tulipgui_python-4.8.0.post1-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "09d316a5fad871cbc36936c8ed995206", "sha256": "916ae9f47fbcf74a4f31e177e530c578b804d7e121fcb9f9294f230b98977c40" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "09d316a5fad871cbc36936c8ed995206", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 46156655, "upload_time": "2015-12-03T00:35:20", "url": "https://files.pythonhosted.org/packages/82/59/1cfea88999288513bce60705cc63a5f4722796b3d1b9a4cea488232c005a/tulipgui_python-4.8.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "965891a539c0e2c967f696ab898a20a1", "sha256": "2643738f979aae1b085c8978a8760662a7eefc52e28f45c02033f2dcd78174d8" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp34-none-win32.whl", "has_sig": false, "md5_digest": "965891a539c0e2c967f696ab898a20a1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 24628028, "upload_time": "2015-12-03T02:07:02", "url": "https://files.pythonhosted.org/packages/f6/ae/e66797e8c5d60fc653354ef1f47b860703c631419f591f8593e70343ff86/tulipgui_python-4.8.0.post1-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "08c9c505e4bb5f0a340e95bc9d20303b", "sha256": "596fdbfbe38d53684b599edb6ddea727e217a7fb34012bb27678b16572ec0155" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "08c9c505e4bb5f0a340e95bc9d20303b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 23809125, "upload_time": "2015-12-03T01:43:21", "url": "https://files.pythonhosted.org/packages/49/37/c3175d9b9b67b0dccf843a8fae8373171ef3de128a49717695b0f1a494f8/tulipgui_python-4.8.0.post1-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "60d655884cb2323004fc4643e1e04438", "sha256": "17727a9eda345ae95029701ca2a43f4150d9450c2111f45001dd0d04da6aa2f5" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "60d655884cb2323004fc4643e1e04438", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 46156654, "upload_time": "2015-12-03T00:36:10", "url": "https://files.pythonhosted.org/packages/14/5f/7275500e2f63644f45d650948bd72f90a07e4b1f87cee7f9d70f3641bb4a/tulipgui_python-4.8.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1e76816b8b9a598d96f3925f64f65ab4", "sha256": "b80e4cac7e5834ca1795fc941dd326220f0476b9e7cad34075bae69004fa20a0" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp35-none-win32.whl", "has_sig": false, "md5_digest": "1e76816b8b9a598d96f3925f64f65ab4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 24628034, "upload_time": "2015-12-03T02:07:39", "url": "https://files.pythonhosted.org/packages/b6/c7/80458f2839cd9b75b48bcac2792c9fb65b83bc016097f7d112c7c197b390/tulipgui_python-4.8.0.post1-cp35-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "973f1b30440c0fbe1a6dad2f17974df5", "sha256": "fcca7ee1e83d49366661982be0ee28dbcaf1afd0e54d0b3d0d49f0c2f6918b53" }, "downloads": -1, "filename": "tulipgui_python-4.8.0.post1-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "973f1b30440c0fbe1a6dad2f17974df5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 23809115, "upload_time": "2015-12-03T01:44:09", "url": "https://files.pythonhosted.org/packages/d9/f9/8edf0fa6ac942b0d72c98716d14ca174e14a37fe38df21a24287501ef1d4/tulipgui_python-4.8.0.post1-cp35-none-win_amd64.whl" } ], "4.8.1": [ { "comment_text": "", "digests": { "md5": "ccd1e78ab251bfcb40081e9b109547e7", "sha256": "25eec23be88b56401537c908ba7db713a459082c092821c4a59084d251e42e99" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ccd1e78ab251bfcb40081e9b109547e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 45712066, "upload_time": "2016-02-20T17:01:32", "url": "https://files.pythonhosted.org/packages/c9/d8/f0ea833f57baad33c5f5a056b7448ae1c96969976ca1e31734ef64d95148/tulipgui_python-4.8.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ea9a11a0286a990e91d278b4d13ed5b8", "sha256": "c9d4b7eb25383aeaa9267f9a1d81226d463d2ad2eb6e57af05859b548d52bb76" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ea9a11a0286a990e91d278b4d13ed5b8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27151157, "upload_time": "2016-04-11T19:58:55", "url": "https://files.pythonhosted.org/packages/6c/0a/5bb35c7e233b309c959a8976b6988ce82c94f1eaeac61b86e6c5e676c2d2/tulipgui_python-4.8.1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b1125089f3f8a459479e931eb19ba1b1", "sha256": "177f91403baeafe52ef94d37fbf9fdccabc8ba331b9bea5f36c641d46b9eaa5a" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b1125089f3f8a459479e931eb19ba1b1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27330523, "upload_time": "2016-04-11T19:56:07", "url": "https://files.pythonhosted.org/packages/bf/5d/00c0ebb2c7b102e3c0c24a4cdcd883d168230b5a3b58b26456f3c24b9408/tulipgui_python-4.8.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "966b76bd03fb328790c5d7ca7b29f1e0", "sha256": "47e100f149065acc586cc4fa11a777612d703dcd3c563eca9b455b88a359ba9b" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "966b76bd03fb328790c5d7ca7b29f1e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27151055, "upload_time": "2016-04-11T19:59:29", "url": "https://files.pythonhosted.org/packages/4c/d2/3ab3b874f92fe08baa8d6ff6861a35cebc58878022f8bb1e1ac902176e80/tulipgui_python-4.8.1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4054520092e6aac7d59a5caea7375ccf", "sha256": "9806faba36a0850b243b6067535dd329757e490bc19e11a9d83a004760296af2" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4054520092e6aac7d59a5caea7375ccf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27330430, "upload_time": "2016-04-11T19:56:37", "url": "https://files.pythonhosted.org/packages/10/14/76ad0b54b76d72e466d7f64adb1ca8b8d41f0f134ba7631a047d222a4d6f/tulipgui_python-4.8.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9325038a1921318edda51f9bc6d51c59", "sha256": "dbb27ab4eb2d530bc5225dd15ffae14cd61799818905f99314f8cd9577f24b0b" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9325038a1921318edda51f9bc6d51c59", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26360952, "upload_time": "2016-02-20T16:33:51", "url": "https://files.pythonhosted.org/packages/e0/90/48a37b3d5be82759f5c97ccccc86c5924acb4edc0d644217f8aeb43ac1d6/tulipgui_python-4.8.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2772bc2ec6fb84c808bd4c95ecab02da", "sha256": "9b5be384f0c29e03dd867314b5fea1bfe74b1d7744fcd071995230eb87af6c24" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2772bc2ec6fb84c808bd4c95ecab02da", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26066467, "upload_time": "2016-02-20T16:13:38", "url": "https://files.pythonhosted.org/packages/7e/bd/cbe8850bccf74872812ed8361373de5734638ccdf6a8516c1f02e7c9bfc1/tulipgui_python-4.8.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3dc75a88df162dbcb50df24bc6b86155", "sha256": "34d9bd539a93fbb3cbdbb65cd90be18560aa9a3434ff0227a9f97102731e8062" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3dc75a88df162dbcb50df24bc6b86155", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 45712307, "upload_time": "2016-02-20T17:02:25", "url": "https://files.pythonhosted.org/packages/43/c7/d37c57ccb2e9b0e05f83b5772aeaff96bf13f653e420435aac395c60ca31/tulipgui_python-4.8.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "886a8b44c50fa65c8d00f6c16c13688c", "sha256": "ecff3484fcba6d067189055e1f0701001f2f8501a66c4f74f71d9a53b37b5566" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "886a8b44c50fa65c8d00f6c16c13688c", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 27151127, "upload_time": "2016-04-11T20:00:03", "url": "https://files.pythonhosted.org/packages/fe/d9/a2b58b9284f284151a132bb3e27ca089ae032f1d80708de1a2e90cffe083/tulipgui_python-4.8.1-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a0f7aafd9f31a45777f488f529bdf7b6", "sha256": "2a45b449eb9d9db6df4c676eb68ae0eb347d735a315882c664d25fea4baf55a3" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a0f7aafd9f31a45777f488f529bdf7b6", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 27330513, "upload_time": "2016-04-11T19:57:24", "url": "https://files.pythonhosted.org/packages/81/da/7c82ace3101c761c7e4ce292522e569ef0b6c2effd70f161f51f69da3fef/tulipgui_python-4.8.1-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0fa0d3cc15afc44677bddd038d7477e3", "sha256": "093dd940fd4af682d0606602799ae05bf029718c60d58a29f0825400b7279cec" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "0fa0d3cc15afc44677bddd038d7477e3", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26356445, "upload_time": "2016-02-20T16:34:24", "url": "https://files.pythonhosted.org/packages/84/29/d373132eb0768e48bb8d71a1cbeed921d0592a194728ea96b43d4e2fdda7/tulipgui_python-4.8.1-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "799444f2bb933895736f599674ec2979", "sha256": "c9c2a760b2e117e4475c90c446c06177d7111e2e49d8dad2577fcd5d13ae5d2f" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "799444f2bb933895736f599674ec2979", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26061919, "upload_time": "2016-02-20T16:14:07", "url": "https://files.pythonhosted.org/packages/0c/65/3faed53c2d0fcbd5584eb1c51d4da1bf5986adac777ca3f8fa6c0c154da0/tulipgui_python-4.8.1-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4a963000cee3ed6eef21ff4b1969eef2", "sha256": "ed8b3f3b8545e68950b219549b639aa30a5d6b5804cde73ea6fcc33785461820" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4a963000cee3ed6eef21ff4b1969eef2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 45712307, "upload_time": "2016-02-20T17:03:04", "url": "https://files.pythonhosted.org/packages/76/e3/492ec0631f3209d1444f37e7a98d15c2d5547c373eb9f55fbdc78ba52d26/tulipgui_python-4.8.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b52f114d9a5de3868ccea3e1889d4150", "sha256": "dcc87f4e2e0d88e84d1c822c0073827eda6b02835edaf1de5a5b5feaf521180e" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b52f114d9a5de3868ccea3e1889d4150", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 27151082, "upload_time": "2016-04-11T20:00:51", "url": "https://files.pythonhosted.org/packages/b0/9b/aeb1eb683e77dfe0acf2c7a537fd1b661d6e9c65347b1261684de144e279/tulipgui_python-4.8.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "632522dedfce58a9a62d27d3b170025a", "sha256": "d83bb8092254da2f47538af7e03c08b0bb12bdfd0dc39b34ebfc78428be9a5ab" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "632522dedfce58a9a62d27d3b170025a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 27330532, "upload_time": "2016-04-11T19:57:51", "url": "https://files.pythonhosted.org/packages/40/fb/8c309b44d07a4473cd67fa6db7309a8ca58e9e372a3bcb55e31488d30a45/tulipgui_python-4.8.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2a7826f8908b991f81260eed3eca5eb3", "sha256": "f12960d88b9ccaf7ff734e4e1b7e4ad6acefd2e2865de83511c1c26d8f7d6fef" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "2a7826f8908b991f81260eed3eca5eb3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26356457, "upload_time": "2016-02-20T16:34:47", "url": "https://files.pythonhosted.org/packages/61/8c/9c927ac27ba95ed30ad946a7238197bf88b010680fa7034572d4b6cd4532/tulipgui_python-4.8.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2224b62971c5e471ccc28b8e23255b2e", "sha256": "08b00a0478d5afb8cdf8883881ee65b7da93491b17c33292c9fe9e8fc998c792" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2224b62971c5e471ccc28b8e23255b2e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26061943, "upload_time": "2016-02-20T16:14:43", "url": "https://files.pythonhosted.org/packages/99/99/5c4a2a896fc3b30c570d5907df5ed6fc04d22534f3a88d7ea7de809bd151/tulipgui_python-4.8.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d75d33f1dcb85ace4f64bc6d75949c8c", "sha256": "039bf4927890aba55df9b20bca39c0bc04b9b44bb260d1cbeebc6c8488e18dd9" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d75d33f1dcb85ace4f64bc6d75949c8c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 45712307, "upload_time": "2016-02-20T17:03:41", "url": "https://files.pythonhosted.org/packages/e7/23/d5c8d803fc52f0e6ca5886200595ddc6e1ec236cd63f9e26f8a52a746ba0/tulipgui_python-4.8.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "63f2c03249cb23a455085e036042f9fe", "sha256": "580613e82e62e0f16f650969d2f268dd97e17666abc5226619d13c81f36b5c0e" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "63f2c03249cb23a455085e036042f9fe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27151221, "upload_time": "2016-04-11T20:01:19", "url": "https://files.pythonhosted.org/packages/32/66/2948805ea82907f735279075ec5e130e9f7a16aa7216bca596cbb1ddc731/tulipgui_python-4.8.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "3880546369bb4d23ffb56f47508c7604", "sha256": "ec503c3e24aaafba600da177da2792011cd51d86afdc4a7588fabc7525c6fd98" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3880546369bb4d23ffb56f47508c7604", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27330438, "upload_time": "2016-04-11T19:58:15", "url": "https://files.pythonhosted.org/packages/8a/b1/3c3add48903a46474d9e441d55514046ec0df075276ee21972d49b0607eb/tulipgui_python-4.8.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9b3d77e66c2ad668308aee91af37bfe1", "sha256": "7f955d6b40638d8f9ef4adc1e64489226c6d883249a3d68871cfe84a129e059b" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9b3d77e66c2ad668308aee91af37bfe1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26356434, "upload_time": "2016-02-20T16:35:10", "url": "https://files.pythonhosted.org/packages/fe/02/21f1265493350e7d9add80cd131abc7332da29f877c817a5e852f77e102c/tulipgui_python-4.8.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bdda8e62b54fb0e42459abd740474e06", "sha256": "f4b06652dcd4ded9da3919c316c21ac5e6ddce0b3fa7ed9787fe985c99451c05" }, "downloads": -1, "filename": "tulipgui_python-4.8.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "bdda8e62b54fb0e42459abd740474e06", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26061934, "upload_time": "2016-02-20T16:15:10", "url": "https://files.pythonhosted.org/packages/bc/cc/f0ab101c7529553de5bab02b9f1986cdbc2da8e19cd40154a9ffa23c062a/tulipgui_python-4.8.1-cp35-cp35m-win_amd64.whl" } ], "4.9.0": [ { "comment_text": "", "digests": { "md5": "19fbfe0f7a4a1f13276e7625a42a70d6", "sha256": "5594b58551f89e9c5894f3d885c4c1aa4cdd537dc537d0ae3ae13a1b244125fd" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "19fbfe0f7a4a1f13276e7625a42a70d6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 45694189, "upload_time": "2016-07-09T23:10:36", "url": "https://files.pythonhosted.org/packages/7f/f2/4487b50dda25ebb531493e997c5f35ab993a61a494dc543c29903fb4acb0/tulipgui_python-4.9.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4ed3ae3d34c346d72640a63aa33279c0", "sha256": "b286edc8a2d76ea097abfb1e4c5b2efbebf2c60569bf24d72421bc3c68d70bad" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4ed3ae3d34c346d72640a63aa33279c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26613552, "upload_time": "2016-07-09T21:48:32", "url": "https://files.pythonhosted.org/packages/5b/25/1aa9966580d4ece410d44bfb01a9b0f5ccb6feb57194362b172ae132c819/tulipgui_python-4.9.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9d18c0a5f548fdee30108f65bcf112de", "sha256": "e1356bbe8c7b884bb49004e1f54e1fc90243d8c9d6778f46511ba8b967e24c6a" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9d18c0a5f548fdee30108f65bcf112de", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26800260, "upload_time": "2016-07-09T20:38:09", "url": "https://files.pythonhosted.org/packages/38/0a/e375884fa9575bffb0734d310a62a0e6b77e9698bff62eff4a109fd6fc0c/tulipgui_python-4.9.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0611ee999bcf3d0a3ad79fb623ec9281", "sha256": "5217c15e39bb43e46a5ff22ed7c84d6ab0c7ccff59af7dd4914acb840cea2b9e" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0611ee999bcf3d0a3ad79fb623ec9281", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26618873, "upload_time": "2016-07-09T21:48:45", "url": "https://files.pythonhosted.org/packages/22/7e/7cded5bf0ef828bb853d3d20e5ec958d400160dff50aefb112f3715550a9/tulipgui_python-4.9.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "3eb98c18be8dfe536031a9be2db80466", "sha256": "6489310bb37e115e54a35dec1ad81285cddddfab93c84a9f36d3b919018055ef" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3eb98c18be8dfe536031a9be2db80466", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26800070, "upload_time": "2016-07-09T20:38:25", "url": "https://files.pythonhosted.org/packages/88/d2/7dbe8acba26f7b68d9063e8c0b3082e9efd72d75aa6bb2cf8c2dcda8331b/tulipgui_python-4.9.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d134578ac048dd96f2e192f5303c8a0d", "sha256": "e51232b6bcdaead3b7566e4d88a34453518225b3b9ab9ab524c871e5dd4919f2" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d134578ac048dd96f2e192f5303c8a0d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18147677, "upload_time": "2016-07-10T01:10:58", "url": "https://files.pythonhosted.org/packages/a5/43/02dc34a0a9cf50d83e8616c2fa2474afa216b137e15b0e18e9a9a3f752c2/tulipgui_python-4.9.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "26d491466b3bd5563903aa3a743cc80c", "sha256": "a9f9ba08d13e94de5da137d3ba553d1f5efd942ef715fd60c144da5857a7ca7a" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "26d491466b3bd5563903aa3a743cc80c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 18172384, "upload_time": "2016-07-10T00:51:09", "url": "https://files.pythonhosted.org/packages/e1/91/ffc4a9b2dc22bffbf0de39c94a8a59293de9d29df646030207244fa9255c/tulipgui_python-4.9.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8c611db74856cf3bb7cc3cdb009138ec", "sha256": "1437661031ec89b5ac1d70739e4845e00694ea8eb605b9a48867c0b802b057bb" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8c611db74856cf3bb7cc3cdb009138ec", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 45694437, "upload_time": "2016-07-09T23:11:01", "url": "https://files.pythonhosted.org/packages/3e/74/9b7d20cf5a5ae127779fc1e1681e6c9b082bbff6499abfabfbcec6c020a4/tulipgui_python-4.9.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "934ea1c87e068a07c757c4134d264496", "sha256": "171c2fddbc7f3f1025a1916f91d64ad2e66713a0a337a6b4bf8c4dffdc6e18ff" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "934ea1c87e068a07c757c4134d264496", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26618942, "upload_time": "2016-07-09T21:49:04", "url": "https://files.pythonhosted.org/packages/cf/d2/d3e4ef81a40636e96c6877362163748883dc81e736628ae6b956c50da667/tulipgui_python-4.9.0-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "90c0aec1a434ee9ba6b141bf010b5f53", "sha256": "c516ab4da1efcb1c07cbb0ba0399ce1340b9ad523caa9034310d57ee40dc38a1" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "90c0aec1a434ee9ba6b141bf010b5f53", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 26800355, "upload_time": "2016-07-09T20:38:39", "url": "https://files.pythonhosted.org/packages/ba/a2/eba3240790184d6e275eeda5d52c577106e1343fd9b45d92b6c85c5f41d7/tulipgui_python-4.9.0-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "92e696fb6679fe53e00c9d57c7f23999", "sha256": "67a12adf6436273c56179cebe4da8e87520dfe53c349ed9b9c8f1f5ed8fb2bba" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "92e696fb6679fe53e00c9d57c7f23999", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 18143143, "upload_time": "2016-07-10T01:11:16", "url": "https://files.pythonhosted.org/packages/33/72/d381c0cfd66ecd9e86e2c948ca80b28abb2f00ade7eefd7482acbc0e8a2b/tulipgui_python-4.9.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "52e5957aab66f7b6fc2123ebf7024c00", "sha256": "5e1d257e8985a8fd7e7c92c61d8de7b4e3e1c75d8a0ffcc97b29a81f3b5a4fa8" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "52e5957aab66f7b6fc2123ebf7024c00", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 18167840, "upload_time": "2016-07-10T00:51:21", "url": "https://files.pythonhosted.org/packages/27/96/806f2e9fe0d4395dbe05a50fbd5c0c4a9c46b4127b793827bb1e27d76c18/tulipgui_python-4.9.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "729acdaed05af68aa4f5364c91f46458", "sha256": "baf669994dd16841cded69664abda595634749aade8c0050ba49ffcb637c9d1a" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "729acdaed05af68aa4f5364c91f46458", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 45694437, "upload_time": "2016-07-09T23:11:24", "url": "https://files.pythonhosted.org/packages/1b/ae/b458445929427f3a056f895e49d15c5acbff278c63985f422dad67d90441/tulipgui_python-4.9.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f5c95c3b9ddfbc45cfc2c940c3309dd9", "sha256": "2761717f2075f7e92c71c5ce91cb5146ded7a14a800a817986a52db5172d7287" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f5c95c3b9ddfbc45cfc2c940c3309dd9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26618762, "upload_time": "2016-07-09T21:49:16", "url": "https://files.pythonhosted.org/packages/b2/5d/7dbd9b5015e72bfbb78765f0c2b03fd5934f79d131bfe708b5bc7cc2291f/tulipgui_python-4.9.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cab7da952a42697147903839e2cac0f8", "sha256": "ce968df9a135a9a68b9b798cb34f077ea14f76006758b31089ecb0d14e987659" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cab7da952a42697147903839e2cac0f8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26800273, "upload_time": "2016-07-09T20:38:51", "url": "https://files.pythonhosted.org/packages/f8/33/19a871d0b340d511e372236bcfa14ea1265bd10709a9954f3cc24e2647b6/tulipgui_python-4.9.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "de39f277e09ed81edf645c001bdb37f9", "sha256": "93b1eb101cfff7b28af35226f64c59c7715287b147420a062e7e18c350b19be4" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "de39f277e09ed81edf645c001bdb37f9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18143150, "upload_time": "2016-07-10T01:11:27", "url": "https://files.pythonhosted.org/packages/aa/b9/0fe4eea5d45201e9fe491206b9759cd5b121531ca6cad597bf0d13fcb101/tulipgui_python-4.9.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4a9edecd8eb63597ac5fcd3bd1ef927f", "sha256": "7c73329e35fadf5336051cced405d91b05aaccfb011ca1179e10b9c7175585a5" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4a9edecd8eb63597ac5fcd3bd1ef927f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 18167837, "upload_time": "2016-07-10T00:51:36", "url": "https://files.pythonhosted.org/packages/39/5a/dad1bdf2d308a8aa4b8417d99ec5c1b6854532a6b3ee20d229b3d800bc23/tulipgui_python-4.9.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "32e675edb8fd42e1d5c00a5f3f3ba2a2", "sha256": "7a3e8f258e35c0cad453037bdeb7c6dcd56b07e7227b062c705366cafcfc01b0" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "32e675edb8fd42e1d5c00a5f3f3ba2a2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 45694437, "upload_time": "2016-07-09T23:11:44", "url": "https://files.pythonhosted.org/packages/6f/b9/f51c30124f6d8153f383031ac5f1d2fe5d61cf9ddacffe1b08e0cee0bebf/tulipgui_python-4.9.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4cbc9486d5121b8d035f3958adf9f117", "sha256": "2a43c5c32d1047e9e1640d5f021612f04f1773b5783b894f0fbbb114853b3af5" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4cbc9486d5121b8d035f3958adf9f117", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26613624, "upload_time": "2016-07-09T21:49:27", "url": "https://files.pythonhosted.org/packages/46/6c/6264ac0f23e6fb681f002c4ad9808e213aea10a41292252ceae2cd639c6c/tulipgui_python-4.9.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "608debbac9fab7beb2ba0e9ebb600cc5", "sha256": "f962977ab6812f11b6519a952d99b5f47dd9ac767d117a3b4c24517765c30a40" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "608debbac9fab7beb2ba0e9ebb600cc5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26806858, "upload_time": "2016-07-09T20:39:04", "url": "https://files.pythonhosted.org/packages/31/fb/b69655691bb56d94497ed90824228d691621d15147674c5e6ccb86ffc99c/tulipgui_python-4.9.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "26c8d783bfd438e6194ad5bd69ce4bcc", "sha256": "b754f717a4de60b8522c444ce4df6f69487cf6263b0dc0b40fbbf53cbb3490e3" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "26c8d783bfd438e6194ad5bd69ce4bcc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18143158, "upload_time": "2016-07-10T01:11:37", "url": "https://files.pythonhosted.org/packages/bc/da/b92e0248b5b468fb922605a9ee5274236c1980d0e50a70f8ae773e1fe191/tulipgui_python-4.9.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d81b45da8337948b9a302a5a9c1c9cc1", "sha256": "3ae5f8169415ee69bcddcf5b99038f460584bd9d6bb4906c16489b747ffbcc03" }, "downloads": -1, "filename": "tulipgui_python-4.9.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d81b45da8337948b9a302a5a9c1c9cc1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 18167815, "upload_time": "2016-07-10T00:51:50", "url": "https://files.pythonhosted.org/packages/dc/43/826a2f0292d0a42a127fdbe8a8c4e1d331cd4d96cace647661ab1522a92b/tulipgui_python-4.9.0-cp35-cp35m-win_amd64.whl" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "8b60332c3cd849cf37c6d2e7abbf5123", "sha256": "df4f0930e4cfacd173cb553afc69472dd53de21fc28ab8502a4c543825ce8b9c" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8b60332c3cd849cf37c6d2e7abbf5123", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50500525, "upload_time": "2017-06-27T21:08:50", "url": "https://files.pythonhosted.org/packages/15/75/3235d60104d63c6c6dfb6cf45cfc886f95bfa95b3347ff122e088bdf38e1/tulipgui_python-5.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83ce45e25c3f6a97f53ba7aa33c0ce7f", "sha256": "e684b2a310717aea53f568405492dcbb671788950f2ae3b047693affc6ddf0c7" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "83ce45e25c3f6a97f53ba7aa33c0ce7f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27541454, "upload_time": "2017-06-28T23:26:18", "url": "https://files.pythonhosted.org/packages/18/d8/ddbce03abce585b060bef16967ebce38f4a55e4d634564931ae026baf2d5/tulipgui_python-5.0.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "95d6905c9374bed686d0bdf4cba110f8", "sha256": "d7a02d8d40e7d4d2445b5870416f332b0d1395fb23066063b2a82afdf7d7d359" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "95d6905c9374bed686d0bdf4cba110f8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27734127, "upload_time": "2017-06-27T23:49:49", "url": "https://files.pythonhosted.org/packages/b7/7e/0177d0bfc997edd3a69204f1161208a1e2fa223e00e7a2bea61d54e8498a/tulipgui_python-5.0.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "18e6e627b096198bcd1c8e1727c30c2d", "sha256": "54a4826ad2f6973b47de6549e617e1383037c7918d40e98d3033e2ab78bb48db" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "18e6e627b096198bcd1c8e1727c30c2d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27538276, "upload_time": "2017-06-28T23:26:30", "url": "https://files.pythonhosted.org/packages/41/d2/cb3a1b2941ee7a1ed5dc26d4be3e3db4b62a35ea36689f974f163cefd72a/tulipgui_python-5.0.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6b3fb7591568638b8cf7006904888826", "sha256": "9fa0c25f55501a8aa3af074f9db4ea07de1323245f90ce1e8de344b610efc42c" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b3fb7591568638b8cf7006904888826", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 27734178, "upload_time": "2017-06-27T23:50:01", "url": "https://files.pythonhosted.org/packages/7f/1d/8499e506a9c6910dff55bf93f7bd8a4ed0b7d00a55e776e9d3f8bc485bd1/tulipgui_python-5.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a91684f4102a5108a420bcd7cd8270f2", "sha256": "4dc158c80e8f53d5e4220f66e59b9c688fd813a842d4e373ee1a9a3f31973167" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a91684f4102a5108a420bcd7cd8270f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30191696, "upload_time": "2017-06-29T21:22:20", "url": "https://files.pythonhosted.org/packages/43/de/d99c2046ecd7ffd3d8fb7fd4978bf54e6d41d7faecba706484622d91f3dd/tulipgui_python-5.0.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "21f3af62f8b13b031a03125c1e19fac7", "sha256": "544dd2c2581d1cd5232781a0d9ff3d34057df69efbd5005742e9dc253cf71604" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "21f3af62f8b13b031a03125c1e19fac7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30084817, "upload_time": "2017-06-29T19:33:36", "url": "https://files.pythonhosted.org/packages/c5/a2/26e342709ae5d4a924fc86fd4fb1b1ff06305dc7a0b1344059eabf49aab2/tulipgui_python-5.0.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3b847ef2d7670cddc53d083eecabce53", "sha256": "766d651302f59b34bff1e67386094d6d5ab18859a6498f493189cd9208260891" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3b847ef2d7670cddc53d083eecabce53", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 50500904, "upload_time": "2017-06-27T21:09:21", "url": "https://files.pythonhosted.org/packages/f7/66/0c177b908a5f66b699acff6615843ed69bdd49f360875cd0adb9683e2a80/tulipgui_python-5.0.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ceb9e9dbc1a469e04169a40ffb0856e7", "sha256": "ffdb5fb741894ee619066c911a64e4a960e895922a63bf2168a72370b58932a1" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ceb9e9dbc1a469e04169a40ffb0856e7", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 27511784, "upload_time": "2017-06-28T23:26:41", "url": "https://files.pythonhosted.org/packages/a6/d5/ca0d4f256155f30cea3b3389267207ed145714145eebfdf93abedd3c04c7/tulipgui_python-5.0.0-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1a7434d4cf398b8823c7a8c219496658", "sha256": "c3e32238d5793dc979746ac546e8728b542323c1d8459542828ca93119f65565" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a7434d4cf398b8823c7a8c219496658", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 27760101, "upload_time": "2017-06-27T23:50:12", "url": "https://files.pythonhosted.org/packages/b8/18/e6e1735ecbabc8f2b35e35e75582e92ac1e5a69ccb22ada541630ea77f80/tulipgui_python-5.0.0-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "61bab4f9a5805b9e75b3da4d182d8f97", "sha256": "cdad0b8e3f38c748c2f1f5906fde5821bffb382609455a878d89921b58498371" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "61bab4f9a5805b9e75b3da4d182d8f97", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 30186875, "upload_time": "2017-06-29T21:22:48", "url": "https://files.pythonhosted.org/packages/cf/03/1ed78012e50c7bfa6145168e56ff02e18cc11d8cd7c81c5c3418b3c9b1f4/tulipgui_python-5.0.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "fd4d7e60ed29714befe74aa776fcbfb9", "sha256": "015f87ff0569e5f792353bd96be31629898c0c5900b4e97ebbe6ad108ac49587" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "fd4d7e60ed29714befe74aa776fcbfb9", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 30079915, "upload_time": "2017-06-29T19:34:07", "url": "https://files.pythonhosted.org/packages/05/61/09658afabcb0e062f69acc47ddc336f10b880ff10e60b9e5c528c3fc3439/tulipgui_python-5.0.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "193011fd76760ba35482f6fdbd42b667", "sha256": "6e8fb41dadf82ab6b24beeed458122f298493a51c4dfedbdd6d9d2f043b96b01" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "193011fd76760ba35482f6fdbd42b667", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 50500902, "upload_time": "2017-06-27T21:09:48", "url": "https://files.pythonhosted.org/packages/2a/d4/64f34e49d082d4f37ba27a7bd5547daf8e45768f5818aa9b79c090dadf21/tulipgui_python-5.0.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5661d5fbf684fa5dcd6c47580f11319c", "sha256": "de923e547a07532213bbe20073b47ed8d46330d1b85d71a4247b6eedfde11213" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5661d5fbf684fa5dcd6c47580f11319c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 27541470, "upload_time": "2017-06-28T23:26:52", "url": "https://files.pythonhosted.org/packages/ee/bc/315d9c97f79ff41fd59976cabcefc948686a8c9f4d0de1a9b28c05ff45f6/tulipgui_python-5.0.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "57322e3ddbf2802272ac35d20bc20e1b", "sha256": "ee163048b6aaebeb8b4de738be6d6921f4ff3cbf1b5dbc6b5e6b743624b19bb8" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "57322e3ddbf2802272ac35d20bc20e1b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 27760081, "upload_time": "2017-06-27T23:50:24", "url": "https://files.pythonhosted.org/packages/76/cf/a51cdd437f7ad5e72e0245a39f6aa329fcea625715ca11dcab4c557b9a1e/tulipgui_python-5.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4d27adfaf7f5cd96cefc90a2ac9854c7", "sha256": "c872390b92fca40c7b31d7c55009ee54b765da02904c05b221ead12874548a7a" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "4d27adfaf7f5cd96cefc90a2ac9854c7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 30186885, "upload_time": "2017-06-29T21:23:17", "url": "https://files.pythonhosted.org/packages/6f/93/82d69f26b8bdbb3043d472a3633d708066faadf1a6a44e8d0c7f5a04be82/tulipgui_python-5.0.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1462aaa32b2c5a261ee88c321f9cb307", "sha256": "a66339b1b6f490fc3c17387ccfc2fd1070787a533a2462f463796e7471c2cfe1" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "1462aaa32b2c5a261ee88c321f9cb307", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 30079906, "upload_time": "2017-06-29T19:34:28", "url": "https://files.pythonhosted.org/packages/37/54/3d3225569578250b9c1bf3eece2fa9c77e51edd67e0f373e115b4b7c965c/tulipgui_python-5.0.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "da519f03a1a507711fd1880b32dbc0b4", "sha256": "ba1d63026583631adbfb1b4c9519a9d5c93d091491a9109a1c607485e634b67e" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "da519f03a1a507711fd1880b32dbc0b4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50500903, "upload_time": "2017-06-27T21:10:29", "url": "https://files.pythonhosted.org/packages/e7/f7/b7e569240e9527fb18859ee87afa16e7c325e922c7cece0f4630c59d8065/tulipgui_python-5.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "287712a06b8b23a5537c2ee527548e74", "sha256": "1c9cb65516b25f257e38b993a396b8c1d02ff88dc9bbc1c3fc5bca708c12074d" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "287712a06b8b23a5537c2ee527548e74", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27511752, "upload_time": "2017-06-28T23:27:03", "url": "https://files.pythonhosted.org/packages/87/4c/231c6d2aa8d34c2fd18d675bb775ebcda4e6a38bebb32a44cd041b7bfaa7/tulipgui_python-5.0.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a880213293a57dec68232551e0a2f495", "sha256": "601caaeca8e55d44aa831c52795aca17c597a9770eb58828946f22017149141a" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a880213293a57dec68232551e0a2f495", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 27760113, "upload_time": "2017-06-27T23:50:37", "url": "https://files.pythonhosted.org/packages/e1/31/b3f0024f919a32b62e2750b2c206dfca2041a374045b5031f710e730d0dc/tulipgui_python-5.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b38181121f91f4c5b94ca5090bc43d1", "sha256": "dfe7424c4c5c0642cfc411e5e1d135346cd8f298c6d743e8f83d551e5aff571c" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3b38181121f91f4c5b94ca5090bc43d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30186866, "upload_time": "2017-06-29T21:23:38", "url": "https://files.pythonhosted.org/packages/33/81/3fc5ed3c5fff0bb6816e9c226e1129e500b67f214bd2b15e8d869c2d3fdb/tulipgui_python-5.0.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5227e7fca2f9ef4d679ea6eb14b88c61", "sha256": "0e370ef0948dcb4f2ca0559e95e984b9bfe5cb7878e6590363cfc70d1256ca49" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5227e7fca2f9ef4d679ea6eb14b88c61", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30079903, "upload_time": "2017-06-29T19:34:51", "url": "https://files.pythonhosted.org/packages/31/28/8950baa1d19642554e81dbc69a62bfc4e57e937f4bde5c9f1b228c5d7e3e/tulipgui_python-5.0.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "19f2d788629a5ff634fe0fc162b903a1", "sha256": "a692ee8682b157ce3537defa90626dfaafddcc2c0ab737ee29036c5ef85fb94a" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "19f2d788629a5ff634fe0fc162b903a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50500902, "upload_time": "2017-06-27T21:10:51", "url": "https://files.pythonhosted.org/packages/75/a0/25432f9ba62eb720eb491824f3d35603d6736adb4f2bfc3c1a297498848e/tulipgui_python-5.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "055ac9176af07438b933e1dc82aab2a7", "sha256": "32549653662c5dc91d72324174d51ff75a0da05496c8f7cd0b73b26719cd0ab2" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "055ac9176af07438b933e1dc82aab2a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27538429, "upload_time": "2017-06-28T23:27:24", "url": "https://files.pythonhosted.org/packages/47/e5/4f6d774abfee71f667b2fc79bec7c665b240b38a2309e120e028c8eb9f2c/tulipgui_python-5.0.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ebd17d0cefa87f465488b6b2e7a3007d", "sha256": "706ad08f726961819148188e9d0bfc329d53fbacb748fd9d9c044f0f0da972df" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ebd17d0cefa87f465488b6b2e7a3007d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 27760134, "upload_time": "2017-06-27T23:50:49", "url": "https://files.pythonhosted.org/packages/1f/b6/1e6e9fc95321ffe421a27cfca417ea6bdd6f468c7532f4a0c51a10ce500d/tulipgui_python-5.0.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b61d05f5d291a9153c07a7ad6b31ef0f", "sha256": "7e35531cdcbc5a9e2d0e9e1559b174418c7a41dc5b4f5daa44dd4579463bddf0" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b61d05f5d291a9153c07a7ad6b31ef0f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30186864, "upload_time": "2017-06-29T21:23:59", "url": "https://files.pythonhosted.org/packages/2f/f0/42e5d2667f372f6ad476e66278accacca9b155bbd998128f10931a1129e5/tulipgui_python-5.0.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "98082ab2480e111025d5ba5c9fb62e74", "sha256": "58e87fe40acd54fcbdaa2dd2c5e75dbb755c4036458c7340175e35436c56da97" }, "downloads": -1, "filename": "tulipgui_python-5.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "98082ab2480e111025d5ba5c9fb62e74", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30079911, "upload_time": "2017-06-29T19:35:09", "url": "https://files.pythonhosted.org/packages/c5/15/56d9efc2fc0c0ab632d4e53d4b6e330187b2f4a638c9b2c310a0d7c548f2/tulipgui_python-5.0.0-cp36-cp36m-win_amd64.whl" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "7092cad6b27939168e4ed2809fcc4a78", "sha256": "a1840fc4b8ce4faa68c05bbc2481bd1745bc815e18d5cac2ec7451c375a56057" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7092cad6b27939168e4ed2809fcc4a78", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 46845113, "upload_time": "2017-11-08T22:09:58", "url": "https://files.pythonhosted.org/packages/c0/98/36fa6262703099d3634c385ead4e993702afd4c5bb19f677e7edd2a6cf05/tulipgui_python-5.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "26c13fe27eeaac384980b785766d50f2", "sha256": "478fa2018ba2d9c8ae6dd53b9f6cfeca3f54059ccd9ef8168256a4c2d5d66f76" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "26c13fe27eeaac384980b785766d50f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25605531, "upload_time": "2017-11-09T00:22:48", "url": "https://files.pythonhosted.org/packages/02/e5/edfa2134324ffcf3b50d126d1c9e4ca1c7f7e736b7fff9085654825820ec/tulipgui_python-5.1.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8ef28461c90de7d6e005fc8197335a36", "sha256": "712d051466dd225e1ce1eda48a723cd2a89723ec6637ea987a4b4c4516fae97b" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ef28461c90de7d6e005fc8197335a36", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25812964, "upload_time": "2017-11-08T23:01:15", "url": "https://files.pythonhosted.org/packages/be/44/08fab0a7f42e8e840011085b6ca43ae333c65dcec49f1c3aba49b22b9409/tulipgui_python-5.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "52e72c1347901b6883ee5ef66f40f659", "sha256": "491f15acb1212aa1531eafa2804adf9fda4b7407d25f3cb6214ab3e21be2bf83" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52e72c1347901b6883ee5ef66f40f659", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25605587, "upload_time": "2017-11-09T00:23:10", "url": "https://files.pythonhosted.org/packages/b9/bf/8cc05fb6f431c5c81bef8bc30c73ff9f86aba66905bac5bbdb2d1289097b/tulipgui_python-5.1.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5bd91063c0f45696428c0f4ad5dec669", "sha256": "5b2078f0edc1f77e5f526628876a9770edee98a202d5da42add608108dc71ffb" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5bd91063c0f45696428c0f4ad5dec669", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25812924, "upload_time": "2017-11-08T23:01:34", "url": "https://files.pythonhosted.org/packages/e6/0d/278004011057cbd0419b1d372eae33bd2ec1fceffbdc49cc73bb177318f2/tulipgui_python-5.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4b9ea4bd4fcb77a3de8c1ace191d3e0", "sha256": "d616b2f1fee34ba27d35ffb01fd0158d596b6469bf05c1c920b7d1e641ac27a5" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c4b9ea4bd4fcb77a3de8c1ace191d3e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30057710, "upload_time": "2017-11-09T21:11:50", "url": "https://files.pythonhosted.org/packages/d1/48/b1ae10e65e101526367e9e09b727dca949f6cdece7536ce1d4bfb413df81/tulipgui_python-5.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0d64624c2ab434c539243a9c861db3fd", "sha256": "6087cc52a18c86fe4ef101ab061e045afc0483613477c5a532714e4d42bc5b63" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0d64624c2ab434c539243a9c861db3fd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 46845290, "upload_time": "2017-11-08T22:10:34", "url": "https://files.pythonhosted.org/packages/eb/24/6b7b91cc0045c6982fb1aa115d6729f629dd2abaea537a2b6f0718a98b52/tulipgui_python-5.1.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "303e4cfd0e7d4d9d8aa1b71da3904def", "sha256": "7d5332241867dec9bdf5e57f89935c4c23cf2b6051b7ed7304cde9a65684d0f0" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "303e4cfd0e7d4d9d8aa1b71da3904def", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 25605521, "upload_time": "2017-11-09T00:39:27", "url": "https://files.pythonhosted.org/packages/32/bd/d11db7ed809254cc5c44bfda637797c28335ff671d959eed9342d1103605/tulipgui_python-5.1.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "3e1e915e5b8b4c3fbcdae214646f42e2", "sha256": "7bbbdfb7a9feda40873e3c2323c5efa1d1776eeb7b239113e39ffdaed2ed24ad" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3e1e915e5b8b4c3fbcdae214646f42e2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 25813015, "upload_time": "2017-11-08T23:01:52", "url": "https://files.pythonhosted.org/packages/13/46/59098a7548ad0f34bdbbfb866b84a773d6f34fc4fab1690c16d9cd2f10ee/tulipgui_python-5.1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "90a04806868eb19a9cb9bb8b015e4061", "sha256": "09d9124a194a353d5f7432e4342c0181093b79c0904d4e1d5eb958a1004433a9" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "90a04806868eb19a9cb9bb8b015e4061", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 30052668, "upload_time": "2017-11-09T21:12:15", "url": "https://files.pythonhosted.org/packages/be/5d/f7d36ac4b34917d6cc761976cb753f3748ca9135dc60a9d9823039cf32d4/tulipgui_python-5.1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f31b89a6fe491d4a26a01ea4931e5bdb", "sha256": "8449d9f9db91431bbecbd9f63908ae60c0d24a993ff2e04f18a1cc3befbf1eef" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f31b89a6fe491d4a26a01ea4931e5bdb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 46845326, "upload_time": "2017-11-08T22:11:14", "url": "https://files.pythonhosted.org/packages/8a/3e/d290ec0b863bea8885952ad012a627a88f3ca9fdb0742512509c7da5e4b9/tulipgui_python-5.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6529b39ca45777f46ab17d335df42f02", "sha256": "603f8cc02937d504787303f3043219a8215939da0a5da62430225b7defe71ef6" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6529b39ca45777f46ab17d335df42f02", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25605574, "upload_time": "2017-11-09T00:39:38", "url": "https://files.pythonhosted.org/packages/d8/bc/f1c795870f0f61e548e713581210212eddc549f4c2a83bd05c12cc5d7bd6/tulipgui_python-5.1.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "294ca63964664ef60f549876520f9df5", "sha256": "111fe7a4e8053ab4fb1f7b72884842e690ed7eb3c52edb750d5caf5d3bdb60ee" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "294ca63964664ef60f549876520f9df5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 25813013, "upload_time": "2017-11-08T23:02:08", "url": "https://files.pythonhosted.org/packages/ab/67/61f9b1ba3b1e2dd1aa400d91fb8575651cbd7b0865f2cf6fa18ddc7406f6/tulipgui_python-5.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ac7609655efe0b1e4b80f5aa2042c7a2", "sha256": "ef5175f20efb25bf50d37e249e5fdb2e65f16abf12b09f69b75012c9a4f5947a" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ac7609655efe0b1e4b80f5aa2042c7a2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30052657, "upload_time": "2017-11-09T21:13:00", "url": "https://files.pythonhosted.org/packages/e8/0e/a20f83c05afd26d0cafafcca26ed424db0695ecbc6928c377f6bcc9005e5/tulipgui_python-5.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "583bac095a3ad596f97d2cee6beb4f84", "sha256": "8867eda592214560dacfc66e4b4a1ba6c1a2da675bf9d54157c9b6f0405df995" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "583bac095a3ad596f97d2cee6beb4f84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 46845279, "upload_time": "2017-11-08T22:11:49", "url": "https://files.pythonhosted.org/packages/0d/e7/7ec19bd84d8ff10117b559d2a3308a4aa3723b9fe2afe57e4113363b3d46/tulipgui_python-5.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4884a85266f30161661d761573b4c640", "sha256": "fa50935a234eacb1bffd7b2296a560faaf79d6a1e1b897daa588609a876ef79b" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4884a85266f30161661d761573b4c640", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25605627, "upload_time": "2017-11-09T00:39:50", "url": "https://files.pythonhosted.org/packages/95/d7/42dfa3fefa4cdcfd7bfdeb5b6e1de7713d41a6508359e5877c11eb5bcefa/tulipgui_python-5.1.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "49045e7ac71d99976f72795b8941855d", "sha256": "b43e5b05c9f0f857f7876eb8dfadd54aff20db93eb03e12ff0bfb3ef25e57765" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49045e7ac71d99976f72795b8941855d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 25812970, "upload_time": "2017-11-08T23:02:29", "url": "https://files.pythonhosted.org/packages/c7/eb/c7601120ccb46ce0f5ae89c283982ca6b0d6c10a92c15a454ea658e201d7/tulipgui_python-5.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9af4cc9f58d26d920c108b2e97b453eb", "sha256": "2e7bb56c3a222e473a6f8b8db83dfd1bc21ff38d881036204b5331f2e39751ee" }, "downloads": -1, "filename": "tulipgui_python-5.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9af4cc9f58d26d920c108b2e97b453eb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30052703, "upload_time": "2017-11-09T21:13:29", "url": "https://files.pythonhosted.org/packages/16/6e/5374fc0b703916ced7fa5bf5ae1d19de8dd2c16bc7b39db3c3d4a012f2f7/tulipgui_python-5.1.0-cp36-cp36m-win_amd64.whl" } ], "5.2.1": [ { "comment_text": "", "digests": { "md5": "aeaf520fd8273bb2b79ee1bc296b97d9", "sha256": "6c3e4bdb8b3d770510e3eca175ae7a8ba5f042f244153667a79779f75d11f293" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aeaf520fd8273bb2b79ee1bc296b97d9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 40332068, "upload_time": "2018-10-29T09:05:55", "url": "https://files.pythonhosted.org/packages/23/9b/2616c322c3932b0eda181e133fba1d4da61f5d341a4bb600ec9513012386/tulipgui_python-5.2.1-cp27-cp27m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0439f25828abc6e4dffb6a4329990e85", "sha256": "f08ddc864c00d7b90b87029121b85483181ae298cc669696338e2401a918db73" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0439f25828abc6e4dffb6a4329990e85", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26648321, "upload_time": "2018-10-29T09:11:58", "url": "https://files.pythonhosted.org/packages/67/ed/70d023974f9e6593b966cb59dfc01409e163405780f230e372afb485eef5/tulipgui_python-5.2.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cc8bf3e6deeaceab5df223353d69f27b", "sha256": "f2a7dbfe981117cd019ab3088a26d6343068b19013f65c0054e395abd1f1fdf2" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc8bf3e6deeaceab5df223353d69f27b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26648330, "upload_time": "2018-10-29T09:12:04", "url": "https://files.pythonhosted.org/packages/0e/50/13e800547128e25f72fbcc9e8cbf79163940762ed2eab676ba1c8d872ba2/tulipgui_python-5.2.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "27f5d41bc51b9f9b024e8bb1973ddf1e", "sha256": "929c500a8dc3e3581d97098095fadd1b2f6558c44b22ee7944d0b8da319bfd28" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "27f5d41bc51b9f9b024e8bb1973ddf1e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30188819, "upload_time": "2018-10-29T09:02:40", "url": "https://files.pythonhosted.org/packages/ac/6d/9faf5410ed2975c75cbc4a8cab5d00e3e978287b2bb693aff8edce09bb35/tulipgui_python-5.2.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "25e00e8a9966be7f2e742d60fead87c5", "sha256": "687d150ea0818e10e116ad2a60bac9a13f1df5f665d7b88140b059ee5f54378e" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "25e00e8a9966be7f2e742d60fead87c5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 40332125, "upload_time": "2018-10-29T09:06:04", "url": "https://files.pythonhosted.org/packages/d3/8b/100da64bd9eaa2bbbf625c8bd9d1eb0b38a248bdc9ac5979a3ea96c6d65d/tulipgui_python-5.2.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b7c643760927171ed204b0a92c0c905f", "sha256": "9795b698a3b24fe85eccd46a7578410434dc3d2a019eaecbe2c37c0a57d9a076" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7c643760927171ed204b0a92c0c905f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26648421, "upload_time": "2018-10-29T09:12:10", "url": "https://files.pythonhosted.org/packages/b9/86/d434859d895b4400979193ee3b4370d46545b9ce60afb16962c51dd6bb77/tulipgui_python-5.2.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0ee7ed404a1661a7f8f5c6639905222d", "sha256": "bea216509677ad870189389293e4f1a63d9f7b6a612bf4218fc61acc0492ad87" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0ee7ed404a1661a7f8f5c6639905222d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 30186329, "upload_time": "2018-10-29T09:02:45", "url": "https://files.pythonhosted.org/packages/82/a0/93eed3410ba09c82974b7b56238c8b347ea44146ff257ba90ee01e26b724/tulipgui_python-5.2.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "22870ad64d0d12caaa113b97da381db1", "sha256": "62a09b90597f6e19cc06c3b0c787f748994523eaa7fb49ce9279e034a1be1e11" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "22870ad64d0d12caaa113b97da381db1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 40332125, "upload_time": "2018-10-29T09:06:14", "url": "https://files.pythonhosted.org/packages/52/96/affad8cee86a5c533979291b990daad0474a3e48449c1c1110adc77c08d2/tulipgui_python-5.2.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "44a8f009af7191dee94e60a831e7fc1c", "sha256": "0f19bfebd82f4d0f609acf73bce40e93caeae993b8656ae5283ff078eced178c" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44a8f009af7191dee94e60a831e7fc1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26648430, "upload_time": "2018-10-29T09:12:16", "url": "https://files.pythonhosted.org/packages/d5/d3/d8413eb91fe253bc1e825fbd6364f14d72a386a19d75fd8c64e200efcdf4/tulipgui_python-5.2.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a83dcd3c820fa31762adaedbeb6045a8", "sha256": "6614ff8f9a668ac606e29b68b1f66817c62745affe1c5171a9e02289d68c633c" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a83dcd3c820fa31762adaedbeb6045a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30186329, "upload_time": "2018-10-29T09:02:52", "url": "https://files.pythonhosted.org/packages/5a/4f/e5fd2b0435e2b567a4b981652cf025bf2605421337f5952f5f92db2f1585/tulipgui_python-5.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c897b9e24ca0d1d38e93b93535b38e58", "sha256": "3fe1487b8ae3f112d6030970265123ebe6a81be4fad07ca6379a00ea08c419a7" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c897b9e24ca0d1d38e93b93535b38e58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 40332104, "upload_time": "2018-10-29T09:06:23", "url": "https://files.pythonhosted.org/packages/a0/1b/6f3b4a62fc9dd4ca640979b318d562ea63a233762a31777e09fdeecf288e/tulipgui_python-5.2.1-cp36-cp36m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "29e0221da2b975f5c928742f27e525da", "sha256": "1b5d9c7defb7210b9d5c921d90ec7e527d10fe5fa5d87eef4eaabae6a84abc8b" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "29e0221da2b975f5c928742f27e525da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 26648426, "upload_time": "2018-10-29T09:12:23", "url": "https://files.pythonhosted.org/packages/41/7d/6ca8bd8344ea0f307936f4be16f34de3d6ea5cd0219dd86102fc123d1504/tulipgui_python-5.2.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "205dc1f751c91edde9c9929d5e3de725", "sha256": "2cecd11d9e0f9257570806a70d6502814ef682480ec717e53d51aa94627b3174" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "205dc1f751c91edde9c9929d5e3de725", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30186332, "upload_time": "2018-10-29T09:02:57", "url": "https://files.pythonhosted.org/packages/d5/34/16c0d54bdf031cd0f19449602f4ce8c3ff5302d8a84f0faabf25296aaa0f/tulipgui_python-5.2.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cb8e2db57764cd0805ab34cd74ffe37d", "sha256": "fe952ba093c0406e43d7f2a16765bd7c3d4faa6f10a19aa7563e0f7142f86b2e" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb8e2db57764cd0805ab34cd74ffe37d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40332103, "upload_time": "2018-10-29T09:06:32", "url": "https://files.pythonhosted.org/packages/d5/dc/bb599edf8db1d321aa25d54d231a2b16a93ec1a77302fd7329835e85a329/tulipgui_python-5.2.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "69c215e51365cefa8926e7674b2e7997", "sha256": "a1e2125b2a0cdce2595030f57ea139dd15fe3ffef5be8dd3f4d622f486cafd90" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "69c215e51365cefa8926e7674b2e7997", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 26648433, "upload_time": "2018-10-29T09:12:29", "url": "https://files.pythonhosted.org/packages/be/b2/7405bdbd737b6664dc0e914861e9240b8e586d797ed1738f6f0c2dc53aba/tulipgui_python-5.2.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7beb4977ea7fd34893bc5bb9ac747ee9", "sha256": "2653de86321d0929b4a8c3e438373d7db312b30f206ed8b3fb31fd8263037b32" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7beb4977ea7fd34893bc5bb9ac747ee9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 30186353, "upload_time": "2018-10-29T09:03:04", "url": "https://files.pythonhosted.org/packages/ec/9c/7c6a182360f8ce7ac33267a872e63f3f5a5fdf5fa0597ea29b456f31cf7d/tulipgui_python-5.2.1-cp37-cp37m-win_amd64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "aeaf520fd8273bb2b79ee1bc296b97d9", "sha256": "6c3e4bdb8b3d770510e3eca175ae7a8ba5f042f244153667a79779f75d11f293" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aeaf520fd8273bb2b79ee1bc296b97d9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 40332068, "upload_time": "2018-10-29T09:05:55", "url": "https://files.pythonhosted.org/packages/23/9b/2616c322c3932b0eda181e133fba1d4da61f5d341a4bb600ec9513012386/tulipgui_python-5.2.1-cp27-cp27m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0439f25828abc6e4dffb6a4329990e85", "sha256": "f08ddc864c00d7b90b87029121b85483181ae298cc669696338e2401a918db73" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0439f25828abc6e4dffb6a4329990e85", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26648321, "upload_time": "2018-10-29T09:11:58", "url": "https://files.pythonhosted.org/packages/67/ed/70d023974f9e6593b966cb59dfc01409e163405780f230e372afb485eef5/tulipgui_python-5.2.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cc8bf3e6deeaceab5df223353d69f27b", "sha256": "f2a7dbfe981117cd019ab3088a26d6343068b19013f65c0054e395abd1f1fdf2" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc8bf3e6deeaceab5df223353d69f27b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 26648330, "upload_time": "2018-10-29T09:12:04", "url": "https://files.pythonhosted.org/packages/0e/50/13e800547128e25f72fbcc9e8cbf79163940762ed2eab676ba1c8d872ba2/tulipgui_python-5.2.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "27f5d41bc51b9f9b024e8bb1973ddf1e", "sha256": "929c500a8dc3e3581d97098095fadd1b2f6558c44b22ee7944d0b8da319bfd28" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "27f5d41bc51b9f9b024e8bb1973ddf1e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30188819, "upload_time": "2018-10-29T09:02:40", "url": "https://files.pythonhosted.org/packages/ac/6d/9faf5410ed2975c75cbc4a8cab5d00e3e978287b2bb693aff8edce09bb35/tulipgui_python-5.2.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "25e00e8a9966be7f2e742d60fead87c5", "sha256": "687d150ea0818e10e116ad2a60bac9a13f1df5f665d7b88140b059ee5f54378e" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "25e00e8a9966be7f2e742d60fead87c5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 40332125, "upload_time": "2018-10-29T09:06:04", "url": "https://files.pythonhosted.org/packages/d3/8b/100da64bd9eaa2bbbf625c8bd9d1eb0b38a248bdc9ac5979a3ea96c6d65d/tulipgui_python-5.2.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b7c643760927171ed204b0a92c0c905f", "sha256": "9795b698a3b24fe85eccd46a7578410434dc3d2a019eaecbe2c37c0a57d9a076" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7c643760927171ed204b0a92c0c905f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 26648421, "upload_time": "2018-10-29T09:12:10", "url": "https://files.pythonhosted.org/packages/b9/86/d434859d895b4400979193ee3b4370d46545b9ce60afb16962c51dd6bb77/tulipgui_python-5.2.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0ee7ed404a1661a7f8f5c6639905222d", "sha256": "bea216509677ad870189389293e4f1a63d9f7b6a612bf4218fc61acc0492ad87" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0ee7ed404a1661a7f8f5c6639905222d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 30186329, "upload_time": "2018-10-29T09:02:45", "url": "https://files.pythonhosted.org/packages/82/a0/93eed3410ba09c82974b7b56238c8b347ea44146ff257ba90ee01e26b724/tulipgui_python-5.2.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "22870ad64d0d12caaa113b97da381db1", "sha256": "62a09b90597f6e19cc06c3b0c787f748994523eaa7fb49ce9279e034a1be1e11" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "22870ad64d0d12caaa113b97da381db1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 40332125, "upload_time": "2018-10-29T09:06:14", "url": "https://files.pythonhosted.org/packages/52/96/affad8cee86a5c533979291b990daad0474a3e48449c1c1110adc77c08d2/tulipgui_python-5.2.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "44a8f009af7191dee94e60a831e7fc1c", "sha256": "0f19bfebd82f4d0f609acf73bce40e93caeae993b8656ae5283ff078eced178c" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44a8f009af7191dee94e60a831e7fc1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 26648430, "upload_time": "2018-10-29T09:12:16", "url": "https://files.pythonhosted.org/packages/d5/d3/d8413eb91fe253bc1e825fbd6364f14d72a386a19d75fd8c64e200efcdf4/tulipgui_python-5.2.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a83dcd3c820fa31762adaedbeb6045a8", "sha256": "6614ff8f9a668ac606e29b68b1f66817c62745affe1c5171a9e02289d68c633c" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a83dcd3c820fa31762adaedbeb6045a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30186329, "upload_time": "2018-10-29T09:02:52", "url": "https://files.pythonhosted.org/packages/5a/4f/e5fd2b0435e2b567a4b981652cf025bf2605421337f5952f5f92db2f1585/tulipgui_python-5.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c897b9e24ca0d1d38e93b93535b38e58", "sha256": "3fe1487b8ae3f112d6030970265123ebe6a81be4fad07ca6379a00ea08c419a7" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c897b9e24ca0d1d38e93b93535b38e58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 40332104, "upload_time": "2018-10-29T09:06:23", "url": "https://files.pythonhosted.org/packages/a0/1b/6f3b4a62fc9dd4ca640979b318d562ea63a233762a31777e09fdeecf288e/tulipgui_python-5.2.1-cp36-cp36m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "29e0221da2b975f5c928742f27e525da", "sha256": "1b5d9c7defb7210b9d5c921d90ec7e527d10fe5fa5d87eef4eaabae6a84abc8b" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "29e0221da2b975f5c928742f27e525da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 26648426, "upload_time": "2018-10-29T09:12:23", "url": "https://files.pythonhosted.org/packages/41/7d/6ca8bd8344ea0f307936f4be16f34de3d6ea5cd0219dd86102fc123d1504/tulipgui_python-5.2.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "205dc1f751c91edde9c9929d5e3de725", "sha256": "2cecd11d9e0f9257570806a70d6502814ef682480ec717e53d51aa94627b3174" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "205dc1f751c91edde9c9929d5e3de725", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30186332, "upload_time": "2018-10-29T09:02:57", "url": "https://files.pythonhosted.org/packages/d5/34/16c0d54bdf031cd0f19449602f4ce8c3ff5302d8a84f0faabf25296aaa0f/tulipgui_python-5.2.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cb8e2db57764cd0805ab34cd74ffe37d", "sha256": "fe952ba093c0406e43d7f2a16765bd7c3d4faa6f10a19aa7563e0f7142f86b2e" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb8e2db57764cd0805ab34cd74ffe37d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40332103, "upload_time": "2018-10-29T09:06:32", "url": "https://files.pythonhosted.org/packages/d5/dc/bb599edf8db1d321aa25d54d231a2b16a93ec1a77302fd7329835e85a329/tulipgui_python-5.2.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "69c215e51365cefa8926e7674b2e7997", "sha256": "a1e2125b2a0cdce2595030f57ea139dd15fe3ffef5be8dd3f4d622f486cafd90" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "69c215e51365cefa8926e7674b2e7997", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 26648433, "upload_time": "2018-10-29T09:12:29", "url": "https://files.pythonhosted.org/packages/be/b2/7405bdbd737b6664dc0e914861e9240b8e586d797ed1738f6f0c2dc53aba/tulipgui_python-5.2.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7beb4977ea7fd34893bc5bb9ac747ee9", "sha256": "2653de86321d0929b4a8c3e438373d7db312b30f206ed8b3fb31fd8263037b32" }, "downloads": -1, "filename": "tulipgui_python-5.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7beb4977ea7fd34893bc5bb9ac747ee9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 30186353, "upload_time": "2018-10-29T09:03:04", "url": "https://files.pythonhosted.org/packages/ec/9c/7c6a182360f8ce7ac33267a872e63f3f5a5fdf5fa0597ea29b456f31cf7d/tulipgui_python-5.2.1-cp37-cp37m-win_amd64.whl" } ] }