{ "info": { "author": "Ignacio Fdez. Galv\u00e1n", "author_email": "jellby@yahoo.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: X11 Applications :: Qt", "Intended Audience :: Science/Research", "Topic :: Multimedia :: Graphics :: 3D Rendering", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Scientific/Engineering :: Visualization" ], "description": "Pegamoid\n========\n\nPegamoid is an orbital viewer especially suited for use with\n[OpenMolcas](https://gitlab.com/Molcas/OpenMolcas). It can be used to view\norbitals and quickly select active spaces for use in CASSCF or RASSCF\ncalculations.\n\nFeatures\n--------\n\nThe following formats can be opened:\n\n* HDF5 files, as generated by some (Open)Molcas modules like SCF or RASSCF, if compiled with HDF5 support.\n\n* InpOrb files, generated by some (Open)Molcas modules like SCF or RASSCF, provided an HDF5 file for the same system was opened first.\n\n* [Molden](http://www.cmbi.ru.nl/molden/) files.\n\n* [Luscus](http://luscus.sourceforge.net/) files, generated by the GRID_IT module.\n\n* Grid files (ASCII), generated by the GRID_IT module.\n\n* [Cube](http://paulbourke.net/dataformats/cube/) files (formatted).\n\nFor HDF5, InpOrb and Molden files, orbitals are computed on the fly from the\nbasis set, and it is possible to change the sampling resolution and shape and\nsize of the sampled volume. Luscus, grid and cube files contain precomputed\nvolumetric data and only the existing data can be displayed.\n\nDepending on availability in the input file, the following features and objects\nare supported:\n\n* Selection of orbital.\n\n* Selection of spin.\n\n* Selection of symmetry irrep.\n\n* Natural average or state-specific orbitals.\n\n* Electron density and Laplacian.\n\n* Natural average or state-specific spin orbitals.\n\n* Spin density.\n\n* Natural difference orbitals.\n\n* Difference, attachment and detachment density.\n\n* Natural transition orbitals.\n\n* Hole and particle density.\n\nFor any orbital or density, gradient lines can be computed and displayed\n(particularly significant for the electron density). Densities can be computed\nfor reduced subsets of orbitals (for instance, only for the active orbitals),\nand the user can write arbitrary notes for each orbital.\n\nThe value, opacity, colors and texture properties used to display isurfaces can\nbe adjusted and the display of the following elements can be toggled:\n\n* Positive and negative parts of the isosurface.\n\n* Nodal surfaces.\n\n* Nuclei and bonds.\n\n* Atom labels.\n\n* Volume box.\n\nFinally, the type of orbital (inactive, active...) can be changed and the\norbitals saved in the following formats usable in the (Open)Molcas programs:\n\n* HDF5 format.\n\n* InpOrb format.\n\nor the current volumetric data or snapshot can be saved as:\n\n* Cube format.\n\n* PNG image.\n\nInstallation\n------------\n\nThe recommended way to install Pegamoid is by using the [`pip` package\nmanager](https://packaging.python.org/tutorials/installing-packages/#use-pip-for-installing):\n\n pip install Pegamoid\n\n(you may also want to add the flags `--upgrade` and/or `--user`).\n\nThen you just run:\n\n pegamoid.py [filename]\n\nwhere ``[filename]`` is an optional supported file to open. In the case of\nInpOrb files, you can supply two filenames (in any order): the InpOrb file and\na corresponding HDF5 file.\n\nThere are other ways to get Pegamoid. One is cloning the git repository, e.g.\n\n git clone https://gitlab.com/Jellby/Pegamoid.git\n\nAnother way, since Pegamoid is contained in a single python script, is\ndownloading only the script file\n[pegamoid.py](https://gitlab.com/Jellby/Pegamoid/raw/master/pegamoid.py?inline=false).\n\nOnce the program is fetched, it can be run directly or through a python\ninterpreter, no installation is needed, i.e.\n\n ./pegamoid.py [filename]\n\nor\n\n python pegamoid.py [filename]\n\nHowever, the script has some requirements (this should be taken care of by\n`pip`, if you use it) that must be installed for it to work:\n\n* Python 2 or python 3 (at least versions 2.7 and 3.4 have been tested).\n\n* Qt with python bindings. PyQt 4, PyQt 5 and PySide have been tested. It is\n recommended to install the python module qtpy (needed for PySide).\n\n* VTK with python bindings. Version 8.1.0 has been tested, earlier versions\n will most likely not work.\n\n* The numpy and h5py python modules.\n\n* Other python modules that may not be installed by default, it should be clear\n which ones, if any, are needed when trying to run Pegamoid.\n\nUse of scratch disk space\n-------------------------\n\nTo speed up the display of several orbitals and the computation of densities,\nPegamoid uses some scratch disk space to store the computed basis functions. A\nfile named ``pegamoid.cache`` will be created in a temporary location (typically\ninside the ``/tmp`` directory). For grids with many points and with many basis\nfunctions, this file could grow very large and even use up all available disk\nspace. The maximum scratch size is by default 1 GiB, but it can be configured in\n\"File > Set scratch\", or through the environment variable\n``PEGAMOID_MAXSCRATCH``, e.g.:\n\n PEGAMOID_MAXSCRATCH=100MB ./pegamoid.py\n\nfor a maximum size of 100 MB. If the scratch size is not enough to hold all\nbasis functions at the current resolution, it will only be used when computing\nthe densities. In the \"Set scratch\" window you can also find the\ninstance-specific temporary path, as well as the maximum cache size, the scratch\nsize currently in use, and the recommended size to allow keeping a cache of all\nbasis functions. The scratch file and directory are removed on a clean exit, but\nif the program crashes or is otherwise abnormally interrupted, they may be left\nbehind.\n\nUse with a remote connection\n----------------------------\n\nProduction calculations are usually not run on the local machine, but on some\nremote server like a supercomputer. To view/save/modify orbital files, it is\nalways possible to transfer the files between the local and remote machines. It\nis, however, more convenient to run Pegamoid directly on the remote machine and\nhave the graphical interface display in the local machine. Unfortunately, there\nare some difficulties that make this nontrivial.\n\nFirst, the different requirements may not be installed in the remote system. A\npossible solution is installing them for the user account with e.g.\n``pip install --user``. In this case it will probably be easier to install qtpy\nand PySide instead of PyQt.\n\nThen, the VTK visualization uses some advanced OpenGL features that may not be\navailable with all graphical drivers and it could be challenging to make it\nwork through a remote connection. We have had success running Pegamoid with\n``vglrun`` inside a\n[ThinLinc](https://www.cendio.com/thinlinc/what-is-thinlinc) session, or a VNC\nsession opened directly from an ssh connection. The specific needs and working\nsolution will probably depend on the hardware and software available in the\nremote computer.\n\nKnown problems\n--------------\n\nIn some systems there are display issues in the 3D window, where some elements\nare wrongly drawn \"on top\" of others (this does not refer to the atom names,\nwhich are always on top). This problem has been seen with PyQt 5, and it's\nusually solved by switching to PyQt 4 or installing QtOpenGL support (in the\n\"About\" dialog, check if the \"Qt API\" line says \"with QtOpenGL\").\n\nIssues with the \"Transform\" and \"Texture\" windows not appearing have also been\nreported in some PyQt 4 versions. It is unclear at the moment what is the\nreason for this.\n\nWhen running in KDE Plasma 5, some shortcuts may not work because KDE tries to\nbe smart and overwrites them (see\n[here](https://stackoverflow.com/a/32711483/1538701) for example). To fix this,\nyou can add to the ``~/.config/kdeglobals`` file:\n\n [Development]\n AutoCheckAccelerators=false\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/Jellby/Pegamoid", "keywords": "", "license": "GPL v3.0", "maintainer": "", "maintainer_email": "", "name": "Pegamoid", "package_url": "https://pypi.org/project/Pegamoid/", "platform": "", "project_url": "https://pypi.org/project/Pegamoid/", "project_urls": { "Homepage": "https://gitlab.com/Jellby/Pegamoid" }, "release_url": "https://pypi.org/project/Pegamoid/2.4.2/", "requires_dist": [ "numpy (>=1.9.0)", "h5py", "VTK (>=8.1.0)", "qtpy", "future (>=0.15.2); python_version < \"3.0\"" ], "requires_python": "", "summary": "Orbital viewer for OpenMolcas", "version": "2.4.2" }, "last_serial": 5821066, "releases": { "2.0": [ { "comment_text": "", "digests": { "md5": "2973dced9d3a68a0757c3c22da255841", "sha256": "132225e71d25ea71c7a50de0536bd4dd05664d89a1a42cfedfa18a56909770b2" }, "downloads": -1, "filename": "Pegamoid-2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2973dced9d3a68a0757c3c22da255841", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50613, "upload_time": "2018-09-12T13:43:17", "url": "https://files.pythonhosted.org/packages/79/10/bc830df98be729deafe131d1e8bfb25c9ca3c6ab8ba7f7721e80d5ba57ac/Pegamoid-2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd002e9d54653e547b0df1cc1cd9e2e9", "sha256": "300718ea9f98cdde7c27bf7718c30f33131026c3205f140be2f1fc7ce34e5d32" }, "downloads": -1, "filename": "Pegamoid-2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fd002e9d54653e547b0df1cc1cd9e2e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50612, "upload_time": "2018-09-12T13:43:18", "url": "https://files.pythonhosted.org/packages/d6/14/6690688e1c98bc497e1ec3c8b562235a3ef8cfaa24b686e4d7859d3a5f5e/Pegamoid-2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "82837164d9fa4e23e6ae2ea206c0179e", "sha256": "3e298faeb061a0a17a3778ed610af44092dda39ae422365aada7b3895bf3539c" }, "downloads": -1, "filename": "Pegamoid-2.0.tar.gz", "has_sig": false, "md5_digest": "82837164d9fa4e23e6ae2ea206c0179e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50593, "upload_time": "2018-09-12T13:43:20", "url": "https://files.pythonhosted.org/packages/00/bd/616c5815ee37a2e5f43609701ff01717ce116c97842479fcec4ca11064fa/Pegamoid-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "3cf4506f9f8b77f85d251d459e807879", "sha256": "b906c0e0661068ee3e888e3bd4d0e272800daaf04054c86e3dd06dc5bb8d4793" }, "downloads": -1, "filename": "Pegamoid-2.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "3cf4506f9f8b77f85d251d459e807879", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50643, "upload_time": "2018-10-30T15:55:52", "url": "https://files.pythonhosted.org/packages/04/8b/646d70522122d6bfd05309495af6e830159bf022b4ed301c5dc151ab60da/Pegamoid-2.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68666e600c44b21631c52c5e0a923b70", "sha256": "1bb69f6c5c86e3c7eebf5ffdf634d535802762ecf0904622d49efc8c73315bd7" }, "downloads": -1, "filename": "Pegamoid-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "68666e600c44b21631c52c5e0a923b70", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50643, "upload_time": "2018-10-30T15:55:54", "url": "https://files.pythonhosted.org/packages/b8/41/6409dad3301d365c7c8b029d54a5a30e369f0f7a7bd93d42110aef426d1c/Pegamoid-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e1392a5ce414b6f53b2be6f223f23a2", "sha256": "aae7bd81440ca8a93575fa6165727c65b3c7a8b42ebd9d0726828e7dd9c58cdb" }, "downloads": -1, "filename": "Pegamoid-2.0.1.tar.gz", "has_sig": false, "md5_digest": "8e1392a5ce414b6f53b2be6f223f23a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50658, "upload_time": "2018-10-30T15:55:55", "url": "https://files.pythonhosted.org/packages/87/a0/81efac8b97597bcbafb1f73390d85f86fca4596021f39c49f91d32df8e47/Pegamoid-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "a648f747cec623d23f651f9fbff3e4e4", "sha256": "deb77a735250a8070eb0582920a75e0b163b46941eefd307a7bda60791e4b0f0" }, "downloads": -1, "filename": "Pegamoid-2.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "a648f747cec623d23f651f9fbff3e4e4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50662, "upload_time": "2019-01-21T12:34:09", "url": "https://files.pythonhosted.org/packages/2c/34/d233f1af5424a96994a3838917319cb844e427d98633d055750713882567/Pegamoid-2.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "edcd0b3419fbb4d2ab97d71ac5249934", "sha256": "e65d18ca4968732c62f6d543b3a3cf95d2fbab4c157b6aced158895883af2a56" }, "downloads": -1, "filename": "Pegamoid-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "edcd0b3419fbb4d2ab97d71ac5249934", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50663, "upload_time": "2019-01-21T12:34:11", "url": "https://files.pythonhosted.org/packages/03/d0/689f224999ce77c33b1372088d54e8f467e97fe048fccbaf71608d404e0e/Pegamoid-2.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f602d79f1eedfdde571ca756984aa0d", "sha256": "0d04c0779271f2edd795abaa802283e6180dd4503a94b37726fcde05832de1fa" }, "downloads": -1, "filename": "Pegamoid-2.0.2.tar.gz", "has_sig": false, "md5_digest": "6f602d79f1eedfdde571ca756984aa0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50616, "upload_time": "2019-01-21T12:34:12", "url": "https://files.pythonhosted.org/packages/c1/eb/a531cff2e3b549ddabbd8242a886055fa749ee68743d93aea126b45defd5/Pegamoid-2.0.2.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "8ef310c90d8ffe980ad789253dc1dda0", "sha256": "52b9c61c69a87497ff78f40ebca7efc638a8f5a6e080073ecfccf096bdbac60d" }, "downloads": -1, "filename": "Pegamoid-2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8ef310c90d8ffe980ad789253dc1dda0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 50985, "upload_time": "2019-03-01T13:44:17", "url": "https://files.pythonhosted.org/packages/51/3c/2c6b62f295453e8a4dcbba9b9237d63812db32cf8ae690931e8405bb2de5/Pegamoid-2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b69d9eb47764d89d58c146203c66d63", "sha256": "b76628471f678cd62a0d0234b70a6846b34a79e2140fd7deb7ffa4c4c45cb31f" }, "downloads": -1, "filename": "Pegamoid-2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6b69d9eb47764d89d58c146203c66d63", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50985, "upload_time": "2019-03-01T13:44:19", "url": "https://files.pythonhosted.org/packages/0b/d5/b79d63841c3e1529f8883af637b689a4892c25a0fe7c4908e3b15ea34ea0/Pegamoid-2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a220ae9252a76984d2b2bf0f1def8c4", "sha256": "ca7d98549c0d7e79de13388194031dbf653fa1e0e71cc97df8a41751ab561961" }, "downloads": -1, "filename": "Pegamoid-2.1.tar.gz", "has_sig": false, "md5_digest": "7a220ae9252a76984d2b2bf0f1def8c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51040, "upload_time": "2019-03-01T13:44:20", "url": "https://files.pythonhosted.org/packages/6a/b3/754b154924f9cadb277ad60457b9359e224c6940b82eec2a9133293026e1/Pegamoid-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "8d268bbfc5c352195c478fd8ace375a8", "sha256": "f40d5cdba224c8f4a7910271e25d5450971ebf257615b6ae26fcbbccb9e5e8ae" }, "downloads": -1, "filename": "Pegamoid-2.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8d268bbfc5c352195c478fd8ace375a8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 51036, "upload_time": "2019-04-13T10:57:07", "url": "https://files.pythonhosted.org/packages/9d/16/a9f645b8db984564f4b7d11d4f8d858b2c1f6ab0157829d693f0a690409f/Pegamoid-2.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6054db507084a7ca1b410f5cb13fc50", "sha256": "9035ea8b73f04d1bad4b5a2ff17ba3fcc4c8a11036ff038c6aae56959e8baa04" }, "downloads": -1, "filename": "Pegamoid-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d6054db507084a7ca1b410f5cb13fc50", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51036, "upload_time": "2019-04-13T10:57:09", "url": "https://files.pythonhosted.org/packages/50/81/1ec2581e224db35cb321f34af294543b16a7da2b315dcae50c0ea3ef70a4/Pegamoid-2.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d35fe494f5b9b75efc26bcbede741365", "sha256": "e7d21d7f51644fde581bc41c9619fd5e2cc1d080224df8ab7ded7aef9b20a5c0" }, "downloads": -1, "filename": "Pegamoid-2.1.1.tar.gz", "has_sig": false, "md5_digest": "d35fe494f5b9b75efc26bcbede741365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51085, "upload_time": "2019-04-13T10:57:11", "url": "https://files.pythonhosted.org/packages/46/9a/d5b3a94ae3a1a9cece4a31111b1aedc79b0339fddf7702a99906c5c49a3f/Pegamoid-2.1.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "64152823cc1ca712d75810f6c5342ddd", "sha256": "7cd8fc3ef2b79722af77704790dc3b8e54ae98e139e6c7427c019b6418eb4bb0" }, "downloads": -1, "filename": "Pegamoid-2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "64152823cc1ca712d75810f6c5342ddd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 58847, "upload_time": "2019-04-23T15:55:03", "url": "https://files.pythonhosted.org/packages/fa/8f/2366ccc4b3b95a41818b0d5df81ad4797a77f42cf812e0860afa5be72df1/Pegamoid-2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "169443b7b0b5a1716073ec982ba9fe30", "sha256": "6632663f963b19661159a69820431c596ab42d8964046b8ca52c4327893db617" }, "downloads": -1, "filename": "Pegamoid-2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "169443b7b0b5a1716073ec982ba9fe30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58844, "upload_time": "2019-04-23T15:55:05", "url": "https://files.pythonhosted.org/packages/84/c2/960e67cab2baee0180a365edc72f1c1b6f30ed679f83e42dc8362df37017/Pegamoid-2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ee2b83db62ad0b0ab02be4fe3e19685", "sha256": "81376be24b8cd8f6f7c37d0059ad777648ac1601fccd56961cbd30551e0ebbe5" }, "downloads": -1, "filename": "Pegamoid-2.2.tar.gz", "has_sig": false, "md5_digest": "3ee2b83db62ad0b0ab02be4fe3e19685", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59116, "upload_time": "2019-04-23T15:55:07", "url": "https://files.pythonhosted.org/packages/dc/fb/cb4ffb3280aecb76c3c9a12559cf27c86efb094ff86a527c3be148f56638/Pegamoid-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "fb92b0bcb2af81614a58cc815b1fb7fb", "sha256": "15b228e0da708e26f036b162b504ae3ac685249552fd054ae2ee1eb8e615bacf" }, "downloads": -1, "filename": "Pegamoid-2.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "fb92b0bcb2af81614a58cc815b1fb7fb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 59193, "upload_time": "2019-05-13T12:28:43", "url": "https://files.pythonhosted.org/packages/3b/a3/097d3c88d165a699d7f32318136ddf721fd22b8925b50964fa983b40ce12/Pegamoid-2.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c9989f155becdcdfc568372f2d4d095", "sha256": "599481b527e0f7155ff0b408f398ec8b25667bfee798693d8609a76d12882caa" }, "downloads": -1, "filename": "Pegamoid-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9c9989f155becdcdfc568372f2d4d095", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59192, "upload_time": "2019-05-13T12:28:45", "url": "https://files.pythonhosted.org/packages/99/36/c15457710a102d7e16e7ad0deaaa218793bf152feff2aafcf0c97215dbc3/Pegamoid-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "360c6abdd7da5a504d586c32b02e2897", "sha256": "a07caeccb42677eed3a2502343eb716d812cc86700818d476ebeb5098255b41f" }, "downloads": -1, "filename": "Pegamoid-2.2.1.tar.gz", "has_sig": false, "md5_digest": "360c6abdd7da5a504d586c32b02e2897", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59523, "upload_time": "2019-05-13T12:28:47", "url": "https://files.pythonhosted.org/packages/7a/85/d5379ae5ef2c1296d9a98c8154656a285aa27b4e7cb812c76702101c5a9f/Pegamoid-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "1dbfdf57500ac2d67118624ec5b84f92", "sha256": "7365ccdfa5cde901b4bd05285ad5ece162e9daff812cb6ce8fd966df5cd80bd8" }, "downloads": -1, "filename": "Pegamoid-2.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "1dbfdf57500ac2d67118624ec5b84f92", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 63135, "upload_time": "2019-05-25T08:45:04", "url": "https://files.pythonhosted.org/packages/67/30/cbcb6c13dad6187ffbab330d0d2751842c1f9a39b01b59799e2237ce160f/Pegamoid-2.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4802fa65addd8be35befe800affcb3c", "sha256": "e857df5d8d0f34e2b2c34a5fd6073e7a7f2dc6ba5fd61d70f8d151b681b51458" }, "downloads": -1, "filename": "Pegamoid-2.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f4802fa65addd8be35befe800affcb3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63134, "upload_time": "2019-05-25T08:45:06", "url": "https://files.pythonhosted.org/packages/7e/19/f89a261596fc3c9ecdae893d83f64685d187490f00f3093f7bffa74f1abd/Pegamoid-2.2.2-py3-none-any.whl" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "64b2340d1d56ee592efcafd70ebf5df1", "sha256": "358ea10edc880f52eae435d0e02bec0f9ebdbbb06687a60193ec8a4c14ef7d17" }, "downloads": -1, "filename": "Pegamoid-2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "64b2340d1d56ee592efcafd70ebf5df1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 69019, "upload_time": "2019-07-25T10:45:14", "url": "https://files.pythonhosted.org/packages/e6/1a/79981971690f3af68f8cdd8953e59935c23cb7a0701a33f6f0a8fe80e1e5/Pegamoid-2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aa36971c863bc1277267d1fba28d701", "sha256": "206b754ee5cfdd196dc288f47d734489f6ca8e22efd09b166f737f0a9328b46f" }, "downloads": -1, "filename": "Pegamoid-2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2aa36971c863bc1277267d1fba28d701", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 69018, "upload_time": "2019-07-25T10:45:16", "url": "https://files.pythonhosted.org/packages/69/34/b87f6689251d9f768474c6695672ecdf2d303efc7f3867c7cd746ae257a9/Pegamoid-2.3-py3-none-any.whl" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "fd0b74afa53bac9feef57602a84c5bbd", "sha256": "e1a132a98699dd0dc68b6a97966ed4c95251ad7117bde6af9b50dc5ddecb92a9" }, "downloads": -1, "filename": "Pegamoid-2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "fd0b74afa53bac9feef57602a84c5bbd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67025, "upload_time": "2019-08-30T12:22:10", "url": "https://files.pythonhosted.org/packages/8b/db/bdd5abcda2f599f8676636b0695d61d6d8846c4c265cd0e6cf48fcddc9a2/Pegamoid-2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77295353be51fdf903d2bfa395e2783f", "sha256": "12ec96e67805adde8789e322e886a6fe669ac21edf323bf33ad16e159f7b0a4e" }, "downloads": -1, "filename": "Pegamoid-2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "77295353be51fdf903d2bfa395e2783f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67025, "upload_time": "2019-08-30T12:22:13", "url": "https://files.pythonhosted.org/packages/f4/06/0d5adcfd55012ee51351432c656f2dd822482f427fe419a3b1623a60db4f/Pegamoid-2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bcc4509bede276c053ae0d5397a245bb", "sha256": "8f65acaef2beb5c866a5d10e6000f8078de3d3ada0eceb57d8487160d25cc6a4" }, "downloads": -1, "filename": "Pegamoid-2.4.tar.gz", "has_sig": false, "md5_digest": "bcc4509bede276c053ae0d5397a245bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67416, "upload_time": "2019-08-30T12:22:15", "url": "https://files.pythonhosted.org/packages/28/15/d2ed4db9b48fc15337a5e30092ad4c36f45b5bbf88621c54e53e63fe895f/Pegamoid-2.4.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "129981cb270b647e808e122c9583161c", "sha256": "fa1137fc771b04acb54b55b7519f6b5c14ce159b19f73fbc9e8f80252fc1ddb2" }, "downloads": -1, "filename": "Pegamoid-2.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "129981cb270b647e808e122c9583161c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67236, "upload_time": "2019-09-06T13:39:58", "url": "https://files.pythonhosted.org/packages/7f/e5/4ea20665382d4bdc94b5f813e76384bc8393735c5eacaf7eaa8a124fd0be/Pegamoid-2.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a35678ac51712fc84970977c427e222c", "sha256": "46917663901c50ba3e3c47a8dec87d41436d609db54955c29fa2590481ec6bc1" }, "downloads": -1, "filename": "Pegamoid-2.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a35678ac51712fc84970977c427e222c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67235, "upload_time": "2019-09-06T13:40:00", "url": "https://files.pythonhosted.org/packages/90/63/6fe1ba6a57f289fe6dfbbbd70d67edd6b0ad054a1d26c2a43d0548bde181/Pegamoid-2.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc42f937a699a5052f828d9e53670484", "sha256": "580fb3b8e405ce58d37236dee48a3a32ff12fb0a4322783d353ba92d0ffaa8ed" }, "downloads": -1, "filename": "Pegamoid-2.4.1.tar.gz", "has_sig": false, "md5_digest": "bc42f937a699a5052f828d9e53670484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67600, "upload_time": "2019-09-06T13:40:02", "url": "https://files.pythonhosted.org/packages/4d/6e/d71e86f4ccbbab3c0160f2b3eb2b239a2a6cbd9dec5421fa3253d8010df0/Pegamoid-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "8e2ed00fd48eb1193a45466197834cc8", "sha256": "9716d70b338eba7bd2c1cd18248bbca65973b0b0744a78d5fbd4b5e5c5b68fd8" }, "downloads": -1, "filename": "Pegamoid-2.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "8e2ed00fd48eb1193a45466197834cc8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67240, "upload_time": "2019-09-12T15:08:17", "url": "https://files.pythonhosted.org/packages/69/fc/07430340072b147eb9540a60ba1cb69e7e8fffb06d0bd89849e08253832b/Pegamoid-2.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05a16dac5eeab9270f4436a22bf0841f", "sha256": "8dacf197d8d6f39552daa5c38ad7f97b8b28d0830d44214b64c1572c71635da6" }, "downloads": -1, "filename": "Pegamoid-2.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "05a16dac5eeab9270f4436a22bf0841f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67239, "upload_time": "2019-09-12T15:08:19", "url": "https://files.pythonhosted.org/packages/1e/16/a056d4a105a2ebc523e9af048000e44d9aa4650e760a6a4192d7cc5506ac/Pegamoid-2.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc97b0ab08f3e1d9490631131f3296eb", "sha256": "af90d9e3a005534d82acb0f538dad9f602a9ac2d1ae9ba727c9c50864433566e" }, "downloads": -1, "filename": "Pegamoid-2.4.2.tar.gz", "has_sig": false, "md5_digest": "cc97b0ab08f3e1d9490631131f3296eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67602, "upload_time": "2019-09-12T15:08:20", "url": "https://files.pythonhosted.org/packages/ec/74/d4dfaab70ebcbc9a3c734c6ccda1aaf065f2c5fa53d90d9806372f32526a/Pegamoid-2.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8e2ed00fd48eb1193a45466197834cc8", "sha256": "9716d70b338eba7bd2c1cd18248bbca65973b0b0744a78d5fbd4b5e5c5b68fd8" }, "downloads": -1, "filename": "Pegamoid-2.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "8e2ed00fd48eb1193a45466197834cc8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67240, "upload_time": "2019-09-12T15:08:17", "url": "https://files.pythonhosted.org/packages/69/fc/07430340072b147eb9540a60ba1cb69e7e8fffb06d0bd89849e08253832b/Pegamoid-2.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05a16dac5eeab9270f4436a22bf0841f", "sha256": "8dacf197d8d6f39552daa5c38ad7f97b8b28d0830d44214b64c1572c71635da6" }, "downloads": -1, "filename": "Pegamoid-2.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "05a16dac5eeab9270f4436a22bf0841f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67239, "upload_time": "2019-09-12T15:08:19", "url": "https://files.pythonhosted.org/packages/1e/16/a056d4a105a2ebc523e9af048000e44d9aa4650e760a6a4192d7cc5506ac/Pegamoid-2.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc97b0ab08f3e1d9490631131f3296eb", "sha256": "af90d9e3a005534d82acb0f538dad9f602a9ac2d1ae9ba727c9c50864433566e" }, "downloads": -1, "filename": "Pegamoid-2.4.2.tar.gz", "has_sig": false, "md5_digest": "cc97b0ab08f3e1d9490631131f3296eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67602, "upload_time": "2019-09-12T15:08:20", "url": "https://files.pythonhosted.org/packages/ec/74/d4dfaab70ebcbc9a3c734c6ccda1aaf065f2c5fa53d90d9806372f32526a/Pegamoid-2.4.2.tar.gz" } ] }