rdkit


Namerdkit JSON
Version 2024.9.5 PyPI version JSON
download
home_pagehttps://github.com/kuelumbus/rdkit-pypi
SummaryA collection of chemoinformatics and machine-learning software written in C++ and Python
upload_time2025-02-05 13:13:48
maintainerNone
docs_urlNone
authorChristopher Kuenneth
requires_pythonNone
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 🔥 RDKit Python Wheels

This repository holds the code to build [RDKit](https://github.com/rdkit/rdkit) platform wheels for Linux, macOS, and Windows on Github Action and Circle CI. The wheels contain the compiled platform-specific dynamic libraries (`*.so`, `*.dylib`, and `*.dll`) and are available at [PyPI](https://pypi.org/project/rdkit/). RDKit can easily be installed using

```sh
pip install rdkit
```

**NOTE:** Older versions of RDKit might be available at the [`rdkit-pypi`](https://pypi.org/project/rdkit-pypi/) PyPI repository (`pip install rdkit-pypi`). `rdkit-pypi` is the old name of this project at PyPI. Future RDKit versions will be available at the `rdkit` PyPI repository. Please update your dependencies, i.e., change `rdkit-pypi` to `rdkit`.

Please open an issue if you find something missing or not working as expected.


[![PyPI version shields.io](https://img.shields.io/pypi/v/rdkit.svg?style=for-the-badge&logo=PyPI&logoColor=blue)](https://pypi.python.org/pypi/rdkit/)
[![PyPI download day](https://img.shields.io/pypi/dm/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)
[![PyPI download month](https://img.shields.io/pypi/dw/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)
[![PyPI download day](https://img.shields.io/pypi/dd/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)
![GitHub Repo stars](https://img.shields.io/github/stars/kuelumbus/rdkit-pypi?style=for-the-badge&logo=github)
## Available Builds

| OS      | Arch    | Bit | Conditions                                          | 3.8            | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | CI             |
| ------- | ------- | --- | --------------------------------------------------- | -------------- | --- | ---- | ---- | ---- | ---- | -------------- |
| Linux   | intel   | 64  | glibc >= 2.28 (e.g., Ubuntu 18.04+, CentOS 6+, ...) | last: 2024.3.5 | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    | Github Actions |
| Linux   | aarch64 | 64  | glibc >= 2.28 (e.g., Raspberry Pi, ...)             | last: 2024.3.5 | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    | Circle CI      |
| macOS   | intel   | 64  | >= macOS 10.15                                      | last: 2024.3.5 | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    | Github Actions |
| macOS   | armv8   | 64  | >= macOS 11, M1 hardware                            | last: 2024.3.5 | ✔️   | ✔️    | ✔️    | ✔️    |  ✔️   | Github Actions |
| Windows | intel   | 64  |                                                     | last: 2024.3.5 | ✔️   | ✔️    | ✔️    | ✔️    | ✔️    | Github Actions |

## Installation

### PIP

```bash
python -m pip install rdkit
python -c "from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))"
```

### [Poetry](https://python-poetry.org/)

```bash
poetry add rdkit
poetry run python -c "from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))"
```

## Local builds on Linux

`cibuildwheel` requires `patchelf` (`apt install patchelf`)

```bash
python3 -m pip install cibuildwheel

git clone https://github.com/kuelumbus/rdkit-pypi.git
cd rdkit-pypi

CIBW_BUILD=cp39-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml
```

Replace `cp39-manylinux_x86_64` with `cp310-manylinux_x86_64`, `cp311-manylinux_x86_64`, or `cp312-manylinux_x86_64` to build for different Python

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kuelumbus/rdkit-pypi",
    "name": "rdkit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Christopher Kuenneth",
    "author_email": "chris@kuenneth.dev",
    "download_url": null,
    "platform": null,
    "description": "# \ud83d\udd25 RDKit Python Wheels\n\nThis repository holds the code to build [RDKit](https://github.com/rdkit/rdkit) platform wheels for Linux, macOS, and Windows on Github Action and Circle CI. The wheels contain the compiled platform-specific dynamic libraries (`*.so`, `*.dylib`, and `*.dll`) and are available at [PyPI](https://pypi.org/project/rdkit/). RDKit can easily be installed using\n\n```sh\npip install rdkit\n```\n\n**NOTE:** Older versions of RDKit might be available at the [`rdkit-pypi`](https://pypi.org/project/rdkit-pypi/) PyPI repository (`pip install rdkit-pypi`). `rdkit-pypi` is the old name of this project at PyPI. Future RDKit versions will be available at the `rdkit` PyPI repository. Please update your dependencies, i.e., change `rdkit-pypi` to `rdkit`.\n\nPlease open an issue if you find something missing or not working as expected.\n\n\n[![PyPI version shields.io](https://img.shields.io/pypi/v/rdkit.svg?style=for-the-badge&logo=PyPI&logoColor=blue)](https://pypi.python.org/pypi/rdkit/)\n[![PyPI download day](https://img.shields.io/pypi/dm/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)\n[![PyPI download month](https://img.shields.io/pypi/dw/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)\n[![PyPI download day](https://img.shields.io/pypi/dd/rdkit.svg?style=for-the-badge&logo=PyPI)](https://pypi.python.org/pypi/rdkit/)\n![GitHub Repo stars](https://img.shields.io/github/stars/kuelumbus/rdkit-pypi?style=for-the-badge&logo=github)\n## Available Builds\n\n| OS      | Arch    | Bit | Conditions                                          | 3.8            | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | CI             |\n| ------- | ------- | --- | --------------------------------------------------- | -------------- | --- | ---- | ---- | ---- | ---- | -------------- |\n| Linux   | intel   | 64  | glibc >= 2.28 (e.g., Ubuntu 18.04+, CentOS 6+, ...) | last: 2024.3.5 | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n| Linux   | aarch64 | 64  | glibc >= 2.28 (e.g., Raspberry Pi, ...)             | last: 2024.3.5 | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Circle CI      |\n| macOS   | intel   | 64  | >= macOS 10.15                                      | last: 2024.3.5 | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n| macOS   | armv8   | 64  | >= macOS 11, M1 hardware                            | last: 2024.3.5 | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    |  \u2714\ufe0f   | Github Actions |\n| Windows | intel   | 64  |                                                     | last: 2024.3.5 | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n\n## Installation\n\n### PIP\n\n```bash\npython -m pip install rdkit\npython -c \"from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))\"\n```\n\n### [Poetry](https://python-poetry.org/)\n\n```bash\npoetry add rdkit\npoetry run python -c \"from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))\"\n```\n\n## Local builds on Linux\n\n`cibuildwheel` requires `patchelf` (`apt install patchelf`)\n\n```bash\npython3 -m pip install cibuildwheel\n\ngit clone https://github.com/kuelumbus/rdkit-pypi.git\ncd rdkit-pypi\n\nCIBW_BUILD=cp39-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml\n```\n\nReplace `cp39-manylinux_x86_64` with `cp310-manylinux_x86_64`, `cp311-manylinux_x86_64`, or `cp312-manylinux_x86_64` to build for different Python\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A collection of chemoinformatics and machine-learning software written in C++ and Python",
    "version": "2024.9.5",
    "project_urls": {
        "Homepage": "https://github.com/kuelumbus/rdkit-pypi",
        "RDKit": "http://rdkit.org/",
        "RDKit on Github": "https://github.com/rdkit/rdkit"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac8e5b28c2dd8cfd53d05acec9f5df40f3cbe0abd32659dbe189c30a4b179ef3",
                "md5": "bb7cad5230c55e4b6729cf072ae11c4c",
                "sha256": "8adc3293cfa88856b7fc029e5f530796c0821e83e07ed5f54aec5e0561777d0b"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb7cad5230c55e4b6729cf072ae11c4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 29955521,
            "upload_time": "2025-02-05T13:13:48",
            "upload_time_iso_8601": "2025-02-05T13:13:48.430508Z",
            "url": "https://files.pythonhosted.org/packages/ac/8e/5b28c2dd8cfd53d05acec9f5df40f3cbe0abd32659dbe189c30a4b179ef3/rdkit-2024.9.5-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95361e16fb5057414edfa40ebf927e55db692ea5b6fc8b43bcabc2e809754651",
                "md5": "f01ec1e41fdd46044a1d0050065f4bae",
                "sha256": "c5908f60a613a124abc4b2ba50cf04d3a7a0672adb37a62dc1b9f8a3033d1ed2"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f01ec1e41fdd46044a1d0050065f4bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 27714457,
            "upload_time": "2025-02-05T13:13:55",
            "upload_time_iso_8601": "2025-02-05T13:13:55.757673Z",
            "url": "https://files.pythonhosted.org/packages/95/36/1e16fb5057414edfa40ebf927e55db692ea5b6fc8b43bcabc2e809754651/rdkit-2024.9.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "770027d18cf750bc8c26ad40d7fed92b0099ed8eac18ff8ccaef67a1ead0bbea",
                "md5": "cf098d1e4cbe292a9160eaa67548616f",
                "sha256": "e80da63fb828fdc8eafb465cb7de47444e6a83f709c77d4a6862e658991b15fb"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf098d1e4cbe292a9160eaa67548616f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 33538232,
            "upload_time": "2025-02-05T13:14:02",
            "upload_time_iso_8601": "2025-02-05T13:14:02.684522Z",
            "url": "https://files.pythonhosted.org/packages/77/00/27d18cf750bc8c26ad40d7fed92b0099ed8eac18ff8ccaef67a1ead0bbea/rdkit-2024.9.5-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f549221e9e5045c4b9bf7eb11a4366f4e65a9d8880e4b29b91bdd39db2e3fbf4",
                "md5": "4662f15022f14b74dd9958c28cbc5da3",
                "sha256": "4b90c42d6a24462f8238ba256d5a5a3bee69edc929824c78251ae2a0fd8ad02c"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4662f15022f14b74dd9958c28cbc5da3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34334997,
            "upload_time": "2025-02-05T13:14:08",
            "upload_time_iso_8601": "2025-02-05T13:14:08.715765Z",
            "url": "https://files.pythonhosted.org/packages/f5/49/221e9e5045c4b9bf7eb11a4366f4e65a9d8880e4b29b91bdd39db2e3fbf4/rdkit-2024.9.5-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d0eac025b72deb89596452e4f5eafd778a7270390da02e6937b8009a2e2ee60",
                "md5": "b40b6cb92aae96ee75a0bccc42ef69c3",
                "sha256": "4f12e9c391bb723628935883a8a03dca54baa70c6a888e5ea2b80dad58641023"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b40b6cb92aae96ee75a0bccc42ef69c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 22466503,
            "upload_time": "2025-02-05T13:14:14",
            "upload_time_iso_8601": "2025-02-05T13:14:14.599942Z",
            "url": "https://files.pythonhosted.org/packages/1d/0e/ac025b72deb89596452e4f5eafd778a7270390da02e6937b8009a2e2ee60/rdkit-2024.9.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae98fcbadfeb0bb98eec9c5f63a4ada036e569c54c6842b948f446f2c38455b8",
                "md5": "baca611ad2f66bdad79158a538757a2d",
                "sha256": "5fdaecd7cd884575276ec3de8bcf04bcd2346f32a3472f64059baceed5ce04dc"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baca611ad2f66bdad79158a538757a2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 29955965,
            "upload_time": "2025-02-05T13:14:19",
            "upload_time_iso_8601": "2025-02-05T13:14:19.878302Z",
            "url": "https://files.pythonhosted.org/packages/ae/98/fcbadfeb0bb98eec9c5f63a4ada036e569c54c6842b948f446f2c38455b8/rdkit-2024.9.5-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f99a7f18020947a192b4cafb736d9a64a70e0f4ac13172da1269b4f4b4147cc7",
                "md5": "b8af94be40d9e678a62daba429cae435",
                "sha256": "b0d55c207e6bab23831026fb78361036da7b889c32398d1ed42adfb9293ff515"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b8af94be40d9e678a62daba429cae435",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 27714545,
            "upload_time": "2025-02-05T13:14:27",
            "upload_time_iso_8601": "2025-02-05T13:14:27.454844Z",
            "url": "https://files.pythonhosted.org/packages/f9/9a/7f18020947a192b4cafb736d9a64a70e0f4ac13172da1269b4f4b4147cc7/rdkit-2024.9.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2865c34b4e4fef9b88a1b7288374cb575b7827e9ef4aab590af9ad3eb62d1e52",
                "md5": "65c234cad1fe061128c917fcc5722ce3",
                "sha256": "e8fecfa2bcd169bc804972510c724c49513b0bebc81f0d5fad90b2db9c687902"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65c234cad1fe061128c917fcc5722ce3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33534986,
            "upload_time": "2025-02-05T13:14:34",
            "upload_time_iso_8601": "2025-02-05T13:14:34.252017Z",
            "url": "https://files.pythonhosted.org/packages/28/65/c34b4e4fef9b88a1b7288374cb575b7827e9ef4aab590af9ad3eb62d1e52/rdkit-2024.9.5-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e08bd51566e0799bdc5c83ab6a2969c594770c0b54173a8602cda38b9dc165d9",
                "md5": "ab62952a83955830a38221e28380498a",
                "sha256": "0b74b4a113090bd857ac7f28a41bbc040ece19403d525f93b50245935685f317"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab62952a83955830a38221e28380498a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34333580,
            "upload_time": "2025-02-05T13:14:41",
            "upload_time_iso_8601": "2025-02-05T13:14:41.089171Z",
            "url": "https://files.pythonhosted.org/packages/e0/8b/d51566e0799bdc5c83ab6a2969c594770c0b54173a8602cda38b9dc165d9/rdkit-2024.9.5-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11551342bbc84976fcba9789e7badf5bb9b02a56c84b057d4705c92b44025d4c",
                "md5": "2fbc3f20fc2d9ed64dcddb3b62011c05",
                "sha256": "49413ecec7832168e968d901be5cda116624ed1c9fd909d605b9566f3420a3bd"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2fbc3f20fc2d9ed64dcddb3b62011c05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 22466803,
            "upload_time": "2025-02-05T13:14:48",
            "upload_time_iso_8601": "2025-02-05T13:14:48.247685Z",
            "url": "https://files.pythonhosted.org/packages/11/55/1342bbc84976fcba9789e7badf5bb9b02a56c84b057d4705c92b44025d4c/rdkit-2024.9.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca49c069d1155b90e963e74a0151ad45c08a5c9b9f505f12127c9c780a699dde",
                "md5": "dafcc3cba0381eb09093d5aa30d9804d",
                "sha256": "53cecfa736b628ab7866f0f7f215c8ff43c2c1ed73c9af255ff1bb40a908d87a"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dafcc3cba0381eb09093d5aa30d9804d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 30031225,
            "upload_time": "2025-02-05T13:14:54",
            "upload_time_iso_8601": "2025-02-05T13:14:54.822768Z",
            "url": "https://files.pythonhosted.org/packages/ca/49/c069d1155b90e963e74a0151ad45c08a5c9b9f505f12127c9c780a699dde/rdkit-2024.9.5-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b2041055545739efeb6bef6d9b0092bb01afd147584c226e1a25a2269676baf",
                "md5": "f02fc4d06f3f89a6d4ccdb1433eb1bde",
                "sha256": "df5d59331f82d60768529da3477d31276c0c358a8b627fafb094554d164271dc"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f02fc4d06f3f89a6d4ccdb1433eb1bde",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 27756646,
            "upload_time": "2025-02-05T13:15:02",
            "upload_time_iso_8601": "2025-02-05T13:15:02.215951Z",
            "url": "https://files.pythonhosted.org/packages/5b/20/41055545739efeb6bef6d9b0092bb01afd147584c226e1a25a2269676baf/rdkit-2024.9.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af03ea53aefdcee059f6b9e2134898b390ad38847b1e142c194b220165656767",
                "md5": "0e99cdc319f4ca1bfc519f3783d1d552",
                "sha256": "6594a64608949bb492aa2ffe0cc7a49967e902960f0ce910485e0ffe75251000"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e99cdc319f4ca1bfc519f3783d1d552",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33423274,
            "upload_time": "2025-02-05T13:15:08",
            "upload_time_iso_8601": "2025-02-05T13:15:08.367694Z",
            "url": "https://files.pythonhosted.org/packages/af/03/ea53aefdcee059f6b9e2134898b390ad38847b1e142c194b220165656767/rdkit-2024.9.5-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed897182bb87f6b228ea3f696d0c0c66aad41273cb644680b3819374b89f5990",
                "md5": "3e04347b3c8d9cd1a203bcdc7cad2492",
                "sha256": "8b3dff039c1758575419b95fe08439a4a9f01f09985780b5bc95e3ccbf442aa3"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e04347b3c8d9cd1a203bcdc7cad2492",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 34266464,
            "upload_time": "2025-02-05T13:15:14",
            "upload_time_iso_8601": "2025-02-05T13:15:14.098266Z",
            "url": "https://files.pythonhosted.org/packages/ed/89/7182bb87f6b228ea3f696d0c0c66aad41273cb644680b3819374b89f5990/rdkit-2024.9.5-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1859354fa89098d3b38101bee9bd137265e3cc953d8f544c76a7b142cea994ec",
                "md5": "0d172b1fc7bb91d49ccea8c3e5eec034",
                "sha256": "31499b45de63709808bb633217912a00a7d870e9a2ffb90ed31057cb9aaf814d"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d172b1fc7bb91d49ccea8c3e5eec034",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 22481909,
            "upload_time": "2025-02-05T13:15:20",
            "upload_time_iso_8601": "2025-02-05T13:15:20.410859Z",
            "url": "https://files.pythonhosted.org/packages/18/59/354fa89098d3b38101bee9bd137265e3cc953d8f544c76a7b142cea994ec/rdkit-2024.9.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00db0eb94199dda0fcae3bcccbe6a6ad48d4bc5e9f69dd3a181d77d36d0aa126",
                "md5": "7c51d45bc66b7ee18fa5469a33c3a3fa",
                "sha256": "f4a0e9e048e9591c122596014a6f520164edad937679600d909596e0a5dcbfef"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c51d45bc66b7ee18fa5469a33c3a3fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 30036955,
            "upload_time": "2025-02-05T13:15:25",
            "upload_time_iso_8601": "2025-02-05T13:15:25.409317Z",
            "url": "https://files.pythonhosted.org/packages/00/db/0eb94199dda0fcae3bcccbe6a6ad48d4bc5e9f69dd3a181d77d36d0aa126/rdkit-2024.9.5-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5834980483eabb1feb838c00cbe935853a8f408ad72180d3f602de6fb783879d",
                "md5": "cbbc82587ea6ba223f0225d91d6a9268",
                "sha256": "449f97fe4ca19d73abd13c689b3390be57f10ece3884fd617c7ce4da959fa146"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbbc82587ea6ba223f0225d91d6a9268",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 27762351,
            "upload_time": "2025-02-05T13:15:30",
            "upload_time_iso_8601": "2025-02-05T13:15:30.827484Z",
            "url": "https://files.pythonhosted.org/packages/58/34/980483eabb1feb838c00cbe935853a8f408ad72180d3f602de6fb783879d/rdkit-2024.9.5-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2e493410c2e9edb518e7c1b92b5eb548f3e2337f7a984054eb679aea6b85770",
                "md5": "f5e966f87bff75ffb5e2d50617976295",
                "sha256": "91a630bbce306c9c5c1d8c94f85571033e80a3d1fe2ed7c4c135fa1f8a27f3ae"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5e966f87bff75ffb5e2d50617976295",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 33428883,
            "upload_time": "2025-02-05T13:15:36",
            "upload_time_iso_8601": "2025-02-05T13:15:36.846839Z",
            "url": "https://files.pythonhosted.org/packages/e2/e4/93410c2e9edb518e7c1b92b5eb548f3e2337f7a984054eb679aea6b85770/rdkit-2024.9.5-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86b0ffcc3405a4d0dbbeb73346045235ccf24268a710e598fa7c987dcc1cea9",
                "md5": "97280da36d5b223adf8e010e06f549c6",
                "sha256": "d89f546ecc9a58719f7adad16dde0042e5399f7b6ebcca6a2b849879d2c699bf"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97280da36d5b223adf8e010e06f549c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 34272880,
            "upload_time": "2025-02-05T13:15:45",
            "upload_time_iso_8601": "2025-02-05T13:15:45.251155Z",
            "url": "https://files.pythonhosted.org/packages/a8/6b/0ffcc3405a4d0dbbeb73346045235ccf24268a710e598fa7c987dcc1cea9/rdkit-2024.9.5-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dee0a344d971ded2dcba55d27a04dbd01149ae869727e3216cb21e1cf34d6923",
                "md5": "6a6041b1dcf8d4e190ad23b37dfad5ea",
                "sha256": "65a6fc41a63a8950cd8b1910711fe8cbe3f051381dd0cddce4fb55b15f912737"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a6041b1dcf8d4e190ad23b37dfad5ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 22487431,
            "upload_time": "2025-02-05T13:15:50",
            "upload_time_iso_8601": "2025-02-05T13:15:50.488962Z",
            "url": "https://files.pythonhosted.org/packages/de/e0/a344d971ded2dcba55d27a04dbd01149ae869727e3216cb21e1cf34d6923/rdkit-2024.9.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04ccb128507090394fefb22d0fabaf38d07ff31d1cb7185b992df24d4274f22d",
                "md5": "9a50e782e10f7f2665f90acd3aaaf010",
                "sha256": "f36bcf88b4c82364a9315301d8943367244171adc3a0a22bb627751ba0c21d53"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a50e782e10f7f2665f90acd3aaaf010",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 29955495,
            "upload_time": "2025-02-05T13:15:56",
            "upload_time_iso_8601": "2025-02-05T13:15:56.533902Z",
            "url": "https://files.pythonhosted.org/packages/04/cc/b128507090394fefb22d0fabaf38d07ff31d1cb7185b992df24d4274f22d/rdkit-2024.9.5-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "699d8499a68a7428104226fc132c2426c368a3c52239a602b26dfea104932ff0",
                "md5": "eb22f4768789a974481a215f1f42bcc3",
                "sha256": "20bcf75ecce581a4fcfa79d6c4506ef19d96ae8b4e479743d4bde010dacfcee9"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eb22f4768789a974481a215f1f42bcc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 27714365,
            "upload_time": "2025-02-05T13:16:01",
            "upload_time_iso_8601": "2025-02-05T13:16:01.831037Z",
            "url": "https://files.pythonhosted.org/packages/69/9d/8499a68a7428104226fc132c2426c368a3c52239a602b26dfea104932ff0/rdkit-2024.9.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a9c3b5d2d8a8d72ebe04d14e113ec90557fcd2182e4967a731185d7b487d06",
                "md5": "52aa45d4718dbce46f7da1d320bff4f8",
                "sha256": "70466f8974f8afe8150cd14d6eb642a327df1392f8452b69e0d2c9e2d90ee4dd"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52aa45d4718dbce46f7da1d320bff4f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33538467,
            "upload_time": "2025-02-05T13:16:07",
            "upload_time_iso_8601": "2025-02-05T13:16:07.253257Z",
            "url": "https://files.pythonhosted.org/packages/67/a9/c3b5d2d8a8d72ebe04d14e113ec90557fcd2182e4967a731185d7b487d06/rdkit-2024.9.5-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46cc563011dd0ee16801ceedce7a023a4de2c2e166d7cdf08205eb49949413b5",
                "md5": "8ea7681a0e8daf125d8a64bfedc3992d",
                "sha256": "0842375526a1e16bf347ac96dc854f2081ab34ff423734f5ebafdfc2a8914ed8"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ea7681a0e8daf125d8a64bfedc3992d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34335408,
            "upload_time": "2025-02-05T13:16:13",
            "upload_time_iso_8601": "2025-02-05T13:16:13.265787Z",
            "url": "https://files.pythonhosted.org/packages/46/cc/563011dd0ee16801ceedce7a023a4de2c2e166d7cdf08205eb49949413b5/rdkit-2024.9.5-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2413711ab876a25b643bf429caadd4edf43be6dfd9886339677ee7fda168bdc2",
                "md5": "4c3c594c1ee6aceb727b2113db4a48f3",
                "sha256": "c6b0b1803f862d3c0ff965791800a0466ea07a6f1bded5d2684c61754ba686a8"
            },
            "downloads": -1,
            "filename": "rdkit-2024.9.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c3c594c1ee6aceb727b2113db4a48f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 22469632,
            "upload_time": "2025-02-05T13:16:18",
            "upload_time_iso_8601": "2025-02-05T13:16:18.447045Z",
            "url": "https://files.pythonhosted.org/packages/24/13/711ab876a25b643bf429caadd4edf43be6dfd9886339677ee7fda168bdc2/rdkit-2024.9.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-05 13:13:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kuelumbus",
    "github_project": "rdkit-pypi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "rdkit"
}
        
Elapsed time: 5.53865s