{ "info": { "author": "Guillermo Avenda\u00f1o Franco", "author_email": "gufranco@mail.wvu.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Scientific/Engineering :: Physics" ], "description": "[![Build Status](https://travis-ci.org/MaterialsDiscovery/PyChemia.svg?branch=master)](https://travis-ci.org/MaterialsDiscovery/PyChemia)\n[![PyPI version](https://badge.fury.io/py/pychemia.svg)](https://badge.fury.io/py/pychemia)\n[![Coverage Status](https://coveralls.io/repos/github/MaterialsDiscovery/PyChemia/badge.svg?branch=master)](https://coveralls.io/github/MaterialsDiscovery/PyChemia?branch=master)\n[![Documentation Status](https://readthedocs.org/projects/pychemia/badge/?version=latest)](http://pychemia.readthedocs.io/en/latest/?badge=latest)\n[![HitCount](http://hits.dwyl.io/MaterialsDiscovery/PyChemia.svg)](http://hits.dwyl.io/MaterialsDiscovery/PyChemia)\n\nPyChemia, Python Framework for Materials Discovery and Design\n=============================================================\n\n![PyChemia](https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_Small.png)\n\nPyChemia is an open-source Python Library for materials structural\nsearch. The purpose of the initiative is to create a method agnostic\nframework for materials discovery and design using a variety of methods\nfrom Minima Hoping to Soft-computing based methods. PyChemia is also a\nlibrary for data-mining, using several methods to discover interesting\ncandidates among the materials already processed.\n\nThe core of the library is the Structure python class, it is able to\ndescribe periodic and non-periodic structures. As the focus of this\nlibrary is structural search the class defines extensive capabilities to\nmodify atomic structures.\n\nThe library includes capability to read and write in several ab-initio\ncodes. At the level of DFT, PyChemia support VASP, ABINIT and Octopus.\nAt Tight-binding level development is in process to support DFTB+ and\nFireball. This allows the library to compute electronic-structure\nproperties using state-of-the-art ab-initio software packages and\nextract properties from those calculations.\n\nInstallation\n============\n\nYou can install pychemia in several ways. We are showing 3 ways of\ninstalling PyChemia inside a Virtual environment. A virtual environment\nis a good way of isolating software packages from the pacakges installed\nwith the Operating System. The decision on which method to use\ndepends if you want to use the most recent code or the package uploaded\nfrom time to time to PyPi. The last method is particularly suited for\ndevelopers who want to change the code and get those changes operative without\nan explicit instalation.\n\n\nInstalling with pip from pypi.org on a virtual environment \n----------------------------------------------------------\n\nThis method installs PyChemia from the packages uploaded\nto PyPi every month. It will provides a version of \nPyChemia that is stable.\n\nFirst, create and activate the virtual environment.\nWe are using the name `pychemia_ve`, but that is arbitrary.\n\n```bash\nvirtualenv pychemia_ve\nsource pychemia_ve/bin/activate\n```\n\nWhen the virtual environment is activated, your prompt \nchanges to `(pychemia_ve)...$`. Now, install pychemia \nwith pip\n\n```bash\npython3 -m pip install pychemia\n```\n\nInstalling with pip from a cloned repo on a virtual environment\n---------------------------------------------------------------\n\nThis method installs PyChemia from the Github repo.\nThe method will install PyChemia from the most recent sources.\n\nFirst, create and activate the virtual environment.\nWe are using the name `pychemia_ve`, but that is arbitrary.\n\n```bash\nvirtualenv pychemia_ve\nsource pychemia_ve/bin/activate\n```\n\nSecond, clone the repository from GitHub\n\n```bash\ngit clone https://github.com/MaterialsDiscovery/PyChemia.git\n```\n\nFinally, install from the repo folder\n\n```bash\npython3 -m pip install PyChemia\n```\n\nUsing PyChemia from repo folder on a virtual environment\n--------------------------------------------------------\n\nThis method is mostly used for development. \nIn this way PyChemia is not actually installed and changes to the code\nwill take inmediate effect.\n\nFirst, create and activate the virtual environment.\nWe are using the name `pychemia_ve`, but that is arbitrary.\n \n```bash\nvirtualenv pychemia_ve\nsource pychemia_ve/bin/activate\n```\n\nClone the repository\n\n```bash\ngit clone https://github.com/MaterialsDiscovery/PyChemia.git\n```\n\nGo to repo folder, install Cython with pip and \nexecute `setup.py` to build the Cython modules. \n\n```bash\ncd PyChemia\npython3 -m pip install Cython\npython3 setup.py build_ext --inplace\npython3 setup.py build\n```\n\nFinally, install the packages required for PyChemia to work\n\n```bash\npython3 -m pip install -r requirements.txt\n```\n\nSet the variable $PYTHONPATH to point to PyChemia folder, in the case of bash it will be:\n\n```bash\nexport PYTHONPATH=`path`\n```\n\nOn C shell (csh or tcsh)\n\n```csh\nsetenv PYTHONPATH `path`\n```\n\nPyChemia requirements\n=====================\n\nPyChemia relies on a number of other python packages to \noperate. Some of them are mandatory and they must be installed.\nOther packages are optional and their absence will only constrain\ncertain capabilities. \n\nMandatory\n---------\n\n1. Python >= 3.6\n The library is tested on Travis for Python 3.6 up to 3.9\n Support for Python 2.7 has been removed\n\n https://travis-ci.org/MaterialsDiscovery/PyChemia\n\n2. [Numpy](http://www.numpy.org/ \"Numpy\") >= 1.19\n Fundamental library for numerical intensive computation in Python.\n Numpy arrays are essential for efficient array manipulation. \n\n3. [SciPy](http://scipy.org/ \"SciPy\") >= 1.5\n Used mostly for Linear Algebra, FFT and spatial routines.\n\n4. [Spglib](http://spglib.sourceforge.net/) >= 1.9\n Used to determine symmetry groups for periodic structures\n\n5. [Matplotlib](http://matplotlib.org/ \"Matplotlib\") >= 3.3\n Used to plot band structures, densities of states and other 2D plots\n\n6. [PyMongo](http://api.mongodb.org/python/current/) >= 3.11\n Used for structural search PyChemia relies strongly in MongoDB and its python driver. \n For the MongoDB server, any version beyond 3.11 should be fine. \n We have tested pychemia on MongoDB 4.0\n\n7. [psutil](https://github.com/giampaolo/psutil) >= 5.8\n Cross-platform lib for process and system monitoring in Python\n\n\nOptional\n--------\n\n1. [nose](https://nose.readthedocs.io/en/latest/) >= 1.3.7 A python\n library for testing, simply go to the source directory and execute\n\n nosetests -v\n\n2. [pytest](https://docs.pytest.org/en/latest/) \n Another utility for testing. \n\n3. [Pandas](http://pandas.pydata.org/ \"Pandas\")\n Library for Data Analysis used by the datamining modules\n\n4. [PyMC](http://pymc-devs.github.io/pymc/index.html)\n PyMC is a python module that implements Bayesian statistical models \n and fitting algorithms\n Important for the datamining capabilities of PyChemia\n\n5. [Mayavi](http://docs.enthought.com/mayavi/mayavi/ \"Mayavi\") >= 4.1\n Some basic visualization tools are incorporated using this library\n\n6. [ScientificPython](http://dirac.cnrs-orleans.fr/plone/software/scientificpython/overview/ \"Scientific Python\") >2.6\n This library is used for reading and writing NetCDF files\n\n7. [pymatgen](http://www.pymatgen.org \"pymatgen\") >= 2.9\n pymatgen is an excellent library for materials analysis\n\n8. [ASE](https://wiki.fysik.dtu.dk/ase/ \"Atomic Simulation Environment\")\n Atomic Simulation Environment is another good library for ab-initio calculations.\n Quite impressive for the number of ab-initio packages supported\n\n9. [qmpy](http://oqmd.org/static/docs/index.html \"qmpy\")\n The Python library behind the [Open Quantum Materials Database](http://oqmd.org).\n The OQMD is a database of DFT calculated structures.\n For the time being the database contains more than 300000 structures, with more than\n 90% of them with the electronic ground-state computed.\n\n10. [coverage](https://bitbucket.org/ned/coveragepy) >= 4.0.1\n Provides code coverage analysis\n\n11. [python-coveralls](https://github.com/z4r/python-coveralls)\n To submit coverage information to coveralls.io\n\n https://coveralls.io/github/MaterialsDiscovery/PyChemia\n\nDocumentation\n=============\n\nInstructions for installation, using and programming scripts with PyChemia\ncan be found on two repositories for documentation:\n\n* Read The Docs:\n \n http://pychemia.readthedocs.io/en/latest\n \n* Python Hosted:\n \n http://pythonhosted.org/pychemia\n\nDocumentation is hosted on [Read the Docs](https://readthedocs.org/projects/pychemia/) also available with Short URLs [readthedocs](http://pychemia.readthedocs.io) and [rtfd](http://pychemia.rtfd.io)\n\nDocumentation is also hosted on [Python Hosted](http://pythonhosted.org/pychemia/index.html)\n\nSources\n=======\n\nThe main repository is on [GitHub](https://github.com/MaterialsDiscovery/PyChemia)\n\nSources and wheel binaries are also distrubuted on [PyPI](https://pypi.python.org/pypi/pychemia) or [PyPI](https://pypi.org/project/pychemia/)\n\nStructure of the Library\n========================\n\n![PyChemia](https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_code.png)\n\n![PyChemia](https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_workflow.png)\n\nContributors\n============\n\n1. Prof. Aldo H. Romero [West Virginia University] (Project Director)\n\n2. Guillermo Avenda\u00f1o-Franco [West Virginia University]\n (Basic Infrastructure)\n\n3. Adam Payne [West Virginia University] (Bug fixes (Populations,\n Relaxators, and KPoints) )\n\n4. Irais Valencia Jaime [West Virginia University] (Simulation\n and testing)\n\n5. Sobhit Singh [West Virginia University] (Data-mining)\n\n6. Francisco Mu\u00f1oz [Universidad de Chile] (PyPROCAR)\n\n7. Wilfredo Ibarra Hernandez [West Virginia University] (Interface\n with MAISE)\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/pychemia/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://materialsdiscovery.github.io/PyChemia", "keywords": "electronic,structure,analysis,materials,discovery,metaheuristics", "license": "LICENSE.txt", "maintainer": "", "maintainer_email": "", "name": "pychemia", "package_url": "https://pypi.org/project/pychemia/", "platform": "", "project_url": "https://pypi.org/project/pychemia/", "project_urls": { "Homepage": "https://materialsdiscovery.github.io/PyChemia" }, "release_url": "https://pypi.org/project/pychemia/0.21.9.15/", "requires_dist": null, "requires_python": ">=3.6, <4", "summary": "Python Framework for Materials Discovery and Design", "version": "0.21.9.15", "yanked": false, "yanked_reason": null }, "last_serial": 11462458, "releases": { "0.1.2": [ { "comment_text": "", "digests": { "md5": "05062c3c9e1faa1f0e39eeefaf2b09c5", "sha256": "21a60eb693abfb7ec41f657802ff086b049f4c9e15f66f9febcf5b8fe95cdeae" }, "downloads": -1, "filename": "pychemia-0.1.2.tar.gz", "has_sig": false, "md5_digest": "05062c3c9e1faa1f0e39eeefaf2b09c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1993194, "upload_time": "2016-05-13T23:42:13", "upload_time_iso_8601": "2016-05-13T23:42:13.825893Z", "url": "https://files.pythonhosted.org/packages/a6/5d/e81575a029ca3c5d3ee1c3494825dbb536756ac34d6dc34e8c39114d63cb/pychemia-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.3": [ { "comment_text": "", "digests": { "md5": "676e6599d40d27f5bfaa74c5fd67b57f", "sha256": "a1ef4ee2b0501dad91ffbe7b513ca728b07b83c3f32a43f01fd42d36b8e7418d" }, "downloads": -1, "filename": "pychemia-0.17.3.tar.gz", "has_sig": false, "md5_digest": "676e6599d40d27f5bfaa74c5fd67b57f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2040426, "upload_time": "2017-03-08T03:52:25", "upload_time_iso_8601": "2017-03-08T03:52:25.592458Z", "url": "https://files.pythonhosted.org/packages/55/c0/53e6e0140e491dc1de46ad2bfd816c6b1f79844ca8729eba52a23e4184e3/pychemia-0.17.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.3.8": [ { "comment_text": "", "digests": { "md5": "539f4db608ee85ba6e95daeb425ceff1", "sha256": "f60dbd0f970aa255ff49792fdc599f534a2ddc810ea4914ef78fe80bb41d48b1" }, "downloads": -1, "filename": "pychemia-0.17.3.8.tar.gz", "has_sig": false, "md5_digest": "539f4db608ee85ba6e95daeb425ceff1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2040518, "upload_time": "2017-03-08T17:36:10", "upload_time_iso_8601": "2017-03-08T17:36:10.194911Z", "url": "https://files.pythonhosted.org/packages/c5/d2/54337e4e2957b849151ce457ea8f4a0853ced736536eece304ba2048d369/pychemia-0.17.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2.15": [ { "comment_text": "", "digests": { "md5": "a165849b7667f016bdbc9d446191c23b", "sha256": "a08705f5a9244f117d9c027d6e35c01ca54a5ac52223ac0225b643b44fbbff62" }, "downloads": -1, "filename": "pychemia-0.18.2.15.tar.gz", "has_sig": false, "md5_digest": "a165849b7667f016bdbc9d446191c23b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 327989, "upload_time": "2018-02-15T18:37:26", "upload_time_iso_8601": "2018-02-15T18:37:26.560134Z", "url": "https://files.pythonhosted.org/packages/21/ec/24dfc31cc5cceeba4a418c1863846099dd3565edd89f93c0be883cf68ea7/pychemia-0.18.2.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2.19": [ { "comment_text": "", "digests": { "md5": "c6f61bb6cf1c54c70713d9020a37fa3c", "sha256": "ea83a1e5e885c067ae3c60c96b44be11bb3ea2851d36f403c7d1020321830590" }, "downloads": -1, "filename": "pychemia-0.18.2.19.tar.gz", "has_sig": false, "md5_digest": "c6f61bb6cf1c54c70713d9020a37fa3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 290553, "upload_time": "2018-02-20T04:02:50", "upload_time_iso_8601": "2018-02-20T04:02:50.985693Z", "url": "https://files.pythonhosted.org/packages/41/40/4b827940291a8bfd920948c757dec601f055afcd254cd2efc500cc3dffc2/pychemia-0.18.2.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2.20": [ { "comment_text": "", "digests": { "md5": "a7d0e4c99eef18cf367e14e48b793667", "sha256": "b2ad7f1792bea2c49b95b7467766b507c160adecc1623fa793b97862e73d0fcd" }, "downloads": -1, "filename": "pychemia-0.18.2.20-py3-none-any.whl", "has_sig": false, "md5_digest": "a7d0e4c99eef18cf367e14e48b793667", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 468492, "upload_time": "2018-02-20T16:05:07", "upload_time_iso_8601": "2018-02-20T16:05:07.574188Z", "url": "https://files.pythonhosted.org/packages/92/fc/bfbaeb9311c7376bcba35425bd4ccabbd25bfa1783f4474ccc5ff63f8d7c/pychemia-0.18.2.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85232bcb3d7e8954b3c5006c8be9c88a", "sha256": "d7144f3374e8df0ce0367468f92c3b681384a9a8fd0a7d830bc674ed002e6339" }, "downloads": -1, "filename": "pychemia-0.18.2.20.tar.gz", "has_sig": false, "md5_digest": "85232bcb3d7e8954b3c5006c8be9c88a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 290577, "upload_time": "2018-02-20T16:04:42", "upload_time_iso_8601": "2018-02-20T16:04:42.563707Z", "url": "https://files.pythonhosted.org/packages/d0/cb/d24a344730aa0ae2b83da57543618f7ed2912b69c7f3daf7e4a7f2f61caf/pychemia-0.18.2.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2.21": [ { "comment_text": "", "digests": { "md5": "03d4a2f6895af655aba54a9eca0e743c", "sha256": "f56809ef46e3b2fe3f0a1d493d6d50499e0a47df2a441c41ad231c0cb91f3104" }, "downloads": -1, "filename": "pychemia-0.18.2.21-py3-none-any.whl", "has_sig": false, "md5_digest": "03d4a2f6895af655aba54a9eca0e743c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 369891, "upload_time": "2018-02-21T14:22:17", "upload_time_iso_8601": "2018-02-21T14:22:17.684486Z", "url": "https://files.pythonhosted.org/packages/2e/1c/cf967c0628d6a405a7f476f6812f8d6e293eb04c5457c551e942868a70f3/pychemia-0.18.2.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba1f32cde01e24e688c014f12b463fb1", "sha256": "b0c6e128a6d571298d890abb6fcb7562afd7ea53da8720796866ea9c042b84f9" }, "downloads": -1, "filename": "pychemia-0.18.2.21.tar.gz", "has_sig": false, "md5_digest": "ba1f32cde01e24e688c014f12b463fb1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 24667891, "upload_time": "2018-02-21T14:22:29", "upload_time_iso_8601": "2018-02-21T14:22:29.888658Z", "url": "https://files.pythonhosted.org/packages/3a/b9/614aec6329936ffb2a61904498b8fa30c47199b0a078829f3b16c78f88f7/pychemia-0.18.2.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.5.25": [ { "comment_text": "", "digests": { "md5": "3044757a7745219b6e3bc99acb7277a0", "sha256": "69d5b06495b5549c6c712fc7ba3b2823db1dda56bdddaa459bf505fe6d0bfbc9" }, "downloads": -1, "filename": "pychemia-0.18.5.25.tar.gz", "has_sig": false, "md5_digest": "3044757a7745219b6e3bc99acb7277a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 24558483, "upload_time": "2018-07-25T14:52:54", "upload_time_iso_8601": "2018-07-25T14:52:54.838217Z", "url": "https://files.pythonhosted.org/packages/ec/5e/4ab625c815b21219572608e502a927cf23d4a11bdf0399806649bb107015/pychemia-0.18.5.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.7.25": [ { "comment_text": "", "digests": { "md5": "b2b4859e1a97e42482121c0af1856a28", "sha256": "c797bf423b0bde34712333dc4b02c3d3701bfa8e7dfb454afce6dc2c57349f0c" }, "downloads": -1, "filename": "pychemia-0.18.7.25.tar.gz", "has_sig": false, "md5_digest": "b2b4859e1a97e42482121c0af1856a28", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 24558458, "upload_time": "2018-07-26T01:56:33", "upload_time_iso_8601": "2018-07-26T01:56:33.746154Z", "url": "https://files.pythonhosted.org/packages/9a/1c/d58624dafcd0f922dc53423f8cf3b02b5902ee203bf6e1df2ab464d1dab3/pychemia-0.18.7.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.10.28": [ { "comment_text": "", "digests": { "md5": "0a87d20f3af8f2a7ab966e6c4926a57f", "sha256": "2ebcf9ab51d2f74e71c187b1fa35bda6ac74373f180a2dc5bede1aa6a86d0236" }, "downloads": -1, "filename": "pychemia-0.19.10.28.tar.gz", "has_sig": false, "md5_digest": "0a87d20f3af8f2a7ab966e6c4926a57f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35508183, "upload_time": "2019-10-28T20:26:49", "upload_time_iso_8601": "2019-10-28T20:26:49.258159Z", "url": "https://files.pythonhosted.org/packages/2b/b6/21aaa6daf024ee4189d25f15a02e6e91d21c07a8a67ed672bb0ed7a2890b/pychemia-0.19.10.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.12.10": [ { "comment_text": "", "digests": { "md5": "a0a1e0f0ec3fd8bb9d3af5422654ee49", "sha256": "50d20ca0b544c6500d081203e6f83fad6eb12381dd074fdeb91d893d55be1828" }, "downloads": -1, "filename": "pychemia-0.19.12.10.tar.gz", "has_sig": false, "md5_digest": "a0a1e0f0ec3fd8bb9d3af5422654ee49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35635386, "upload_time": "2019-12-10T20:17:48", "upload_time_iso_8601": "2019-12-10T20:17:48.482788Z", "url": "https://files.pythonhosted.org/packages/ab/db/4140ac7022b3cd2b784c7457dfb4eee0e467d664914bb1d096c218a66a70/pychemia-0.19.12.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.1.21": [ { "comment_text": "", "digests": { "md5": "68c8e9e1f6785af3f354e43e61acc351", "sha256": "d3366f4ef389f4ece4f151933671ac74ecfb2bf737e7a9ebfb4ca750916352bd" }, "downloads": -1, "filename": "pychemia-0.20.1.21.tar.gz", "has_sig": false, "md5_digest": "68c8e9e1f6785af3f354e43e61acc351", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35656320, "upload_time": "2020-01-21T15:27:46", "upload_time_iso_8601": "2020-01-21T15:27:46.040126Z", "url": "https://files.pythonhosted.org/packages/30/5d/2638bb4b6459f434ebaae2ad7f65f307242d9d97ec7443dd96fb799c547d/pychemia-0.20.1.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.5.22": [ { "comment_text": "", "digests": { "md5": "3302b12467de42619af4e777e162eef0", "sha256": "6d4663d1da2c608854952c42d9c7abd5a64ced321d2fbf3051a424d2ac891f38" }, "downloads": -1, "filename": "pychemia-0.20.5.22.tar.gz", "has_sig": false, "md5_digest": "3302b12467de42619af4e777e162eef0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35717768, "upload_time": "2020-05-23T00:16:18", "upload_time_iso_8601": "2020-05-23T00:16:18.065198Z", "url": "https://files.pythonhosted.org/packages/aa/d8/fd10fc7309e25e7ae6ddd5a83b274d988fa3bb10894ab83460595de57011/pychemia-0.20.5.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.5.23": [ { "comment_text": "", "digests": { "md5": "816a4e6386c5173b683e15491b07ba6f", "sha256": "3ed2230e1870cdb546543146f46d33aa01e043b167ee009410cc73b265afc4a1" }, "downloads": -1, "filename": "pychemia-0.20.5.23.tar.gz", "has_sig": false, "md5_digest": "816a4e6386c5173b683e15491b07ba6f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35717928, "upload_time": "2020-05-23T01:57:16", "upload_time_iso_8601": "2020-05-23T01:57:16.746036Z", "url": "https://files.pythonhosted.org/packages/9c/f8/7751fb87642788ecdc10d8304af1878d7a793ffa397789a30e8687c9da26/pychemia-0.20.5.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.6.1": [ { "comment_text": "", "digests": { "md5": "9fe28a97697ddf5feaefadbc8e0433ef", "sha256": "e86e7985b4545880db6bbb7fbb16da652dfa0763e04a591797e7e8a3ebf12690" }, "downloads": -1, "filename": "pychemia-0.20.6.1.tar.gz", "has_sig": false, "md5_digest": "9fe28a97697ddf5feaefadbc8e0433ef", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4", "size": 35718628, "upload_time": "2020-06-02T03:25:22", "upload_time_iso_8601": "2020-06-02T03:25:22.165393Z", "url": "https://files.pythonhosted.org/packages/74/db/50c0f1da098349c5bff742d9aae630a81af432789ff0c8bca7c7afd7c083/pychemia-0.20.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.5.17": [ { "comment_text": "", "digests": { "md5": "f77bf6359d564049579e05b6e1efe985", "sha256": "1328d03ac83086456228e96d6790a5e25677a372df121ff824a88a1f451a18d3" }, "downloads": -1, "filename": "pychemia-0.21.5.17.tar.gz", "has_sig": false, "md5_digest": "f77bf6359d564049579e05b6e1efe985", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 35738689, "upload_time": "2021-05-18T00:44:43", "upload_time_iso_8601": "2021-05-18T00:44:43.185454Z", "url": "https://files.pythonhosted.org/packages/89/fe/a7e91a28462b227b31e3d942902eaddf030a5318f1bdc5edd1f72a1337da/pychemia-0.21.5.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.9.15": [ { "comment_text": "", "digests": { "md5": "3b5436d3210368d446e4e21a8a98a883", "sha256": "610a07d97a7b3bcc94d05e83bf85c99a65a0d25b0e8ccad59f3a619ef6282928" }, "downloads": -1, "filename": "pychemia-0.21.9.15.tar.gz", "has_sig": false, "md5_digest": "3b5436d3210368d446e4e21a8a98a883", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 35419828, "upload_time": "2021-09-15T22:40:33", "upload_time_iso_8601": "2021-09-15T22:40:33.638333Z", "url": "https://files.pythonhosted.org/packages/9c/78/9e93def8e9e7f08b94e62cfe47e8f70d83e0fe7ffdeec14a19caed670598/pychemia-0.21.9.15.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3b5436d3210368d446e4e21a8a98a883", "sha256": "610a07d97a7b3bcc94d05e83bf85c99a65a0d25b0e8ccad59f3a619ef6282928" }, "downloads": -1, "filename": "pychemia-0.21.9.15.tar.gz", "has_sig": false, "md5_digest": "3b5436d3210368d446e4e21a8a98a883", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 35419828, "upload_time": "2021-09-15T22:40:33", "upload_time_iso_8601": "2021-09-15T22:40:33.638333Z", "url": "https://files.pythonhosted.org/packages/9c/78/9e93def8e9e7f08b94e62cfe47e8f70d83e0fe7ffdeec14a19caed670598/pychemia-0.21.9.15.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }