rdkit


Namerdkit JSON
Version 2025.3.6 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-09-05 12:45:58
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 | 3.14 | 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, M-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`, `cp312-manylinux_x86_64`,  `cp313-manylinux_x86_64`, or  `cp314-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 | 3.14 | 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    | \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    | \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    | \u2714\ufe0f    | Github Actions |\n| macOS   | armv8   | 64  | >= macOS 11, M-Hardware                             | last: 2024.3.5 | \u2714\ufe0f   | \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    | \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`, `cp312-manylinux_x86_64`,  `cp313-manylinux_x86_64`, or  `cp314-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": "2025.3.6",
    "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": null,
            "digests": {
                "blake2b_256": "867835e91f509c00f0837dc18cd72ba078e5e5650ef563e1cbc986efc84e2a7d",
                "md5": "18c7a19ec5c3f5aba5c7314296de2af8",
                "sha256": "25835dbf1b07d43088b00798db44ec805b3030129c6791e2bf5bc30159b612cc"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18c7a19ec5c3f5aba5c7314296de2af8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 31642363,
            "upload_time": "2025-09-05T12:45:58",
            "upload_time_iso_8601": "2025-09-05T12:45:58.380488Z",
            "url": "https://files.pythonhosted.org/packages/86/78/35e91f509c00f0837dc18cd72ba078e5e5650ef563e1cbc986efc84e2a7d/rdkit-2025.3.6-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08467fbb587d093e4997efac6bfdb1d9c325a934a6096dd2c760900a99c216e0",
                "md5": "8f52d44f8aea2eba53c85b0ce16490ac",
                "sha256": "fe9f3fbb7a85f92429ce7d400e301675cd94d05019292c3fe77a7f540dad354d"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f52d44f8aea2eba53c85b0ce16490ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 29089318,
            "upload_time": "2025-09-05T12:46:02",
            "upload_time_iso_8601": "2025-09-05T12:46:02.474263Z",
            "url": "https://files.pythonhosted.org/packages/08/46/7fbb587d093e4997efac6bfdb1d9c325a934a6096dd2c760900a99c216e0/rdkit-2025.3.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d0546a34e20fa2c0de73831f3d6938c6464f01db079c9f5eb3aa591371118ba",
                "md5": "9a37ed6cf532ff6962b3c8e48c3096cc",
                "sha256": "dc44d73ccf2a45c2d1d27e8f31b8db648b3848d45f6c73777724e04903c3298d"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9a37ed6cf532ff6962b3c8e48c3096cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34711706,
            "upload_time": "2025-09-05T12:46:06",
            "upload_time_iso_8601": "2025-09-05T12:46:06.792752Z",
            "url": "https://files.pythonhosted.org/packages/4d/05/46a34e20fa2c0de73831f3d6938c6464f01db079c9f5eb3aa591371118ba/rdkit-2025.3.6-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a57fdc708cb747ba19b69ded1c72540ea0b5377a52bc105657d330f653e10b38",
                "md5": "e2425261335b30f39c79eee422de36f3",
                "sha256": "c4784a1ff6ef5f7be334d59c4d4d592592fcb30095a260494a9cbfa2e470f737"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2425261335b30f39c79eee422de36f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 36181708,
            "upload_time": "2025-09-05T12:46:11",
            "upload_time_iso_8601": "2025-09-05T12:46:11.369888Z",
            "url": "https://files.pythonhosted.org/packages/a5/7f/dc708cb747ba19b69ded1c72540ea0b5377a52bc105657d330f653e10b38/rdkit-2025.3.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2d4ca0c814510a64d460989545d762ed9a4140ae68843524860d44366de5499",
                "md5": "ce058b8a31cde965a9b466e2aa747d99",
                "sha256": "ec583433d9c609cb28d900f049cefe73a49089984789d07630ea9229ca5d7740"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce058b8a31cde965a9b466e2aa747d99",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 23505663,
            "upload_time": "2025-09-05T12:46:15",
            "upload_time_iso_8601": "2025-09-05T12:46:15.285634Z",
            "url": "https://files.pythonhosted.org/packages/d2/d4/ca0c814510a64d460989545d762ed9a4140ae68843524860d44366de5499/rdkit-2025.3.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92de4a9ecf9acdee20deed93ef3bdadc9b0cbacd09d5cb23a8620d0f8411bd31",
                "md5": "fe046f0196a74a921e41696f631535ab",
                "sha256": "3ac57fcddd17d6707139fb85782d11c2ac674b7f18d06750f5014dc43ece34e4"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe046f0196a74a921e41696f631535ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 31642866,
            "upload_time": "2025-09-05T12:46:19",
            "upload_time_iso_8601": "2025-09-05T12:46:19.242937Z",
            "url": "https://files.pythonhosted.org/packages/92/de/4a9ecf9acdee20deed93ef3bdadc9b0cbacd09d5cb23a8620d0f8411bd31/rdkit-2025.3.6-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db88b6f915ebdffbfdfa140cb4d515bbfe0cb08008e2ce94aa5c44414b68234a",
                "md5": "bcc187be68bf04eb20a6b2fca881b462",
                "sha256": "682f74525260b177b7dd84ea235b3abc4e5db72e5c62c664c896c7c150299e2a"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bcc187be68bf04eb20a6b2fca881b462",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 29089754,
            "upload_time": "2025-09-05T12:46:22",
            "upload_time_iso_8601": "2025-09-05T12:46:22.834577Z",
            "url": "https://files.pythonhosted.org/packages/db/88/b6f915ebdffbfdfa140cb4d515bbfe0cb08008e2ce94aa5c44414b68234a/rdkit-2025.3.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f57096953e5d85b981e5dfc14075a8baa41df91ade2b9b005b133a959f178925",
                "md5": "bce0bf6db1bf823d3521d6328eab80e0",
                "sha256": "d3ad26d64d10dd3cf001c3dcf0b7e1e2eb7221334b1d0f6f3fbd5d5408c22d74"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bce0bf6db1bf823d3521d6328eab80e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34707581,
            "upload_time": "2025-09-05T12:46:27",
            "upload_time_iso_8601": "2025-09-05T12:46:27.075865Z",
            "url": "https://files.pythonhosted.org/packages/f5/70/96953e5d85b981e5dfc14075a8baa41df91ade2b9b005b133a959f178925/rdkit-2025.3.6-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b19d2622e01e38736a68d84b34c7b955e7ce32f0d19901e79620b80b1217300e",
                "md5": "58e509f53503a191cd134ea1e3715f28",
                "sha256": "afc931d1be1a4ad2fc4f2f2732c10983b1a57fbde9c22870721beafe42be3ab0"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58e509f53503a191cd134ea1e3715f28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36180899,
            "upload_time": "2025-09-05T12:46:31",
            "upload_time_iso_8601": "2025-09-05T12:46:31.335430Z",
            "url": "https://files.pythonhosted.org/packages/b1/9d/2622e01e38736a68d84b34c7b955e7ce32f0d19901e79620b80b1217300e/rdkit-2025.3.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2458d07d92475bf4598f5e948c858d3e9f15a67df2ae04e4627013b9d86edc3",
                "md5": "38be755341f6df11dac86babf431947f",
                "sha256": "4339531a3c149087f6e39de75b7c71ac75c87e5eabb1b34c27cd0bef98a72814"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38be755341f6df11dac86babf431947f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 23506723,
            "upload_time": "2025-09-05T12:46:35",
            "upload_time_iso_8601": "2025-09-05T12:46:35.119810Z",
            "url": "https://files.pythonhosted.org/packages/a2/45/8d07d92475bf4598f5e948c858d3e9f15a67df2ae04e4627013b9d86edc3/rdkit-2025.3.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b92f23ec58616edd1bf467c6b7cc96dca017e9f4f9c9bb32dfa3b35637e6a745",
                "md5": "eb213a32ac75698444b7eebed4605fc5",
                "sha256": "9c433eeba711144304b8febd8de4ec653f9fb2520923e9f55b3a617e953870af"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb213a32ac75698444b7eebed4605fc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 31719603,
            "upload_time": "2025-09-05T12:46:39",
            "upload_time_iso_8601": "2025-09-05T12:46:39.746265Z",
            "url": "https://files.pythonhosted.org/packages/b9/2f/23ec58616edd1bf467c6b7cc96dca017e9f4f9c9bb32dfa3b35637e6a745/rdkit-2025.3.6-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4944bb352e512f20052d55fd0ec29483f122ef17228dacc103148d2eb8fb0938",
                "md5": "90caa9ea7d3da8cc3a4c40b89c434539",
                "sha256": "9df1b9b336f1e36f439e25dd816ec66bf78f979d473998514d92980ce2ed58a6"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "90caa9ea7d3da8cc3a4c40b89c434539",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 29132323,
            "upload_time": "2025-09-05T12:46:43",
            "upload_time_iso_8601": "2025-09-05T12:46:43.856884Z",
            "url": "https://files.pythonhosted.org/packages/49/44/bb352e512f20052d55fd0ec29483f122ef17228dacc103148d2eb8fb0938/rdkit-2025.3.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d7e0868837a10a4bb2c0ecbab30b29b79aedce93d61c3c14949123f8e527bad",
                "md5": "616be53208907715db48082acc4f67c8",
                "sha256": "24c5a3b5c367c174d169e0271576450aa2b83c2df95a1ccaed4662efe13b11bf"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "616be53208907715db48082acc4f67c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 34595105,
            "upload_time": "2025-09-05T12:46:48",
            "upload_time_iso_8601": "2025-09-05T12:46:48.194730Z",
            "url": "https://files.pythonhosted.org/packages/6d/7e/0868837a10a4bb2c0ecbab30b29b79aedce93d61c3c14949123f8e527bad/rdkit-2025.3.6-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "470684f140ed025dd96c7ec36aa38555b466f8006bd36085abd3702d75c98160",
                "md5": "e6603ffec4af448eb4a7e8344b400d0e",
                "sha256": "ed5565d4d6423def7c52eb20a6263afcd979383757086dec92f57e77d7c7f856"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6603ffec4af448eb4a7e8344b400d0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 36119142,
            "upload_time": "2025-09-05T12:46:52",
            "upload_time_iso_8601": "2025-09-05T12:46:52.003119Z",
            "url": "https://files.pythonhosted.org/packages/47/06/84f140ed025dd96c7ec36aa38555b466f8006bd36085abd3702d75c98160/rdkit-2025.3.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb982d34338adca7f7932fcc83f6e9139c8ddc313b166ae18033ab7c996be836",
                "md5": "19f333d0a4bb7f769d613258dd89e90c",
                "sha256": "632f89345c8e84306a21473fdaad3a58dbd5e6c0b128bef33dfb6090af326061"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "19f333d0a4bb7f769d613258dd89e90c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 23526290,
            "upload_time": "2025-09-05T12:46:55",
            "upload_time_iso_8601": "2025-09-05T12:46:55.720588Z",
            "url": "https://files.pythonhosted.org/packages/cb/98/2d34338adca7f7932fcc83f6e9139c8ddc313b166ae18033ab7c996be836/rdkit-2025.3.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66c353ddc0f88dce2a0b5ac938d97326da25b4e9f6b6858ffc6797a95d824ddd",
                "md5": "592bae08ba3d877315c9ae1b3bc4cd73",
                "sha256": "6439943172350151cd45e19b41acdf206397736e686a7717df91b07ee91fc174"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "592bae08ba3d877315c9ae1b3bc4cd73",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 31718554,
            "upload_time": "2025-09-05T12:46:59",
            "upload_time_iso_8601": "2025-09-05T12:46:59.379631Z",
            "url": "https://files.pythonhosted.org/packages/66/c3/53ddc0f88dce2a0b5ac938d97326da25b4e9f6b6858ffc6797a95d824ddd/rdkit-2025.3.6-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7361fb7644ff06817a9e3b67d70da53dea59b64c38badc49426e8338e36fbdd",
                "md5": "406182de6228a77a8cafbf96791f8ecd",
                "sha256": "760dc4d90cc30a96145062811136cd5d309a91a7eeacec0afcf0b079877f8be2"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "406182de6228a77a8cafbf96791f8ecd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 29131323,
            "upload_time": "2025-09-05T12:47:03",
            "upload_time_iso_8601": "2025-09-05T12:47:03.078243Z",
            "url": "https://files.pythonhosted.org/packages/e7/36/1fb7644ff06817a9e3b67d70da53dea59b64c38badc49426e8338e36fbdd/rdkit-2025.3.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e77d2e65c55eb6da56c000f9a7b0b2cec6b4aa2a17ec70ef58879f59c036ca43",
                "md5": "378e3aabccc8cfa48946df6f0a1a627c",
                "sha256": "33de7c4c2c49d3ca9b44331b0d6591f4f3957605bd9271b845d358ffc9e1bc4b"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "378e3aabccc8cfa48946df6f0a1a627c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 34593714,
            "upload_time": "2025-09-05T12:47:06",
            "upload_time_iso_8601": "2025-09-05T12:47:06.832599Z",
            "url": "https://files.pythonhosted.org/packages/e7/7d/2e65c55eb6da56c000f9a7b0b2cec6b4aa2a17ec70ef58879f59c036ca43/rdkit-2025.3.6-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c182b2330569fbff20c5f5495f69ae28d3e61dfbc055f00b7fe977905a574089",
                "md5": "4b62c86093d34c025193accacc7c201c",
                "sha256": "8bb52f5fc9f1a93817264dffc0ac8b20cea71091f9b8a253ebd288aeae26032f"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b62c86093d34c025193accacc7c201c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 36117945,
            "upload_time": "2025-09-05T12:47:11",
            "upload_time_iso_8601": "2025-09-05T12:47:11.310960Z",
            "url": "https://files.pythonhosted.org/packages/c1/82/b2330569fbff20c5f5495f69ae28d3e61dfbc055f00b7fe977905a574089/rdkit-2025.3.6-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1ed57104398c6efe7304668846cf92e38102cd9d3a9d249087893d68f595907",
                "md5": "47be1c80b2a4dac4c3cb8c0a19acbb72",
                "sha256": "be1064d31630cbfbf2fc4b35cf9175a725378601bbd1b945047e9ba9c231fcc2"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47be1c80b2a4dac4c3cb8c0a19acbb72",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 23525366,
            "upload_time": "2025-09-05T12:47:14",
            "upload_time_iso_8601": "2025-09-05T12:47:14.636506Z",
            "url": "https://files.pythonhosted.org/packages/f1/ed/57104398c6efe7304668846cf92e38102cd9d3a9d249087893d68f595907/rdkit-2025.3.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "add1447534eca35ee67db94e3ec4a4e0504d6b0088d963ac5edd19d451f6f80c",
                "md5": "43d7afa088ea5e59bfe302befd314b04",
                "sha256": "26c4a1cd658b9b7264f9b021366e6d26474646d9021033e1ec4b93e80d5215b6"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp314-cp314-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43d7afa088ea5e59bfe302befd314b04",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 31720872,
            "upload_time": "2025-09-05T12:47:18",
            "upload_time_iso_8601": "2025-09-05T12:47:18.259985Z",
            "url": "https://files.pythonhosted.org/packages/ad/d1/447534eca35ee67db94e3ec4a4e0504d6b0088d963ac5edd19d451f6f80c/rdkit-2025.3.6-cp314-cp314-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cf7b3e808851bd2961452ed672c694b38ec8c1fd3b30cb0f56b8ef722234f9e",
                "md5": "78b0a8f56a93a6b3d9a9c63ee3debfc0",
                "sha256": "6b2bbafc9034c058a539ba7f29647d2c45803019ca48ac0888024971082570b9"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "78b0a8f56a93a6b3d9a9c63ee3debfc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 29150282,
            "upload_time": "2025-09-05T12:47:21",
            "upload_time_iso_8601": "2025-09-05T12:47:21.961249Z",
            "url": "https://files.pythonhosted.org/packages/9c/f7/b3e808851bd2961452ed672c694b38ec8c1fd3b30cb0f56b8ef722234f9e/rdkit-2025.3.6-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9bd23aba3a54a3e79fafbf74d3b9dde7acda9ac82577b293949d825816ac9dc",
                "md5": "d4a4acdca23f7ba2d69152d46f07c3aa",
                "sha256": "cda846618360858a084bc096a9e1af2d6693f1577c0309f5760ae87c01d089bb"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp314-cp314-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4a4acdca23f7ba2d69152d46f07c3aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 34625860,
            "upload_time": "2025-09-05T12:47:26",
            "upload_time_iso_8601": "2025-09-05T12:47:26.294827Z",
            "url": "https://files.pythonhosted.org/packages/f9/bd/23aba3a54a3e79fafbf74d3b9dde7acda9ac82577b293949d825816ac9dc/rdkit-2025.3.6-cp314-cp314-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88768b2108aa2e4a202bd5e9e8f8c4719eb476be43123288ee0ffdc74f35261e",
                "md5": "4075b005653c97172a17f7a997437085",
                "sha256": "7d10009d98a4c390cc14c5059a0c15f30f614f19b81ca665ff52a4fd8202bad9"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp314-cp314-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4075b005653c97172a17f7a997437085",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 36125228,
            "upload_time": "2025-09-05T12:47:30",
            "upload_time_iso_8601": "2025-09-05T12:47:30.330524Z",
            "url": "https://files.pythonhosted.org/packages/88/76/8b2108aa2e4a202bd5e9e8f8c4719eb476be43123288ee0ffdc74f35261e/rdkit-2025.3.6-cp314-cp314-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "371d415fcfdc96c0453d02d8265684083bfac45425c52aeee64aadc330aa6f66",
                "md5": "b98125c250cf43e5bcb047425fccb2b6",
                "sha256": "600d7fc3a2665baa9de7ec6870f33a53027f532f9a47e5df765ac91539c7e746"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b98125c250cf43e5bcb047425fccb2b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 24004467,
            "upload_time": "2025-09-05T12:47:33",
            "upload_time_iso_8601": "2025-09-05T12:47:33.743905Z",
            "url": "https://files.pythonhosted.org/packages/37/1d/415fcfdc96c0453d02d8265684083bfac45425c52aeee64aadc330aa6f66/rdkit-2025.3.6-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4c82c6202e6c652665966acbdaccd9bba20f5bf1e5254e2889ccbf0b0f69abf",
                "md5": "078b63fb6c68a3e72c713478782df910",
                "sha256": "3ca407124611fbefa0a867923d07e8f64cae72a26b7aebbd35cdfd0c384fecc2"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "078b63fb6c68a3e72c713478782df910",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31642974,
            "upload_time": "2025-09-05T12:47:37",
            "upload_time_iso_8601": "2025-09-05T12:47:37.137903Z",
            "url": "https://files.pythonhosted.org/packages/a4/c8/2c6202e6c652665966acbdaccd9bba20f5bf1e5254e2889ccbf0b0f69abf/rdkit-2025.3.6-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b564708dc9333e9d47e0850c5eccb38b91a54423be3807f567e97542042bce",
                "md5": "c7b79b371815ed145bd7ec7373e13a5f",
                "sha256": "d563363caab756e8ddc09bc0eef2b7f5d916e11453a4a2e94160da0f3cd955a9"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7b79b371815ed145bd7ec7373e13a5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 29089963,
            "upload_time": "2025-09-05T12:47:40",
            "upload_time_iso_8601": "2025-09-05T12:47:40.666837Z",
            "url": "https://files.pythonhosted.org/packages/72/b5/64708dc9333e9d47e0850c5eccb38b91a54423be3807f567e97542042bce/rdkit-2025.3.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62782013b8c8e1b4f2e9b8ee5df5dd7ed3cfa3de8a8a9791b0a9f8cb044c858a",
                "md5": "40c18afc1ef8fc564595dc14f1ff97f1",
                "sha256": "ab51ccd5feed2d329f70468ca9b168a61451483b7480c8c9c7c2edc226c709cc"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40c18afc1ef8fc564595dc14f1ff97f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34712446,
            "upload_time": "2025-09-05T12:47:44",
            "upload_time_iso_8601": "2025-09-05T12:47:44.751979Z",
            "url": "https://files.pythonhosted.org/packages/62/78/2013b8c8e1b4f2e9b8ee5df5dd7ed3cfa3de8a8a9791b0a9f8cb044c858a/rdkit-2025.3.6-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a230739a366caf04df49f2f5eb3cdfd3b821025ca80db3f1c2b327395047282b",
                "md5": "dd2dc42038bd14d9b259d96a07bdad96",
                "sha256": "56d64cb2c365dd3513a544325895b23e59d6024aff8b2a09b6d9236c26bdf9aa"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd2dc42038bd14d9b259d96a07bdad96",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 36181950,
            "upload_time": "2025-09-05T12:47:49",
            "upload_time_iso_8601": "2025-09-05T12:47:49.359638Z",
            "url": "https://files.pythonhosted.org/packages/a2/30/739a366caf04df49f2f5eb3cdfd3b821025ca80db3f1c2b327395047282b/rdkit-2025.3.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2444d962cdc3a484a75f5fdc5537eb4aeb5a884bd9a31b3ed33bcce3fd975bc",
                "md5": "9ff8ccc2ee830fab272c62aa4610bd47",
                "sha256": "73a012cfed8d4949bb19b897f9267549631ac771f03a7f27af9a52b98ada1959"
            },
            "downloads": -1,
            "filename": "rdkit-2025.3.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9ff8ccc2ee830fab272c62aa4610bd47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 23509557,
            "upload_time": "2025-09-05T12:47:52",
            "upload_time_iso_8601": "2025-09-05T12:47:52.697949Z",
            "url": "https://files.pythonhosted.org/packages/f2/44/4d962cdc3a484a75f5fdc5537eb4aeb5a884bd9a31b3ed33bcce3fd975bc/rdkit-2025.3.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-05 12:45:58",
    "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: 0.61633s