Project-ppchem-tools-kit


NameProject-ppchem-tools-kit JSON
Version 1.1.0 PyPI version JSON
download
home_pageNone
SummaryBasic Chemistry Toolkit
upload_time2024-05-27 09:23:43
maintainerNone
docs_urlNone
authorMéloé Enzinger
requires_python<4.0,>=3.10
licenseMIT
keywords chemistry tools kit graph maker linear regression molecular structure molecular mass uncertainty propagation standard deviation tkinter interface latex smiles
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="center">
  <img width="1245" alt="logo_project" src="https://github.com/sgrunber/Project-ppchem-tools-kit/raw/main/docs/source/_static/images/logo_project.png">
</p>
                                                              
<div align="center">
  <h1 style="font-size: 3em;">🛠️ Tools Kit 🛠 </h1>
</div>


<p align="center">
  <a href="https://github.com/sgrunber/Project-ppchem-tools-kit/actions">
    <img src="https://img.shields.io/badge/build-passing-brightgreen.svg?style=for-the-badge&logo=github&logoColor=white" alt="Build Status">
  </a>
  <a href="https://github.com/sgrunber/Project-ppchem-tools-kit">
    <img src="https://img.shields.io/badge/coverage-95%25-brightgreen.svg?style=for-the-badge&logo=github&logoColor=white" alt="Coverage">
  </a>
  <a href="https://github.com/sgrunber/Project-ppchem-tools-kit/blob/main/LICENSE">
    <img src="https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge&logo=github&logoColor=white" alt="License">
  </a>
</p>


## 📖 Description
The **Tools Kit** package allows chemistry students to find basic information on molecules and provides easy access to some graphs and calculations required in experimental laboratories.

**🌙 Note**: For an aesthetically pleasing experience, it is recommended to use the dark mode interface if you are on a Mac or any other platform that supports it.


## 📚 Table of Contents
- [Installation](#️-installation)
- [Usage](#️-usage)
- [Features](#️-features)
- [Contributing](#️-contributing)
- [Cite Us](#️-cite-us)
- [License](#️-license)
- [Screenshots](#️-screenshots)

## 🛠️ Installation
<a id="installation"></a>
### 1. 🍴 Fork the Repository
To start, fork the repository to your own GitHub account.  
To do so, navigate to the repository page and click the *"Fork"* button. The repository will then be copied to your account, and you will be able to access it.

### 2. 📥 Clone the Repository

 <a href="https://github.com/sgrunber/Project-ppchem-tools-kit/tree/main"><img src="https://img.shields.io/badge/GitHub--181717.svg?logo=github&logoColor=white&style=for-the-badge&logoWidth=40&logoColor=white" alt="GitHub"></a>

Next, clone the repository using the following command:

#### a) Using HTTPS (default):

```bash
git clone https://github.com/sgrunber/Project-ppchem-tools-kit.git
```
#### b) Using SSH (recommended for users who have set up SSH):

To clone with SSH, use the following command:

```bash
git clone git@github.com:sgrunber/Project-ppchem-tools-kit.git
```


### 3. ⬇️ Install with pip


After cloning, navigate into the cloned directory and install the package locally using pip:

```bash
cd path/to/Project-ppchem-tools-kit
pip install .
```
This will install the package and its dependencies from the cloned repository, automatically fetching the latest version:



  <a href="https://pypi.org/project/Project-ppchem-tools-kit/"><img src="https://img.shields.io/badge/PyPI-v1.0.0-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="PyPI"></a>

Alternatively, you can install Tools Kit using pip, which will fetch and install the latest updated version from PyPI:

```bash
pip install Project_ppchem-tools-kit
```

## 🚀 Usage
<a id="usage"></a>

To use Tools Kit and access its features, follow these steps after cloning the repository:

### Using Jupyter Notebook:

<a href="https://jupyter.org/"><img src="https://img.shields.io/badge/Jupyter-Notebook-F37626.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="Jupyter Notebook"></a>

1. Launch Jupyter Notebook by navigating to the cloned repository directory in your terminal and running the command:
   ```bash
   jupyter notebook
   ```
2. In the Jupyter Notebook interface, navigate to the `notebooks` directory.

3. Open the notebook named `project_report.ipynb`.

4. Follow the instructions inside the notebook to interact with the Tools Kit interface and utilize its features for molecule analysis, graph plotting, error calculation, and more.
This notebook provides an interactive environment for convenient usage of Tools Kit directly within Visual Studio Code.


### Usage with Visual Studio Code:

 <a href="https://code.visualstudio.com/"><img src="https://img.shields.io/badge/Visual%20Studio%20Code-007ACC.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="VSCode"></a>

1. Open Visual Studio Code and navigate to the cloned directory.

2. Install the Jupyter extension if not already installed. You can do this by searching for "Jupyter" in the Extensions view (Ctrl+Shift+X) and installing the "Python" extension pack.

3. Open the `notebooks` directory in Visual Studio Code.

4. Open the notebook named `project_report.ipynb`.

5. Follow the instructions inside the notebook to interact with the Tools Kit interface and utilize its features for molecule analysis, graph plotting, error calculation, and more.
This notebook provides an interactive environment for convenient usage of Tools Kit with Jupyter Notebook.

## 🧪 Features

1. 🧬 Molecule Name
   - Input: Raw formula of the molecule
   - Output: SMILES of the molecule

2. ⚖️ Molecular Weight
   - Input: SMILES of the molecule
   - Output: Corresponding molar mass in g/mol

3. 📈 Linear Regression
   - Input: Excel document (imported by pressing the Browse button)
   - Output: Linear regression graph with the R<sup>2</sup> value
        - Options: The graph allows customization of various parameters such as changing scales, axis labels, title, displaying maximum values, enabling gridlines, adjusting line types and colors, modifying grid and label axes, and background color.

4. 📊 Graph Maker
   - Input: Excel document with x and y values arranged in two columns
   - Output: Graph plotting all values
      - Options: The graph allows customization of various parameters such as changing scales, axis labels, title, displaying maximum values, enabling gridlines, adjusting line types and colors, modifying grid and label axes, and background color.


5. 🧮 Error Propagation
   - Input: Variables, their values, and their uncertainties.
   - Output: Mean value, its uncertainty, and the result can be copied as LaTeX code for easy inclusion in documents.

6. 🔬 Show Molecule
   - Input: SMILES
   - Output: Molecular structure



## 🤝 Contributing
<a id="contributing"></a>

Contributions are welcome! To contribute to **Tools Kit**, please follow these steps:

1. **Fork** the project to your GitHub account.
2. Create a new branch for your feature or bug fix: 
   ```bash
   git checkout -b feature/your-feature-name
   ```
3. **Create a new branch for your feature or bug fix:**

    ```bash
    git checkout -b feature/your-feature-name
    ```

4. **Make your changes and ensure they adhere to the project's coding conventions and style guidelines.**

5. **Commit your changes with descriptive messages explaining the purpose of your changes:**

    ```bash
    git commit -am 'Add some feature'
    ```

6. **Push your changes to your branch on your forked repository:**

    ```bash
    git push origin feature/your-feature-name
    ```

7. **Once you've pushed your changes, you can open a Pull Request (PR) in the original repository. Provide a clear description of the changes you've made in the PR.**

8. **After reviewing your PR, if everything looks good, it will be merged into the main repository. Congratulations, you've successfully contributed to *Tools Kit*!**

Thank you for your contribution! Your efforts help improve the project for everyone.

## 📚 Cite Us
<a id="cite-us"></a>

If you use Tools Kit in your research work or academic projects, we would appreciate it if you could cite us. You can use the following BibTeX entry:

  <a href="http://www.bibtex.org/"><img src="https://img.shields.io/badge/BibTeX-0.99d-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="BibTeX"></a>

```bibtex
@misc{project-ppchem-tools-kit,
  title = {Project-ppchem-tools-kit},
  author = {{Méloé Enzinger & Sébastien Grunberg}},
  year = {2024},
  publisher = {GitHub},
  journal = {GitHub Repository},
  howpublished = {\url{https://github.com/username/Project-ppchem-tools-kit}}
}
```

### Chicago Style

<a href="https://www.chicagomanualofstyle.org/home.html"><img src="https://img.shields.io/badge/Chicago%20Style-17th%20Ed.-5579A1.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="Chicago Style"></a>

```bash
Méloé Enzinger and Sébastien Grunberg. 2024. Project-ppchem-tools-kit. Computer software. GitHub. https://github.com/username/Project-ppchem-tools-kit.` 
```
## 📜 License

<a href="https://github.com/sgrunber/Project-ppchem-tools-kit/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white" alt="License"></a>

<a id="license"></a>

This project is licensed under the MIT License. See the LICENSE file for details.

## 📸 Screenshots
<a id="screenshots"></a>

**Note**: Graphs have much better quality when saved to your computer.

## Interface
<p align="center">
<img width="700" alt="Capture d’écran 2024-05-18 à 16 44 09" src="https://github.com/sgrunber/Project-ppchem-tools-kit/raw/main/docs/source/_static/images/screen.png">
   </p>
   
## Graph
<p align="center">
<img width="700" alt="graph" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/8d1f8352-3815-4d5d-9545-0a7138f132a5">
    </p>
    
## Linear Regression
<p align="center">
<img width="700" alt="linear_reg" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/eb1a56fb-d801-457b-9a1d-56fc258a6478">
 </p>

## Graph & Linear Regression Settings
<p align="center">
<img width="220" alt="scale" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/8bf14d9a-a573-43fd-bfce-721dccda3415">
<img width="178" alt="graph_option" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/2d08b793-6903-418b-a83d-ae3d24d36171">
<img width="220" alt="Label" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/ad9da31f-5d76-495b-8f81-b3324c2944a6">
 </p>

## Show Molecule
<p align="center">
<img width="398" alt="show_molecule" src="https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/691fda4c-1f1d-4aa3-90ef-88cf759a4f70">
 </p>



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "Project-ppchem-tools-kit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": "Chemistry, Tools kit, Graph maker, Linear regression, Molecular structure, Molecular mass, Uncertainty propagation, standard deviation, tkinter interface, LaTeX, SMILES",
    "author": "M\u00e9lo\u00e9 Enzinger",
    "author_email": "meloe.enzinger@epfl.ch> and S\u00e9bastien Grunberg <sebastien.grunberg@epfl.ch",
    "download_url": "https://files.pythonhosted.org/packages/b0/86/013484c6d33342ed9f6104b1079e0775fc2bf958ea1f77d9f2c6dbfab5c3/project_ppchem_tools_kit-1.1.0.tar.gz",
    "platform": null,
    "description": "\n<p align=\"center\">\n  <img width=\"1245\" alt=\"logo_project\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/raw/main/docs/source/_static/images/logo_project.png\">\n</p>\n                                                              \n<div align=\"center\">\n  <h1 style=\"font-size: 3em;\">\ud83d\udee0\ufe0f Tools Kit \ud83d\udee0 </h1>\n</div>\n\n\n<p align=\"center\">\n  <a href=\"https://github.com/sgrunber/Project-ppchem-tools-kit/actions\">\n    <img src=\"https://img.shields.io/badge/build-passing-brightgreen.svg?style=for-the-badge&logo=github&logoColor=white\" alt=\"Build Status\">\n  </a>\n  <a href=\"https://github.com/sgrunber/Project-ppchem-tools-kit\">\n    <img src=\"https://img.shields.io/badge/coverage-95%25-brightgreen.svg?style=for-the-badge&logo=github&logoColor=white\" alt=\"Coverage\">\n  </a>\n  <a href=\"https://github.com/sgrunber/Project-ppchem-tools-kit/blob/main/LICENSE\">\n    <img src=\"https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge&logo=github&logoColor=white\" alt=\"License\">\n  </a>\n</p>\n\n\n## \ud83d\udcd6 Description\nThe **Tools Kit** package allows chemistry students to find basic information on molecules and provides easy access to some graphs and calculations required in experimental laboratories.\n\n**\ud83c\udf19 Note**: For an aesthetically pleasing experience, it is recommended to use the dark mode interface if you are on a Mac or any other platform that supports it.\n\n\n## \ud83d\udcda Table of Contents\n- [Installation](#\ufe0f-installation)\n- [Usage](#\ufe0f-usage)\n- [Features](#\ufe0f-features)\n- [Contributing](#\ufe0f-contributing)\n- [Cite Us](#\ufe0f-cite-us)\n- [License](#\ufe0f-license)\n- [Screenshots](#\ufe0f-screenshots)\n\n## \ud83d\udee0\ufe0f Installation\n<a id=\"installation\"></a>\n### 1. \ud83c\udf74 Fork the Repository\nTo start, fork the repository to your own GitHub account.  \nTo do so, navigate to the repository page and click the *\"Fork\"* button. The repository will then be copied to your account, and you will be able to access it.\n\n### 2. \ud83d\udce5 Clone the Repository\n\n <a href=\"https://github.com/sgrunber/Project-ppchem-tools-kit/tree/main\"><img src=\"https://img.shields.io/badge/GitHub--181717.svg?logo=github&logoColor=white&style=for-the-badge&logoWidth=40&logoColor=white\" alt=\"GitHub\"></a>\n\nNext, clone the repository using the following command:\n\n#### a) Using HTTPS (default):\n\n```bash\ngit clone https://github.com/sgrunber/Project-ppchem-tools-kit.git\n```\n#### b) Using SSH (recommended for users who have set up SSH):\n\nTo clone with SSH, use the following command:\n\n```bash\ngit clone git@github.com:sgrunber/Project-ppchem-tools-kit.git\n```\n\n\n### 3. \u2b07\ufe0f Install with pip\n\n\nAfter cloning, navigate into the cloned directory and install the package locally using pip:\n\n```bash\ncd path/to/Project-ppchem-tools-kit\npip install .\n```\nThis will install the package and its dependencies from the cloned repository, automatically fetching the latest version:\n\n\n\n  <a href=\"https://pypi.org/project/Project-ppchem-tools-kit/\"><img src=\"https://img.shields.io/badge/PyPI-v1.0.0-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"PyPI\"></a>\n\nAlternatively, you can install Tools Kit using pip, which will fetch and install the latest updated version from PyPI:\n\n```bash\npip install Project_ppchem-tools-kit\n```\n\n## \ud83d\ude80 Usage\n<a id=\"usage\"></a>\n\nTo use Tools Kit and access its features, follow these steps after cloning the repository:\n\n### Using Jupyter Notebook:\n\n<a href=\"https://jupyter.org/\"><img src=\"https://img.shields.io/badge/Jupyter-Notebook-F37626.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"Jupyter Notebook\"></a>\n\n1. Launch Jupyter Notebook by navigating to the cloned repository directory in your terminal and running the command:\n   ```bash\n   jupyter notebook\n   ```\n2. In the Jupyter Notebook interface, navigate to the `notebooks` directory.\n\n3. Open the notebook named `project_report.ipynb`.\n\n4. Follow the instructions inside the notebook to interact with the Tools Kit interface and utilize its features for molecule analysis, graph plotting, error calculation, and more.\nThis notebook provides an interactive environment for convenient usage of Tools Kit directly within Visual Studio Code.\n\n\n### Usage with Visual Studio Code:\n\n <a href=\"https://code.visualstudio.com/\"><img src=\"https://img.shields.io/badge/Visual%20Studio%20Code-007ACC.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"VSCode\"></a>\n\n1. Open Visual Studio Code and navigate to the cloned directory.\n\n2. Install the Jupyter extension if not already installed. You can do this by searching for \"Jupyter\" in the Extensions view (Ctrl+Shift+X) and installing the \"Python\" extension pack.\n\n3. Open the `notebooks` directory in Visual Studio Code.\n\n4. Open the notebook named `project_report.ipynb`.\n\n5. Follow the instructions inside the notebook to interact with the Tools Kit interface and utilize its features for molecule analysis, graph plotting, error calculation, and more.\nThis notebook provides an interactive environment for convenient usage of Tools Kit with Jupyter Notebook.\n\n## \ud83e\uddea Features\n\n1. \ud83e\uddec Molecule Name\n   - Input: Raw formula of the molecule\n   - Output: SMILES of the molecule\n\n2. \u2696\ufe0f Molecular Weight\n   - Input: SMILES of the molecule\n   - Output: Corresponding molar mass in g/mol\n\n3. \ud83d\udcc8 Linear Regression\n   - Input: Excel document (imported by pressing the Browse button)\n   - Output: Linear regression graph with the R<sup>2</sup> value\n        - Options: The graph allows customization of various parameters such as changing scales, axis labels, title, displaying maximum values, enabling gridlines, adjusting line types and colors, modifying grid and label axes, and background color.\n\n4. \ud83d\udcca Graph Maker\n   - Input: Excel document with x and y values arranged in two columns\n   - Output: Graph plotting all values\n      - Options: The graph allows customization of various parameters such as changing scales, axis labels, title, displaying maximum values, enabling gridlines, adjusting line types and colors, modifying grid and label axes, and background color.\n\n\n5. \ud83e\uddee Error Propagation\n   - Input: Variables, their values, and their uncertainties.\n   - Output: Mean value, its uncertainty, and the result can be copied as LaTeX code for easy inclusion in documents.\n\n6. \ud83d\udd2c Show Molecule\n   - Input: SMILES\n   - Output: Molecular structure\n\n\n\n## \ud83e\udd1d Contributing\n<a id=\"contributing\"></a>\n\nContributions are welcome! To contribute to **Tools Kit**, please follow these steps:\n\n1. **Fork** the project to your GitHub account.\n2. Create a new branch for your feature or bug fix: \n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n3. **Create a new branch for your feature or bug fix:**\n\n    ```bash\n    git checkout -b feature/your-feature-name\n    ```\n\n4. **Make your changes and ensure they adhere to the project's coding conventions and style guidelines.**\n\n5. **Commit your changes with descriptive messages explaining the purpose of your changes:**\n\n    ```bash\n    git commit -am 'Add some feature'\n    ```\n\n6. **Push your changes to your branch on your forked repository:**\n\n    ```bash\n    git push origin feature/your-feature-name\n    ```\n\n7. **Once you've pushed your changes, you can open a Pull Request (PR) in the original repository. Provide a clear description of the changes you've made in the PR.**\n\n8. **After reviewing your PR, if everything looks good, it will be merged into the main repository. Congratulations, you've successfully contributed to *Tools Kit*!**\n\nThank you for your contribution! Your efforts help improve the project for everyone.\n\n## \ud83d\udcda Cite Us\n<a id=\"cite-us\"></a>\n\nIf you use Tools Kit in your research work or academic projects, we would appreciate it if you could cite us. You can use the following BibTeX entry:\n\n  <a href=\"http://www.bibtex.org/\"><img src=\"https://img.shields.io/badge/BibTeX-0.99d-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"BibTeX\"></a>\n\n```bibtex\n@misc{project-ppchem-tools-kit,\n  title = {Project-ppchem-tools-kit},\n  author = {{M\u00e9lo\u00e9 Enzinger & S\u00e9bastien Grunberg}},\n  year = {2024},\n  publisher = {GitHub},\n  journal = {GitHub Repository},\n  howpublished = {\\url{https://github.com/username/Project-ppchem-tools-kit}}\n}\n```\n\n### Chicago Style\n\n<a href=\"https://www.chicagomanualofstyle.org/home.html\"><img src=\"https://img.shields.io/badge/Chicago%20Style-17th%20Ed.-5579A1.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"Chicago Style\"></a>\n\n```bash\nM\u00e9lo\u00e9 Enzinger and S\u00e9bastien Grunberg. 2024. Project-ppchem-tools-kit. Computer software. GitHub. https://github.com/username/Project-ppchem-tools-kit.` \n```\n## \ud83d\udcdc License\n\n<a href=\"https://github.com/sgrunber/Project-ppchem-tools-kit/blob/main/LICENSE\"><img src=\"https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white\" alt=\"License\"></a>\n\n<a id=\"license\"></a>\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\n\n## \ud83d\udcf8 Screenshots\n<a id=\"screenshots\"></a>\n\n**Note**: Graphs have much better quality when saved to your computer.\n\n## Interface\n<p align=\"center\">\n<img width=\"700\" alt=\"Capture d\u2019\u00e9cran 2024-05-18 \u00e0 16 44 09\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/raw/main/docs/source/_static/images/screen.png\">\n   </p>\n   \n## Graph\n<p align=\"center\">\n<img width=\"700\" alt=\"graph\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/8d1f8352-3815-4d5d-9545-0a7138f132a5\">\n    </p>\n    \n## Linear Regression\n<p align=\"center\">\n<img width=\"700\" alt=\"linear_reg\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/eb1a56fb-d801-457b-9a1d-56fc258a6478\">\n </p>\n\n## Graph & Linear Regression Settings\n<p align=\"center\">\n<img width=\"220\" alt=\"scale\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/8bf14d9a-a573-43fd-bfce-721dccda3415\">\n<img width=\"178\" alt=\"graph_option\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/2d08b793-6903-418b-a83d-ae3d24d36171\">\n<img width=\"220\" alt=\"Label\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/ad9da31f-5d76-495b-8f81-b3324c2944a6\">\n </p>\n\n## Show Molecule\n<p align=\"center\">\n<img width=\"398\" alt=\"show_molecule\" src=\"https://github.com/sgrunber/Project-ppchem-tools-kit/assets/160881864/691fda4c-1f1d-4aa3-90ef-88cf759a4f70\">\n </p>\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Basic Chemistry Toolkit",
    "version": "1.1.0",
    "project_urls": {
        "Github_Meloe_Enzinger": "https://github.com/melozgr",
        "Github_Sebastien_Grunberg": "https://github.com/sgrunber",
        "Homepage": "https://github.com/sgrunber/Project-ppchem-tools-kit"
    },
    "split_keywords": [
        "chemistry",
        " tools kit",
        " graph maker",
        " linear regression",
        " molecular structure",
        " molecular mass",
        " uncertainty propagation",
        " standard deviation",
        " tkinter interface",
        " latex",
        " smiles"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a97c7cc4a710c5715edf20ecb5c6772a4597200ee3d942aae8b5c0235354235a",
                "md5": "edd20bbe76c2e7504b587e3aed2bfcc3",
                "sha256": "c84e5b10b213414f524ff2c138fe7328b456aafced14a2e0b3b4452e5d169fef"
            },
            "downloads": -1,
            "filename": "project_ppchem_tools_kit-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "edd20bbe76c2e7504b587e3aed2bfcc3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 29546,
            "upload_time": "2024-05-27T09:23:41",
            "upload_time_iso_8601": "2024-05-27T09:23:41.877188Z",
            "url": "https://files.pythonhosted.org/packages/a9/7c/7cc4a710c5715edf20ecb5c6772a4597200ee3d942aae8b5c0235354235a/project_ppchem_tools_kit-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b086013484c6d33342ed9f6104b1079e0775fc2bf958ea1f77d9f2c6dbfab5c3",
                "md5": "75681d08b022d6544e9266677b6b00bb",
                "sha256": "c0e6e116e518af0be8fe865bb6d2331768c6f485c552a820239a2133e4c768e0"
            },
            "downloads": -1,
            "filename": "project_ppchem_tools_kit-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "75681d08b022d6544e9266677b6b00bb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 21023,
            "upload_time": "2024-05-27T09:23:43",
            "upload_time_iso_8601": "2024-05-27T09:23:43.639567Z",
            "url": "https://files.pythonhosted.org/packages/b0/86/013484c6d33342ed9f6104b1079e0775fc2bf958ea1f77d9f2c6dbfab5c3/project_ppchem_tools_kit-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-27 09:23:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sgrunber",
    "github_project": "Project-ppchem-tools-kit",
    "github_not_found": true,
    "lcname": "project-ppchem-tools-kit"
}
        
Elapsed time: 0.37034s