{ "info": { "author": "BCL Mary, YM Leroy, Xiaoping Yuan, Pauline Souloumiac, Chong Wu", "author_email": "baptiste.mary@u-cergy.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: X11 Applications :: Qt", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows :: Windows 7", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", "Topic :: Education", "Topic :: Scientific/Engineering" ], "description": "|ECCW-GUI|\n##########\n\nExact Critical Coulomb Wedge - Graphical User Interface\n=======================================================\n\n**ECCW** and **ECCW-GUI** allow to compute the exact solution of any parameter of critical Coulomb wedge (as Dahlen 1984 and Yuan et al. 2015). They allow to draw any of these solutions in the \u03b2 vs \u03b1 domain (basal slope against surface slope). Are availables compressive or extensive geological context and fluid pore pressure.\n\n**ECCW** and **ECCW-GUI** are under GNU GPL-v3 license.\n\n\n*******************************************************************\n\nOverview\n========\n\n\nGeneral informations\n++++++++++++++++++++\n\n* *ECCW* is a *python3* library;\n* *ECCW-GUI* is a graphical user interface, written in *python3* and using *Qt*;\n* In the GUI, you can save a session and keep it in an xml file (.eccw);\n* A pdf documentation is available (see Usage section) including:\n * usage explainations;\n * theoretical explainations \n * guidelines of the results interpretation;\n * blueprints of the equations implemantation.\n\n\nCalculator App\n++++++++++++++\n\n* Compute the solution of the *Critical Coulomb Wedge* for compressive or extensive tectonic context, with or without fluids overpressure.\n* The solution can be computed with one of the four main parameters set as unknown.\n* A range of solutions can be computed at once if you set one of the known parameters as a range.\n\n|Screen copy of calculator-app|\n\n\nPlot App\n++++++++\n\n* Plot the solution of the *Critical Coulomb Wedge* in matplotlib windows (includes zooms, exports, and more).\n* A range of solutions can be ploted at once if you set one of the known parameters as a range.\n* You can explore graphically points on the solution curve, with optional display of a sketch representing orientations and directions of faults.\n* Refrences points can be manually added or imported from .csv files.\n\n|Screen copy of plot-app|\n\n|Screen copy of plot-app's plot window|\n\n\n*******************************************************************\n\nInstallation\n============\n\n\nWindows\n+++++++\n\n.. note :: Only tested on *Windows 7*.\n\n\n* Install a **python3** distribution.\n The **miniconda** distribution from https://conda.io/miniconda.html is a good choice.\n\n * Download the proper installer (the 64-bit version should be appropriated).\n\n * Run the downloaded ``.exe``;\n\n* Intall *ECCW*.\n\n * Open a shell that can access your python3 distribution, such as the *Windows Power Shell*.\n If you choosed to install **miniconda**, you should use the *Anaconda Prompt*.\n You can access it by typing ``anaconda`` in the main Windows menu.\n\n * In the shell, type the following command::\n\n pip install eccw-gui\n\n* ECCW is then available from the main Windows menu by taping ``eccw`` or from a shell by taping ``python -m eccw_gui``.\n\n* Optionally, you can run the ``eccw_windows_install`` command in a shell to install menu and desktop shortcuts. \n To remove these shortcuts, run the ``eccw_windows_remove`` command.\n\n\nLinux\n+++++\n\n.. note :: Only tested on *Ubuntu 18.04*.\n\n* Install **python3** with **pip** and **tk**. \n On *Debian* family distributions, you can install these packages using the following command::\n\n $ sudo apt-get install python3 python3-pip python3-tk\n\n2. Install *ECCW* with the following command::\n\n $ pip3 install eccw-gui\n\n3. *ECCW* is then available from the main menu under the name **eccw**.\n\n\n*******************************************************************\n\nUsage\n=====\n\n\nGUI usage\n+++++++++\n\nSimply type ``eccw`` in a shell to launch *eccw*.\nThe GUI should also be available from the main menu.\n\nTo obtain help with text based mode, type::\n\n $ eccw -h\n\nYou can access an off-line documentation using the button 'Documentation' in the GUI.\nAlternatively, you can use the following command, without the GUI::\n\n $ eccw -d\n\nYou can launch the GUI with the ``-m`` option of python using the canonic syntax::\n\n python -m eccw_gui\n\nPython library usage\n++++++++++++++++++++\n\nYou can import and use the core objects for computing and plotting *Critical Coulomb Wedge* from a python session as discribed in what follows.\n\nEccwCompute\n-----------\n\nThis the core object that compute the solutions of the *CCW* problem.\n::\n\n >>> from eccw import EccwCompute\n >>> foo = EccwCompute(phiB=30, phiD=10, beta=0)\n >>> foo.show_params()\n { context : 'Compression'\n beta : 0.0\n alpha : nan\n phiB : 30.0\n phiD : 10.0\n rho_f : 0.0\n rho_sr : 0.0\n delta_lambdaB : 0.0\n delta_lambdaD : 0.0\n }\n >>> foo.compute(\"alpha\")\n ((3.4365319302835018,), (23.946319406533199,))\n\n\nThe result obtained with the ``compute`` method is always a tuple of two tuples.\nThe first tuple contains results in **inverse** fault mechanism, while the second tuple contains results in **normal** fault mechanism.\nThese tuples can each contain 0, 1 or 2 values, with a total always equal to 0 or 2.\nHere some more examples with computation of beta ``parameter``::\n::\n\n >>> foo.alpha = 3.436532\n >>> foo.compute(\"beta\") \n ((-1.0516746372768912e-07,), (69.6779628783264,))\n >>> foo.alpha = 20\n >>> foo.compute(\"beta\") \n ((), (-3.580929608343892, 43.25889259183777))\n >>> foo.alpha = -20\n >>> foo.compute(\"beta\") \n ((36.74110740816224, 83.58092960834391), ())\n >>> foo.alpha = -35\n >>> foo.compute(\"beta\") \n ((), ())\n\nHave a look on the plot obtained in next section to understand these results.\n\nEccwPlot\n--------\n\nThis the core object that plot the solutions of the *CCW* problem. This object inherits from ``EccwCompute``.\n::\n\n >>> from eccw import EccwPlot\n >>> foo = EccwPlot(phiB=30, phiD=10)\n >>> foo.add_curve(inverse={'color':(1,0,0,1), 'label':'inverse'}, \n normal={'color':(0,0,1,1), 'label':'normal'})\n >>> foo.add_point(alpha=3.436532)\n >>> foo.add_point(alpha=20, style='*', size=10)\n >>> foo.add_point(alpha=-20, style='s')\n >>> foo.add_legend()\n >>> foo.show()\n\n|Screen copy of EccwPlot's plot|\n\n\n*******************************************************************\n\nContributing\n============\n\nAdditional dependancies\n+++++++++++++++++++++++\n\nSome softwares are needed to convert Qt specific files into python code:\n\n* ``pyuic5`` is used to convert form ``.ui`` files into python code calling PyQt;\n* ``pyrcc5`` is used to convert Qt ressources files ``.qrc`` into python module.\n\nBoth are found in following dependancies (ubuntu / debian):\n\n | pyqt5-dev-tools\n\nIf you want to install Qt-designer for Qt5 on Ubuntu/debian, this app is included in the following package:\n\n | qttools5-dev-tools\n\nInformations for developpers\n++++++++++++++++++++++++++++\n\n* Convert ``.ui`` files created using *Qt-Designer* into python files::\n\n $ pyuic5 -x xxx.ui -o xxx_Viewer.py\n\n Some bash scripts located in ``eccw_gui/*/viewers`` folders named ``make_viewers.sh`` automatise this process.\n Some custom corrections of *Qt* objects dimensions are also embedded in some of these script.\n\n* Convert *Qt* ressources ``.qrc`` files created using *Qt-Designer* into python files::\n\n $ pyrcc5 xxx.qrc -o xxx_rc.py\n\n These ressources files are a smart way to embed images into source code and solve the access path to these images problem after desktop installation.\n\n* All graphical object (Qt-derived) get the following methods:\n\n getParams:\n return an OrderedDict that describe the state of the object.\n setParams: \n set the object with a dict obtained from getParams.\n\n getSelect:\n return an OrderedDict that describe the selected parameters to treat (equal to getParams if the paramters gets single state).\n\n\n\n\n\n\n\n\n.. _eccw: https://github.com/bclmary/eccw.git\n\n.. _eccw-gui: https://github.com/bclmary/eccw_gui.git\n\n\n.. |ECCW-GUI| image:: ./eccw_gui/images/eccw-gui_title.png\n :alt: ECCW\n :height: 200\n\n.. |Screen copy of calculator-app| image:: eccw_gui/images/screen-copy_calculator-app.png\n :alt: screen copy of calculator app\n :width: 600\n\n.. |Screen copy of plot-app| image:: eccw_gui/images/screen-copy_plot-app.png\n :alt: screen copy of plot app\n :width: 600\n\n.. |Screen copy of plot-app's plot window| image:: eccw_gui/images/screen-copy_plot-app_plot.png\n :alt: screen copy of plot window of plot app\n :width: 600\n\n.. |Screen copy of EccwPlot's plot| image:: eccw_gui/images/EccwPlot_example.png\n :alt: screen copy of matplotlib window containing ECCW plot\n :width: 600\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bclmary/eccw_gui.git", "keywords": "geology,accretionnary prism,science,PyQt5", "license": "GPL-3.0+", "maintainer": "BCL Mary", "maintainer_email": "baptiste.mary@u-cergy.fr", "name": "eccw-gui", "package_url": "https://pypi.org/project/eccw-gui/", "platform": "any", "project_url": "https://pypi.org/project/eccw-gui/", "project_urls": { "Homepage": "https://github.com/bclmary/eccw_gui.git" }, "release_url": "https://pypi.org/project/eccw-gui/1.1.1/", "requires_dist": [ "eccw (>=1.1.0)", "matplotlib (>=2.0)", "numpy (>=1.10)", "pyqt5 (>=5.6)", "xmltodict (>=0.10)" ], "requires_python": ">=3.4", "summary": "Exact Critical Coulomb Wedge - Graphical User Interface: tools to compute and display the exact solution of any parameter of Critical Coulomb Wedge", "version": "1.1.1" }, "last_serial": 5967466, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "92c9a104f074672b7396f9688347e5ee", "sha256": "e79c77f507bf3587894ce1c445c7e2db19813a886aa673f60dfef26eecc24b87" }, "downloads": -1, "filename": "eccw_gui-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "92c9a104f074672b7396f9688347e5ee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6418278, "upload_time": "2018-02-21T14:51:18", "url": "https://files.pythonhosted.org/packages/1c/54/d8045d30ef8d26293c5a7e0a5eef92d4b7652fc494ffa74ec2556088ae62/eccw_gui-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d9cf7ec6cc3a9d5ec404969a4093990", "sha256": "24556650277da3fe19e14f60d5d3d6ba0ff878eddf54924728e2426f812336e3" }, "downloads": -1, "filename": "eccw_gui-1.0.0.tar.gz", "has_sig": false, "md5_digest": "0d9cf7ec6cc3a9d5ec404969a4093990", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6122913, "upload_time": "2019-10-08T08:17:17", "url": "https://files.pythonhosted.org/packages/ad/47/01f53b8a164d7daddbaf22e4e240ead1940fb6f7dbb1e2a97a2be7d22577/eccw_gui-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "8ea8fa02bdbf6368b67cc2122487a9e0", "sha256": "4eace10900ac8f01db27f0fa0b461f9bb35db92b6829dd47708857d04b54b41e" }, "downloads": -1, "filename": "eccw_gui-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8ea8fa02bdbf6368b67cc2122487a9e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248674, "upload_time": "2019-10-08T08:17:04", "url": "https://files.pythonhosted.org/packages/62/57/e9c7de39c6157f5372bc5f381b5eb728af9179b23b8ad7f1d5e830069356/eccw_gui-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c079c5ddb0343399e124160bac04629", "sha256": "ea86330d9f91e3c5cb23b1423a575525d71040a002de905f210e0cf52ab52135" }, "downloads": -1, "filename": "eccw_gui-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0c079c5ddb0343399e124160bac04629", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178826, "upload_time": "2019-10-08T08:17:23", "url": "https://files.pythonhosted.org/packages/ea/70/cc3e0df93093adcf39471c502d8a48f12fe71a2273096b6c7af4e8245fb6/eccw_gui-1.1.0.tar.gz" } ], "1.1.0.post11": [ { "comment_text": "", "digests": { "md5": "69dbcdcee68a159fa21a9e3c2251a88e", "sha256": "0e691dfc103b671bc14f7ebcb047bdd606787a2fc774e154f6da1fb427e66edc" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post11-py3-none-any.whl", "has_sig": false, "md5_digest": "69dbcdcee68a159fa21a9e3c2251a88e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248265, "upload_time": "2019-10-09T09:34:01", "url": "https://files.pythonhosted.org/packages/42/a6/20844adf454fcda078d6b159a40b545dce6429ed4fdf04c62822a7a93449/eccw_gui-1.1.0.post11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2624b2439eac60169e2a664db627186", "sha256": "9b6b74c35f0a465eba436145a81f022f0dd5133ca0f8b6b2dba230074e966261" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post11.tar.gz", "has_sig": false, "md5_digest": "e2624b2439eac60169e2a664db627186", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178220, "upload_time": "2019-10-09T09:34:05", "url": "https://files.pythonhosted.org/packages/81/66/197112205273a90158e0d29de3bb3a69cc7463274abc95712b7312dc773f/eccw_gui-1.1.0.post11.tar.gz" } ], "1.1.0.post12": [ { "comment_text": "", "digests": { "md5": "a5ca75233ab97ef1ce17602c8e592230", "sha256": "cb6fb1eea8e45c815766380c4d0c5032bc1b5a6413e6e5d3b982d374fcb7faff" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post12-py3-none-any.whl", "has_sig": false, "md5_digest": "a5ca75233ab97ef1ce17602c8e592230", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248253, "upload_time": "2019-10-09T09:54:34", "url": "https://files.pythonhosted.org/packages/48/8d/b76bbca08dd7602c40724fff89ca0e1d50ab1dbbf833741b376cfcb64d2b/eccw_gui-1.1.0.post12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36680b582d80cee0ff8cee4a44d626b7", "sha256": "b3d6826a267320f7203436adea1cc6330bace99e0b247faa8fddbeaec3024777" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post12.tar.gz", "has_sig": false, "md5_digest": "36680b582d80cee0ff8cee4a44d626b7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178231, "upload_time": "2019-10-09T09:54:38", "url": "https://files.pythonhosted.org/packages/70/9f/43a6f0c2f1ab1357af46c7b2f0bf9a77dfa365dfebb183a94cda60e1bd52/eccw_gui-1.1.0.post12.tar.gz" } ], "1.1.0.post13": [ { "comment_text": "", "digests": { "md5": "8f8c182e3e461e444406daedd0bfd43b", "sha256": "d268dee15183129f6f51954921706ccd9a17fcc77f9085fb34b200f96ad3ae75" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post13-py3-none-any.whl", "has_sig": false, "md5_digest": "8f8c182e3e461e444406daedd0bfd43b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248254, "upload_time": "2019-10-09T09:58:59", "url": "https://files.pythonhosted.org/packages/65/6b/38128a8a3056e5c97a31b4d81aaf4a80fa7c70fbea61452f4d47a7e6603a/eccw_gui-1.1.0.post13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4df9afeeb67a8db4e13a13c92d35ca5", "sha256": "9a050ca6c90c66961d2972dd2fc8de51062114d338e86569041937f285d6ea5f" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post13.tar.gz", "has_sig": false, "md5_digest": "e4df9afeeb67a8db4e13a13c92d35ca5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178231, "upload_time": "2019-10-09T09:59:03", "url": "https://files.pythonhosted.org/packages/85/84/e005118c8e9f06a3984ce2b7f3077d6d86761cb458bc09899778cb33ca6c/eccw_gui-1.1.0.post13.tar.gz" } ], "1.1.0.post14": [ { "comment_text": "", "digests": { "md5": "16f37beecb60d99184ed574a6966ff57", "sha256": "0ea5e2ee7db0160cf7726a9a0bd5394f48a9426b7c6ae1c87286bd43a35e3af0" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post14-py3-none-any.whl", "has_sig": false, "md5_digest": "16f37beecb60d99184ed574a6966ff57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248255, "upload_time": "2019-10-09T10:03:15", "url": "https://files.pythonhosted.org/packages/e9/57/5eaa206764d554ed9476a4792130e6fc4713da6705d57a09a841f3526ca3/eccw_gui-1.1.0.post14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b19dabe4e86713559335345e630d378", "sha256": "df54e9e1efa2a5cccea51bbf7b6cb76670d8b132f71fef7f377f1b81d9f56b78" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post14.tar.gz", "has_sig": false, "md5_digest": "3b19dabe4e86713559335345e630d378", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178234, "upload_time": "2019-10-09T10:03:19", "url": "https://files.pythonhosted.org/packages/f7/25/14382325c3d9fb5cbd058d5d9c729148b62c0b14ce75b4fa9eb6d0a7fc5d/eccw_gui-1.1.0.post14.tar.gz" } ], "1.1.0.post15": [ { "comment_text": "", "digests": { "md5": "bd5c6941aa59e9af692d3070c494e0da", "sha256": "3f9d40d5310c82a4d845718ec886223ecca58c2d9b14f4eb6e96467f902455da" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post15-py3-none-any.whl", "has_sig": false, "md5_digest": "bd5c6941aa59e9af692d3070c494e0da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249586, "upload_time": "2019-10-09T10:09:52", "url": "https://files.pythonhosted.org/packages/cd/9a/95b49518a637b8c1be99c69176cdd408f13b9a2c36fdff743f3d6f48ff28/eccw_gui-1.1.0.post15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3abfbe534e241521402a14bca8d785ef", "sha256": "b066a658b99b47ef216d5439b104477f5a9479f67edd3b8af0ac2581881f3c2c" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post15.tar.gz", "has_sig": false, "md5_digest": "3abfbe534e241521402a14bca8d785ef", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6179478, "upload_time": "2019-10-09T10:09:56", "url": "https://files.pythonhosted.org/packages/5d/98/bc930f6cb20c676ce29da18ba51db364f8c9e4c7cef32a1fb50fcc353e97/eccw_gui-1.1.0.post15.tar.gz" } ], "1.1.0.post16": [ { "comment_text": "", "digests": { "md5": "25f456a107e7c83a5f45c81c277bc9ca", "sha256": "d907da78ab9298abfbf926d91a514e167a4483ae62407c85f7c8c94d1834a245" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post16-py3-none-any.whl", "has_sig": false, "md5_digest": "25f456a107e7c83a5f45c81c277bc9ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6369242, "upload_time": "2019-10-09T10:26:53", "url": "https://files.pythonhosted.org/packages/9e/9e/8ed46e9387273377a67c0ef3e19b9a3805d067e6015432b13ce2b0ff5256/eccw_gui-1.1.0.post16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db43f1515529d28384b864514a20ec0b", "sha256": "b1ae80c1bf0bc9ed0f5a229cecae09a4d5a9cd9c0116a34db508ff5c73f364d1" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post16.tar.gz", "has_sig": false, "md5_digest": "db43f1515529d28384b864514a20ec0b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6238373, "upload_time": "2019-10-09T10:26:57", "url": "https://files.pythonhosted.org/packages/68/a4/72f2c3080a10577312de9f12c04ffb6f6da95e33252431ddff60a7905af3/eccw_gui-1.1.0.post16.tar.gz" } ], "1.1.0.post17": [ { "comment_text": "", "digests": { "md5": "c47ea9aaa16b7b5f438df4095d60eef7", "sha256": "d7e3127ac594749ac17e99c5938def3fb82ce1c4e154eb14eeaee6b9bb30c6f6" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post17-py3-none-any.whl", "has_sig": false, "md5_digest": "c47ea9aaa16b7b5f438df4095d60eef7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6066838, "upload_time": "2019-10-09T12:56:11", "url": "https://files.pythonhosted.org/packages/14/e8/8391f468e23df6e49a74cfd3d0dcb4eb991fbff13bd7b8f725cbba6a3a88/eccw_gui-1.1.0.post17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f7f048fa68a640b0352cea15854c8d4", "sha256": "aaad2c5e64f857336774e824fa5f8cb62814d04ef0b39c795f1371fe9306a83c" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post17.tar.gz", "has_sig": false, "md5_digest": "5f7f048fa68a640b0352cea15854c8d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5989865, "upload_time": "2019-10-09T12:56:14", "url": "https://files.pythonhosted.org/packages/f9/9e/8ca5486170f19f6c0079d358b1b095b52f1daecc2c385a2597e24ea7d24b/eccw_gui-1.1.0.post17.tar.gz" } ], "1.1.0.post18": [ { "comment_text": "", "digests": { "md5": "5af165e60d9645959d4b071c2fb9d187", "sha256": "a4309ca2f92f39212363e703f492370f9a9aa56bf8d89611e04bad52793570ed" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post18-py3-none-any.whl", "has_sig": false, "md5_digest": "5af165e60d9645959d4b071c2fb9d187", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6063704, "upload_time": "2019-10-09T13:31:01", "url": "https://files.pythonhosted.org/packages/0a/06/18dbdb8e98536441789722a89fdad70c45e39fcb4cfaa0cbcdffafdecba3/eccw_gui-1.1.0.post18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f993c2cdaddaa370c9cdd458e91e1956", "sha256": "c9a25199e2dda3b8c0f62b23bc762316c1385f2aea4f10fb74ca5cdb490d8a98" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post18.tar.gz", "has_sig": false, "md5_digest": "f993c2cdaddaa370c9cdd458e91e1956", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5989908, "upload_time": "2019-10-09T13:31:06", "url": "https://files.pythonhosted.org/packages/6b/54/835843ea4f08e52c2ae180dd631e53fdbaa04fc4db208a9bed6004d5a36e/eccw_gui-1.1.0.post18.tar.gz" } ], "1.1.0.post19": [ { "comment_text": "", "digests": { "md5": "8b30ad9e11713b56f47827f331794374", "sha256": "af2caf7ccd75eaf9793f7c39c65d399b9140e8a9e74f5a46eb1c8f28f6ec03fa" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post19-py3-none-any.whl", "has_sig": false, "md5_digest": "8b30ad9e11713b56f47827f331794374", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6063701, "upload_time": "2019-10-09T14:07:44", "url": "https://files.pythonhosted.org/packages/2b/13/598f41c45dcb32eceeb7fba8339b92e12c411e4e382d8af6c5c8fe2effcc/eccw_gui-1.1.0.post19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d39673a11933125acb5bc20c1841ae8", "sha256": "e7122e00a6b58193b016aea85f46d2e74394a3a2c3289c54c03f470ba8fec240" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post19.tar.gz", "has_sig": false, "md5_digest": "9d39673a11933125acb5bc20c1841ae8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5989917, "upload_time": "2019-10-09T14:07:48", "url": "https://files.pythonhosted.org/packages/ad/86/d92b537b1b0b65f71f4adf012ad61c65fb7a32f3f1051e8c8445255ca108/eccw_gui-1.1.0.post19.tar.gz" } ], "1.1.0.post2": [ { "comment_text": "", "digests": { "md5": "b054566c1c0b3573172c942a6b91fbfb", "sha256": "5de727dcfa38b38130c6144536f1c20344f39f84d7be2d250e3c3092d4b9da5a" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post2-py3-none-any.whl", "has_sig": false, "md5_digest": "b054566c1c0b3573172c942a6b91fbfb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248821, "upload_time": "2019-10-08T09:12:46", "url": "https://files.pythonhosted.org/packages/9c/10/d90a149f29246851664f8ac3a6c1453f0fcf7ba22ecff0262cb316a5e761/eccw_gui-1.1.0.post2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "575f395902719293883bf3409fd70a1c", "sha256": "e92bb5519681883ad76d32b70917115d7fbe750f1178a0227f8cfb70bead7a0f" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post2.tar.gz", "has_sig": false, "md5_digest": "575f395902719293883bf3409fd70a1c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6178916, "upload_time": "2019-10-08T09:13:08", "url": "https://files.pythonhosted.org/packages/0b/a5/b2164ea93afc2ce45834d8ff765e6263e7cabdbded0bb6f5cb4b039a924b/eccw_gui-1.1.0.post2.tar.gz" } ], "1.1.0.post20": [ { "comment_text": "", "digests": { "md5": "15ac50dad53d6dddb7dc5f14d9987e61", "sha256": "a2f7612cda384c3fd81257ae8d92a7127340fac27ead00166c901fbb852d94dd" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post20-py3-none-any.whl", "has_sig": false, "md5_digest": "15ac50dad53d6dddb7dc5f14d9987e61", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6063699, "upload_time": "2019-10-09T16:18:13", "url": "https://files.pythonhosted.org/packages/45/c9/81be1c96ba69958b28f4e05f96009125f0e05a88b4ed1a416dc839d9de80/eccw_gui-1.1.0.post20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f9e758effff94d2c4cea1af97a8f991", "sha256": "3a9326734ab6c613620ab44c498005f1562eef5d63ef5e30d72cda7f480ef8f3" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post20.tar.gz", "has_sig": false, "md5_digest": "1f9e758effff94d2c4cea1af97a8f991", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5990084, "upload_time": "2019-10-09T16:42:39", "url": "https://files.pythonhosted.org/packages/14/35/772b9b5b593a019b76c5372cc3bfeaa40fc6a55b024bff46916d66460aab/eccw_gui-1.1.0.post20.tar.gz" } ], "1.1.0.post21": [ { "comment_text": "", "digests": { "md5": "d523c8bc0d84fb17ca2524c3058ae976", "sha256": "c3b653fe2e35f5aabc09958a5045d132b9fa7f1356a363ae3abc3baa3b0d5faf" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post21-py3-none-any.whl", "has_sig": false, "md5_digest": "d523c8bc0d84fb17ca2524c3058ae976", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6063702, "upload_time": "2019-10-09T17:04:40", "url": "https://files.pythonhosted.org/packages/e9/bc/4b1bd4789f91b42b5bb1095c4ea51fa8a4a4ab605054343616e9374bb5be/eccw_gui-1.1.0.post21-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b167a8e9fd60fbfcba0e0ae142a2cbd", "sha256": "60c8bd69f94596facf52141380e97f5f9b17acfd7f98773e17f7041414945c92" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post21.tar.gz", "has_sig": false, "md5_digest": "3b167a8e9fd60fbfcba0e0ae142a2cbd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5990090, "upload_time": "2019-10-09T17:04:44", "url": "https://files.pythonhosted.org/packages/3f/86/d0038c8fe8c46896a80052698729d74fe2e32a488f1265aa1274aa52703b/eccw_gui-1.1.0.post21.tar.gz" } ], "1.1.0.post22": [ { "comment_text": "", "digests": { "md5": "941ccf2ba8d9cd1e3bed7bef12dc0396", "sha256": "d4fcd9d8cf4f18e5160280f7347c36165ad5c134b797cbe7b9fd1936b6e01705" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post22-py3-none-any.whl", "has_sig": false, "md5_digest": "941ccf2ba8d9cd1e3bed7bef12dc0396", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6063700, "upload_time": "2019-10-09T17:36:42", "url": "https://files.pythonhosted.org/packages/2b/e1/7ba6f34245d2e22bc6d2e6a9419d6f53683a75d2a4931ee513251e2227ab/eccw_gui-1.1.0.post22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67d2e485b113abe5b5d260770ec5c0da", "sha256": "014aff2a9d1c5c65b815dd88d8bb16e9ecf8173b201c56b310999c576cb6fa2c" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post22.tar.gz", "has_sig": false, "md5_digest": "67d2e485b113abe5b5d260770ec5c0da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5990082, "upload_time": "2019-10-09T17:36:46", "url": "https://files.pythonhosted.org/packages/2e/24/0d005d1d2c9514940332a5cbc3d901f86e0b87eeeac0c62f3682fb445546/eccw_gui-1.1.0.post22.tar.gz" } ], "1.1.0.post23": [ { "comment_text": "", "digests": { "md5": "53453d9e6133ae0f0b5bfa127bdf53bb", "sha256": "5368471f482fa5978ae93c0ce2e2a300ba9505b375c6e5cad179ba8e928c6701" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post23-py3-none-any.whl", "has_sig": false, "md5_digest": "53453d9e6133ae0f0b5bfa127bdf53bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6370439, "upload_time": "2019-10-09T17:43:40", "url": "https://files.pythonhosted.org/packages/16/1f/0bf1bcf28e45da4a8f41ce9df4a6d986db36e42292acee74c63913c2a6a1/eccw_gui-1.1.0.post23-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65eaa5686b132d63ec7b8c93c10e1f78", "sha256": "4b7db4fc092968af0cccfb4cef46457208d9ee76b05cf86df258bd7a3d09d3d5" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post23.tar.gz", "has_sig": false, "md5_digest": "65eaa5686b132d63ec7b8c93c10e1f78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6146413, "upload_time": "2019-10-09T17:43:45", "url": "https://files.pythonhosted.org/packages/a6/83/c69a989aa0fb6b3afcf28d7f7c797651e35295a8c0fb6be115b0670a0e56/eccw_gui-1.1.0.post23.tar.gz" } ], "1.1.0.post24": [ { "comment_text": "", "digests": { "md5": "66cfaa9a0979a6382b3404717844ba05", "sha256": "49ac3e204110ad38fdf9a7ec50c0a98ed8c9916411f9354daf0a3903bfa7ca28" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post24-py3-none-any.whl", "has_sig": false, "md5_digest": "66cfaa9a0979a6382b3404717844ba05", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6238599, "upload_time": "2019-10-10T14:29:56", "url": "https://files.pythonhosted.org/packages/7e/fc/1d4135f7a3ecf496aeef15c7d18d90a63c8b60f9ff318a0263b171214de3/eccw_gui-1.1.0.post24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13e051cd83410dc7e1537323e5909508", "sha256": "53da2cb870fa1935b53a5c94aed10c83241064f2ad5463331859bcfdf3354bcd" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post24.tar.gz", "has_sig": false, "md5_digest": "13e051cd83410dc7e1537323e5909508", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6146738, "upload_time": "2019-10-10T14:30:02", "url": "https://files.pythonhosted.org/packages/ad/9b/89dd1b1c2c4491e6f2d8e3fdc9535e67ee253f464b6ae9ea1ef37d336cd8/eccw_gui-1.1.0.post24.tar.gz" } ], "1.1.0.post25": [ { "comment_text": "", "digests": { "md5": "ca04d9f03709eda61cfc89dbdb67046a", "sha256": "a524006d5455a5ed061dec107f045019787bd285229f5281903a158388c7a33c" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post25-py3-none-any.whl", "has_sig": false, "md5_digest": "ca04d9f03709eda61cfc89dbdb67046a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6085246, "upload_time": "2019-10-10T14:55:13", "url": "https://files.pythonhosted.org/packages/54/94/274dfc1e825f8344bd87927761965c6905e21259e58f81392d355385f698/eccw_gui-1.1.0.post25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed9a8107bd150c2f0280c735570294c5", "sha256": "7b593b5e883419fac921dc73cdc77780a02d0e6a9373d119f83c024036b44dbf" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post25.tar.gz", "has_sig": false, "md5_digest": "ed9a8107bd150c2f0280c735570294c5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 5990359, "upload_time": "2019-10-10T14:55:18", "url": "https://files.pythonhosted.org/packages/83/75/91b987f554dcffc64f5f6f4839a74c0affce7a7abd539015d7a117ba2e3c/eccw_gui-1.1.0.post25.tar.gz" } ], "1.1.0.post26": [ { "comment_text": "", "digests": { "md5": "016ce42a3116da9bf383d17c4b67f437", "sha256": "9a59fe9191f534c39212e6bf64d5ff7ab35615822192d65bfb9c79a786a8714d" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post26-py3-none-any.whl", "has_sig": false, "md5_digest": "016ce42a3116da9bf383d17c4b67f437", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 5768408, "upload_time": "2019-10-12T16:03:30", "url": "https://files.pythonhosted.org/packages/5e/f1/d7d075992e2b3be3263173e5c8c08e10ad6c283c0c15daa2e464e3775371/eccw_gui-1.1.0.post26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae0a56cf827fa1a2a16fccf026d8fe92", "sha256": "91390ce2b95710dbb53acd665d40aaf40c0975cc56fc70a0da43a7e25006704a" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post26.tar.gz", "has_sig": false, "md5_digest": "ae0a56cf827fa1a2a16fccf026d8fe92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 17487633, "upload_time": "2019-10-12T16:03:40", "url": "https://files.pythonhosted.org/packages/53/1c/eaac6b92f5d58c4367579085835aa832958c3bdc4a3299b1696677bf7312/eccw_gui-1.1.0.post26.tar.gz" } ], "1.1.0.post27": [ { "comment_text": "", "digests": { "md5": "2d5de30bb4f09bb45af2f1b9d3da1ba3", "sha256": "60b3b479cb6db09ad8f11b82288c6c200ca45f7cf077330cb78c41c480aaf042" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post27-py3-none-any.whl", "has_sig": false, "md5_digest": "2d5de30bb4f09bb45af2f1b9d3da1ba3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 5830158, "upload_time": "2019-10-12T16:12:41", "url": "https://files.pythonhosted.org/packages/b2/98/142199e43d2f15835b070d5c3161e27a3ddd311a48cb9bd34aa44fd76bb9/eccw_gui-1.1.0.post27-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41a79c301af0c68b77ee938c35b0373a", "sha256": "951acc5a4fff501a818c763c87118168ff0f5f930b89d9940dbb0ef47f679e98" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post27.tar.gz", "has_sig": false, "md5_digest": "41a79c301af0c68b77ee938c35b0373a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 17487706, "upload_time": "2019-10-12T16:12:50", "url": "https://files.pythonhosted.org/packages/64/d0/cc976f60ed856ab321ee171c90dc512eed8d328cab81d35ee2cb339e3542/eccw_gui-1.1.0.post27.tar.gz" } ], "1.1.0.post3": [ { "comment_text": "", "digests": { "md5": "75c59609569570586a8dd79581463db3", "sha256": "88c74a96fc0d63f8e7511027e6abe7c5cbe9726fbd78a903f085d7dc1b3f6f11" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post3-py3-none-any.whl", "has_sig": false, "md5_digest": "75c59609569570586a8dd79581463db3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6248830, "upload_time": "2019-10-08T10:57:46", "url": "https://files.pythonhosted.org/packages/2d/0c/22709832938e3ca866799104cd4baf9aac9a1d744bdd673197604d42a633/eccw_gui-1.1.0.post3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8c3b66d4fe05e76ab2b2d3f40ee8f0a", "sha256": "2b3e872c340127b289d1370949be29c69997605ddcdbdd2c1f74062b2b7cc865" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post3.tar.gz", "has_sig": false, "md5_digest": "d8c3b66d4fe05e76ab2b2d3f40ee8f0a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177257, "upload_time": "2019-10-08T10:57:50", "url": "https://files.pythonhosted.org/packages/a0/96/a9057e01da7c17f409d8fe90c9647db3b0c365240275520e86eae11a94e9/eccw_gui-1.1.0.post3.tar.gz" } ], "1.1.0.post4": [ { "comment_text": "", "digests": { "md5": "7e44741c203223f0fd8a9ff19cbc988c", "sha256": "1482c378cac7208d9afee1431f226660a998351de7b9e8c27acfad7b0b705fa7" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post4-py3-none-any.whl", "has_sig": false, "md5_digest": "7e44741c203223f0fd8a9ff19cbc988c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249582, "upload_time": "2019-10-08T11:19:12", "url": "https://files.pythonhosted.org/packages/1a/47/7e9f7d40eaad4a45f3b1046219ad2fa0cc3acbfa588a79e0787cf397a7af/eccw_gui-1.1.0.post4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65bf324ca50366c3a26f12d1152e7002", "sha256": "9705b1f80e90a17200c02c8425c51249ab18df1ea80a7bbff5ec04bcd6016f3b" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post4.tar.gz", "has_sig": false, "md5_digest": "65bf324ca50366c3a26f12d1152e7002", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177942, "upload_time": "2019-10-08T11:19:16", "url": "https://files.pythonhosted.org/packages/e4/5a/f23c9c59c4bac1782d75181b6f962dc16efa4b31840ee939036ec15fffed/eccw_gui-1.1.0.post4.tar.gz" } ], "1.1.0.post5": [ { "comment_text": "", "digests": { "md5": "3d238b1532263f80a691042c2634a8f4", "sha256": "a2a91a5447e29ffdef79c410ad6b42e7358ff203a10a51802b8dcc66ae9ab699" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post5-py3-none-any.whl", "has_sig": false, "md5_digest": "3d238b1532263f80a691042c2634a8f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249584, "upload_time": "2019-10-08T13:36:54", "url": "https://files.pythonhosted.org/packages/f4/5f/8c766be573f4cf179e6644a6a5aff5afc06702e4f0d53a28270885d53ddd/eccw_gui-1.1.0.post5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b634827961f99560e8f4318f3917f99d", "sha256": "35e611b05917b4c7c1de0de4f11aa626c08b6f3c79fd63180a256a18f731da1b" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post5.tar.gz", "has_sig": false, "md5_digest": "b634827961f99560e8f4318f3917f99d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177903, "upload_time": "2019-10-08T13:36:59", "url": "https://files.pythonhosted.org/packages/7c/0f/ffd84ec0a6dd170b0969706965eef2d46dbc08af9e5f2d36595d3d5758f2/eccw_gui-1.1.0.post5.tar.gz" } ], "1.1.0.post6": [ { "comment_text": "", "digests": { "md5": "31dff9b9f00729b448de356f4324c234", "sha256": "3d78b9cadba2d626c37b3c9dff40c59a7745208c605fd3ddba8f2bec0d92196e" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post6-py3-none-any.whl", "has_sig": false, "md5_digest": "31dff9b9f00729b448de356f4324c234", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249584, "upload_time": "2019-10-08T14:24:52", "url": "https://files.pythonhosted.org/packages/3d/fc/58fb2eaceedd5dbd67ba6ab54d54571ca020b6758fdc05a20b60892374a5/eccw_gui-1.1.0.post6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "907febe27bcabd73d6e7ffcdcc3bd156", "sha256": "309489dd1cb62e512d51cefba78eafc1d64dd497911ce1d1aee552988836f467" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post6.tar.gz", "has_sig": false, "md5_digest": "907febe27bcabd73d6e7ffcdcc3bd156", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177445, "upload_time": "2019-10-08T14:24:56", "url": "https://files.pythonhosted.org/packages/12/bd/adccf69da150cd6dd38d9ab86d2d8c11e14fd9187d4cf66f03d978a51658/eccw_gui-1.1.0.post6.tar.gz" } ], "1.1.0.post7": [ { "comment_text": "", "digests": { "md5": "3e81aa0eb09068aa918d49d259bf4e3b", "sha256": "4521e3d5cbe3588668e0cfb660370b6218f38cbe0d76ed9d5511dacdf13801ae" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post7-py3-none-any.whl", "has_sig": false, "md5_digest": "3e81aa0eb09068aa918d49d259bf4e3b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249584, "upload_time": "2019-10-09T08:36:40", "url": "https://files.pythonhosted.org/packages/a4/5c/b16ae3706457beef60c61e0761ba87174702854be27bee65b335cbc5f08a/eccw_gui-1.1.0.post7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e9e8c9ee923de615764ed8e9291bed44", "sha256": "d72c5755b8c4f7d0bff55bbb79e796acb4aeaa677fea0f739cf06b19d75472b9" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post7.tar.gz", "has_sig": false, "md5_digest": "e9e8c9ee923de615764ed8e9291bed44", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177465, "upload_time": "2019-10-09T08:36:45", "url": "https://files.pythonhosted.org/packages/41/e1/bddb87e483533d4f335e6a71406b343fc4d4aea79df3fb9d4cacd80cf40d/eccw_gui-1.1.0.post7.tar.gz" } ], "1.1.0.post8": [ { "comment_text": "", "digests": { "md5": "27a1f0c8c891c13016cb4ec2a957ef8f", "sha256": "79f3b605efe7df129ad626625bc0cc20eea02c7ac448c19c6811a02b83e1c457" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post8.tar.gz", "has_sig": false, "md5_digest": "27a1f0c8c891c13016cb4ec2a957ef8f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177865, "upload_time": "2019-10-09T08:54:26", "url": "https://files.pythonhosted.org/packages/f1/a2/e175b39411f3df630e3a05b41ee82dd38e351cd6a9144f11a0ec846c0d15/eccw_gui-1.1.0.post8.tar.gz" } ], "1.1.0.post9": [ { "comment_text": "", "digests": { "md5": "3e96234c5daab9daa7d35680d979d1ca", "sha256": "7340005828546ca7338607f0404e790d7bb71f190aec1648588fca284eb9fe45" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post9-py3-none-any.whl", "has_sig": false, "md5_digest": "3e96234c5daab9daa7d35680d979d1ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 6249583, "upload_time": "2019-10-09T08:57:09", "url": "https://files.pythonhosted.org/packages/c9/27/f0d35997ef8274f8e5dfbd483aff28aa343885db6af339e049372f10461f/eccw_gui-1.1.0.post9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4fb43038feda4c671e47f438e002c8e", "sha256": "ca58130b2ccd5d46cc5fe0875e130c044e6270e77fbc9335e5fcdcdb6e571479" }, "downloads": -1, "filename": "eccw_gui-1.1.0.post9.tar.gz", "has_sig": false, "md5_digest": "d4fb43038feda4c671e47f438e002c8e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 6177851, "upload_time": "2019-10-09T08:57:13", "url": "https://files.pythonhosted.org/packages/3b/13/601f0640503934f9a11a3b63d703b9e3ac4dcbf38c65ec8532c6c7565587/eccw_gui-1.1.0.post9.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "831aed6b09cc6dad9b65269202a2a75d", "sha256": "39dcc3e2f8df5d4efe72ab10667239d057e05909083f53033ffaceee0bc77e46" }, "downloads": -1, "filename": "eccw_gui-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "831aed6b09cc6dad9b65269202a2a75d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 5828033, "upload_time": "2019-10-13T13:58:22", "url": "https://files.pythonhosted.org/packages/2b/b6/df9e55fcbd0da37e9269d625766df20d665621271027219cd0bb137d7529/eccw_gui-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d755705817f32837e3e3172e8e0d52e", "sha256": "e0b5b16b941cd2f5dfb60d903968a8201981c1960ba61944febdeed88d31c5ab" }, "downloads": -1, "filename": "eccw_gui-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0d755705817f32837e3e3172e8e0d52e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 17486824, "upload_time": "2019-10-13T13:58:28", "url": "https://files.pythonhosted.org/packages/b4/bb/1152f17a6adfede719d7d9b49e2a4d7152b65a8eae7d1ab8d28d981f6e59/eccw_gui-1.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "831aed6b09cc6dad9b65269202a2a75d", "sha256": "39dcc3e2f8df5d4efe72ab10667239d057e05909083f53033ffaceee0bc77e46" }, "downloads": -1, "filename": "eccw_gui-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "831aed6b09cc6dad9b65269202a2a75d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 5828033, "upload_time": "2019-10-13T13:58:22", "url": "https://files.pythonhosted.org/packages/2b/b6/df9e55fcbd0da37e9269d625766df20d665621271027219cd0bb137d7529/eccw_gui-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d755705817f32837e3e3172e8e0d52e", "sha256": "e0b5b16b941cd2f5dfb60d903968a8201981c1960ba61944febdeed88d31c5ab" }, "downloads": -1, "filename": "eccw_gui-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0d755705817f32837e3e3172e8e0d52e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 17486824, "upload_time": "2019-10-13T13:58:28", "url": "https://files.pythonhosted.org/packages/b4/bb/1152f17a6adfede719d7d9b49e2a4d7152b65a8eae7d1ab8d28d981f6e59/eccw_gui-1.1.1.tar.gz" } ] }