pychemia


Namepychemia JSON
Version 0.24.2.3 PyPI version JSON
download
home_pagehttps://materialsdiscovery.github.io/PyChemia
SummaryPython Framework for Materials Discovery and Design
upload_time2024-02-04 15:51:37
maintainer
docs_urlhttps://pythonhosted.org/pychemia/
authorGuillermo Avendaño Franco
requires_python>=3.6, <3.12
licenseLICENSE.txt
keywords electronic structure analysis materials discovery metaheuristics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PyChemia: Python Framework for Materials Discovery and Design
=============================================================

.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_Small.png
  :width: 300
  :alt: PyChemia Logo

PyChemia is an open-source Python Library for materials structural
search. The purpose of the initiative is to create a method agnostic
framework for materials discovery and design using a variety of methods
from Minima Hoping to Soft-computing based methods. PyChemia is also a
library for data-mining, using several methods to discover interesting
candidates among the materials already processed.

The core of the library is the Structure python class, it is able to
describe periodic and non-periodic structures. As the focus of this
library is structural search the class defines extensive capabilities to
modify atomic structures.

The library includes capability to read and write in several ab-initio
codes. At the level of DFT, PyChemia support VASP, ABINIT and Octopus.
At Tight-binding level development is in process to support DFTB+ and
Fireball. This allows the library to compute electronic-structure
properties using state-of-the-art ab-initio software packages and
extract properties from those calculations.

Installation
============

You can install pychemia in several ways. We are showing 3 ways of
installing PyChemia inside a Virtual environment. A virtual environment
is a good way of isolating software packages from the pacakges installed
with the Operating System. The decision on which method to use
depends if you want to use the most recent code or the package uploaded
from time to time to PyPi. The last method is particularly suited for
developers who want to change the code and get those changes operative without
an explicit instalation.


Installing with pip from pypi.org on a virtual environment
----------------------------------------------------------

This method installs PyChemia from the packages uploaded
to PyPi every month. It will provides a version of
PyChemia that is stable.

First, create and activate the virtual environment.
We are using the name ``pychemia_ve``, but that is arbitrary.

::

    python3 -m venv pychemia_ve
    source pychemia_ve/bin/activate


When the virtual environment is activated, your prompt
changes to ``(pychemia_ve)...$``. Now, install pychemia
with pip

::

    python3 -m pip install pychemia


Installing with pip from a cloned repo on a virtual environment
---------------------------------------------------------------

This method installs PyChemia from the Github repo.
The method will install PyChemia from the most recent sources.

First, create and activate the virtual environment.
We are using the name ``pychemia_ve``, but that is arbitrary.

::

    python3 -m venv pychemia_ve
    cd pychemia_ve
    source bin/activate

Second, clone the repository from GitHub

::

    git clone https://github.com/MaterialsDiscovery/PyChemia.git


Finally, install from the repo folder

::

    python3 -m pip install PyChemia


Using PyChemia from repo folder on a virtual environment
--------------------------------------------------------

This method is mostly used for development.
In this way PyChemia is not actually installed and changes to the code
will take inmediate effect.

First, create and activate the virtual environment.
We are using the name ``pychemia_ve``, but that is arbitrary.

::

    python3 -m venv pychemia_ve
    cd pychemia_ve
    source bin/activate


Clone the repository

::

    git clone https://github.com/MaterialsDiscovery/PyChemia.git


Go to repo folder, install Cython with pip and
execute ``setup.py`` to build the Cython modules.

::

    cd PyChemia
    python3 -m pip install Cython
    python3 setup.py build_ext --inplace
    python3 setup.py build


Finally, install the packages required for PyChemia to work

::

    python3 -m pip install -r requirements.txt


Set the variable ``$PYTHONPATH`` to point to PyChemia folder, in the case of bash it will be:

::

    export PYTHONPATH=`path`


On C shell (csh or tcsh)

::
    
    setenv PYTHONPATH `path`


To run the internal testsuite install ``pytest``

::

    python3 -m pip install pytest


Execute the testsuite:

::

    pytest


The output of the testsuite looks like this:

::

    =================== test session starts ===========================
    platform linux -- Python 3.11.3, pytest-7.3.0, pluggy-1.0.0
    rootdir: /gpfs20/scratch/gufranco/PyChemia
    plugins: hypothesis-6.71.0, anyio-3.6.2
    collecting 2 items                                            
    collecting 29 items                                           
    collected 67 items                                                 

    tests/test_0.py .                                            [  1%]
    tests/test_1_doctest_core.py ...                             [  5%]
    tests/test_1_doctest_crystal.py ..                           [  8%]
    tests/test_1_doctest_utils.py ....                           [ 14%]
    tests/test_3_scripts.py ....                                 [ 20%]
    tests/test_analysis.py ...                                   [ 25%]
    tests/test_code_abinit.py .....                              [ 32%]
    tests/test_code_fireball.py .                                [ 34%]
    tests/test_code_vasp.py ......                               [ 43%]
    tests/test_core.py ......                                    [ 52%]
    tests/test_crystal_kpoints.py .                              [ 53%]
    tests/test_crystal_symmetry.py .                             [ 55%]
    tests/test_db_queue.py .                                     [ 56%]
    tests/test_io.py ..                                          [ 59%]
    tests/test_population.py .....                               [ 67%]
    tests/test_population_orbitals.py .                          [ 68%]
    tests/test_searcher_clusters.py ....                         [ 74%]
    tests/test_searcher_functions.py ....                        [ 80%]
    tests/test_searcher_noncollinear.py ...                      [ 85%]
    tests/test_utils_metaheuristics.py .                         [ 86%]
    tests/test_utils_periodic.py ......                          [ 95%]
    tests/test_utils_serializer.py .                             [ 97%]
    tests/test_zexample1.py .                                    [ 98%]
    tests/test_zexample2.py .                                    [100%]

    =================== 67 passed in 54.60s ===========================


PyChemia requirements
=====================

PyChemia relies on a number of other python packages to
operate. Some of them are mandatory and they must be installed.
Other packages are optional and their absence will only constrain
certain capabilities.

Python >= 3.6 < 3.12

The library is tested using versions of Python from 3.6 up to 3.11

https://travis-ci.org/MaterialsDiscovery/PyChemia

Mandatory
---------

1.  `Numpy <http://www.numpy.org/>`_  >= 1.19
    Fundamental library for numerical intensive computation in Python.
    Numpy arrays are essential for efficient array manipulation.

2.  `SciPy <http://scipy.org/>`_ >= 1.5
    Used mostly for Linear Algebra, FFT and spatial routines.

3.  `Spglib <http://spglib.sourceforge.net/>`_ >= 2.0
    Used to determine symmetry groups for periodic structures

4.  `Matplotlib <http://matplotlib.org/>`_  >= 3.3
    Used to plot band structures, densities of states and other 2D plots

5.  `PyMongo <http://api.mongodb.org/python/current/>`_ >= 4.1
    Used for structural search PyChemia relies strongly in MongoDB and its python driver.
    For the MongoDB server, any version beyond 3.11 should be fine.
    We have tested pychemia on MongoDB 4.0

6.  `psutil <https://github.com/giampaolo/psutil/>`_ >= 5.9
    Cross-platform lib for process and system monitoring in Python

7.  `netCDF4 <https://github.com/Unidata/netcdf4-python>`_ > 1.5
    Python/numpy interface to the netCDF C library


Optional
--------

1.  `pytest <https://docs.pytest.org/en/stable/contents.html>`_ >= 7.0 A python 
    library for testing, simply go to the source directory and execute::

        pytest -v .

2.  `Pandas <http://pandas.pydata.org/>`_
    Library for Data Analysis used by the datamining modules

3.  `PyMC <http://pymc-devs.github.io/pymc/index.html>`_
    PyMC is a python module that implements Bayesian statistical models
    and fitting algorithms
    Important for the datamining capabilities of PyChemia

4.  `Mayavi <http://docs.enthought.com/mayavi/mayavi/>`_  >= 4.1
    Some basic visualization tools are incorporated using this library

5.  `ScientificPython <http://dirac.cnrs-orleans.fr/plone/software/scientificpython/overview/>`_  >2.6
    This library is used for reading and writing NetCDF files

6.  `pymatgen <http://www.pymatgen.org>`_ >= 2.9
    pymatgen is an excellent library for materials analysis

7.  `ASE <https://wiki.fysik.dtu.dk/ase/>`_ 
    Atomic Simulation Environment is another good library for ab-initio calculations.
    Quite impressive for the number of ab-initio packages supported

8.  `qmpy <http://oqmd.org/static/docs/index.html>`_
    The Python library behind the [Open Quantum Materials Database](http://oqmd.org).
    The OQMD is a database of DFT calculated structures.
    For the time being the database contains more than 300000 structures, with more than
    90% of them with the electronic ground-state computed.

9. `coverage <https://bitbucket.org/ned/coveragepy>`_ >= 4.0.1
    Provides code coverage analysis

10. `python-coveralls <https://github.com/z4r/python-coveralls>`_
    To submit coverage information to coveralls.io

    https://coveralls.io/github/MaterialsDiscovery/PyChemia

Documentation
=============

Instructions for installation, using and programming scripts with PyChemia
can be found on two repositories for documentation:

* Read The Docs:

   http://pychemia.readthedocs.io/en/latest

* Python Hosted:

   http://pythonhosted.org/pychemia

Documentation 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>`_

Documentation is also hosted on `Python Hosted <http://pythonhosted.org/pychemia/index.html>`_

Sources
=======

The main repository is on `GitHub <https://github.com/MaterialsDiscovery/PyChemia>`_

Sources and wheel binaries are also distrubuted on `PyPI Python.org <https://pypi.python.org/pypi/pychemia>`_ or `PyPI pypi.org <https://pypi.org/project/pychemia/>`_

Structure of the Library
========================

.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_code.png
  :width: 600
  :alt: PyChemia Code Structure

.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_workflow.png
  :width: 600
  :alt: PyChemia Workflow

Contributors
============

1.  Prof. Aldo H. Romero [West Virginia University] (Project Director)

2.  Guillermo Avendaño-Franco [West Virginia University]
    (Basic Infrastructure)

3.  Adam Payne [West Virginia University] (Bug fixes (Populations, Relaxators, and KPoints) )

4.  Irais Valencia Jaime [West Virginia University] (Simulation and testing)

5.  Sobhit Singh [West Virginia University] (Data-mining)

6.  Francisco Muñoz [Universidad de Chile] (PyPROCAR)

7.  Wilfredo Ibarra Hernandez [West Virginia University] (Interface with MAISE)


            

Raw data

            {
    "_id": null,
    "home_page": "https://materialsdiscovery.github.io/PyChemia",
    "name": "pychemia",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/pychemia/",
    "requires_python": ">=3.6, <3.12",
    "maintainer_email": "",
    "keywords": "electronic,structure,analysis,materials,discovery,metaheuristics",
    "author": "Guillermo Avenda\u00f1o Franco",
    "author_email": "gufranco@mail.wvu.edu",
    "download_url": "https://files.pythonhosted.org/packages/63/2c/d1618368b5900378d1ef142dbc35d72575f42e9b83dc2ab7fbcd09cce47d/pychemia-0.24.2.3.tar.gz",
    "platform": null,
    "description": "PyChemia: Python Framework for Materials Discovery and Design\n=============================================================\n\n.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_Small.png\n  :width: 300\n  :alt: PyChemia Logo\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::\n\n    python3 -m venv pychemia_ve\n    source 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::\n\n    python3 -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::\n\n    python3 -m venv pychemia_ve\n    cd pychemia_ve\n    source bin/activate\n\nSecond, clone the repository from GitHub\n\n::\n\n    git clone https://github.com/MaterialsDiscovery/PyChemia.git\n\n\nFinally, install from the repo folder\n\n::\n\n    python3 -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::\n\n    python3 -m venv pychemia_ve\n    cd pychemia_ve\n    source bin/activate\n\n\nClone the repository\n\n::\n\n    git 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::\n\n    cd PyChemia\n    python3 -m pip install Cython\n    python3 setup.py build_ext --inplace\n    python3 setup.py build\n\n\nFinally, install the packages required for PyChemia to work\n\n::\n\n    python3 -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::\n\n    export PYTHONPATH=`path`\n\n\nOn C shell (csh or tcsh)\n\n::\n    \n    setenv PYTHONPATH `path`\n\n\nTo run the internal testsuite install ``pytest``\n\n::\n\n    python3 -m pip install pytest\n\n\nExecute the testsuite:\n\n::\n\n    pytest\n\n\nThe output of the testsuite looks like this:\n\n::\n\n    =================== test session starts ===========================\n    platform linux -- Python 3.11.3, pytest-7.3.0, pluggy-1.0.0\n    rootdir: /gpfs20/scratch/gufranco/PyChemia\n    plugins: hypothesis-6.71.0, anyio-3.6.2\n    collecting 2 items                                            \n    collecting 29 items                                           \n    collected 67 items                                                 \n\n    tests/test_0.py .                                            [  1%]\n    tests/test_1_doctest_core.py ...                             [  5%]\n    tests/test_1_doctest_crystal.py ..                           [  8%]\n    tests/test_1_doctest_utils.py ....                           [ 14%]\n    tests/test_3_scripts.py ....                                 [ 20%]\n    tests/test_analysis.py ...                                   [ 25%]\n    tests/test_code_abinit.py .....                              [ 32%]\n    tests/test_code_fireball.py .                                [ 34%]\n    tests/test_code_vasp.py ......                               [ 43%]\n    tests/test_core.py ......                                    [ 52%]\n    tests/test_crystal_kpoints.py .                              [ 53%]\n    tests/test_crystal_symmetry.py .                             [ 55%]\n    tests/test_db_queue.py .                                     [ 56%]\n    tests/test_io.py ..                                          [ 59%]\n    tests/test_population.py .....                               [ 67%]\n    tests/test_population_orbitals.py .                          [ 68%]\n    tests/test_searcher_clusters.py ....                         [ 74%]\n    tests/test_searcher_functions.py ....                        [ 80%]\n    tests/test_searcher_noncollinear.py ...                      [ 85%]\n    tests/test_utils_metaheuristics.py .                         [ 86%]\n    tests/test_utils_periodic.py ......                          [ 95%]\n    tests/test_utils_serializer.py .                             [ 97%]\n    tests/test_zexample1.py .                                    [ 98%]\n    tests/test_zexample2.py .                                    [100%]\n\n    =================== 67 passed in 54.60s ===========================\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\nPython >= 3.6 < 3.12\n\nThe library is tested using versions of Python from 3.6 up to 3.11\n\nhttps://travis-ci.org/MaterialsDiscovery/PyChemia\n\nMandatory\n---------\n\n1.  `Numpy <http://www.numpy.org/>`_  >= 1.19\n    Fundamental library for numerical intensive computation in Python.\n    Numpy arrays are essential for efficient array manipulation.\n\n2.  `SciPy <http://scipy.org/>`_ >= 1.5\n    Used mostly for Linear Algebra, FFT and spatial routines.\n\n3.  `Spglib <http://spglib.sourceforge.net/>`_ >= 2.0\n    Used to determine symmetry groups for periodic structures\n\n4.  `Matplotlib <http://matplotlib.org/>`_  >= 3.3\n    Used to plot band structures, densities of states and other 2D plots\n\n5.  `PyMongo <http://api.mongodb.org/python/current/>`_ >= 4.1\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\n6.  `psutil <https://github.com/giampaolo/psutil/>`_ >= 5.9\n    Cross-platform lib for process and system monitoring in Python\n\n7.  `netCDF4 <https://github.com/Unidata/netcdf4-python>`_ > 1.5\n    Python/numpy interface to the netCDF C library\n\n\nOptional\n--------\n\n1.  `pytest <https://docs.pytest.org/en/stable/contents.html>`_ >= 7.0 A python \n    library for testing, simply go to the source directory and execute::\n\n        pytest -v .\n\n2.  `Pandas <http://pandas.pydata.org/>`_\n    Library for Data Analysis used by the datamining modules\n\n3.  `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\n4.  `Mayavi <http://docs.enthought.com/mayavi/mayavi/>`_  >= 4.1\n    Some basic visualization tools are incorporated using this library\n\n5.  `ScientificPython <http://dirac.cnrs-orleans.fr/plone/software/scientificpython/overview/>`_  >2.6\n    This library is used for reading and writing NetCDF files\n\n6.  `pymatgen <http://www.pymatgen.org>`_ >= 2.9\n    pymatgen is an excellent library for materials analysis\n\n7.  `ASE <https://wiki.fysik.dtu.dk/ase/>`_ \n    Atomic Simulation Environment is another good library for ab-initio calculations.\n    Quite impressive for the number of ab-initio packages supported\n\n8.  `qmpy <http://oqmd.org/static/docs/index.html>`_\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\n9. `coverage <https://bitbucket.org/ned/coveragepy>`_ >= 4.0.1\n    Provides code coverage analysis\n\n10. `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 Python.org <https://pypi.python.org/pypi/pychemia>`_ or `PyPI pypi.org <https://pypi.org/project/pychemia/>`_\n\nStructure of the Library\n========================\n\n.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_code.png\n  :width: 600\n  :alt: PyChemia Code Structure\n\n.. image:: https://raw.githubusercontent.com/MaterialsDiscovery/PyChemia/master/docs/_static/PyChemia_workflow.png\n  :width: 600\n  :alt: PyChemia Workflow\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, Relaxators, and KPoints) )\n\n4.  Irais Valencia Jaime [West Virginia University] (Simulation 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 with MAISE)\n\n",
    "bugtrack_url": null,
    "license": "LICENSE.txt",
    "summary": "Python Framework for Materials Discovery and Design",
    "version": "0.24.2.3",
    "project_urls": {
        "Homepage": "https://materialsdiscovery.github.io/PyChemia"
    },
    "split_keywords": [
        "electronic",
        "structure",
        "analysis",
        "materials",
        "discovery",
        "metaheuristics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "632cd1618368b5900378d1ef142dbc35d72575f42e9b83dc2ab7fbcd09cce47d",
                "md5": "7f50fff878f04be8a1ecd5f620a63642",
                "sha256": "29237b04c2433b4847519ab44a83511537cf24e44b21c5e8ad4ceb981bb6aa70"
            },
            "downloads": -1,
            "filename": "pychemia-0.24.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "7f50fff878f04be8a1ecd5f620a63642",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6, <3.12",
            "size": 35650736,
            "upload_time": "2024-02-04T15:51:37",
            "upload_time_iso_8601": "2024-02-04T15:51:37.207913Z",
            "url": "https://files.pythonhosted.org/packages/63/2c/d1618368b5900378d1ef142dbc35d72575f42e9b83dc2ab7fbcd09cce47d/pychemia-0.24.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-04 15:51:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pychemia"
}
        
Elapsed time: 0.17645s