rdkit


Namerdkit JSON
Version 2024.3.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_time2024-08-07 12:34:25
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 | CI             |
| ------- | ------- | --- | --------------------------------------------------- | --- | --- | ---- | ---- | ---- | -------------- |
| Linux   | intel   | 64  | glibc >= 2.28 (e.g., Ubuntu 18.04+, CentOS 6+, ...) | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | Github Actions |
| Linux   | aarch64 | 64  | glibc >= 2.28 (e.g., Raspberry Pi, ...)             | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | Circle CI      |
| macOS   | intel   | 64  | >= macOS 10.13                                      | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | Github Actions |
| macOS   | armv8   | 64  | >= macOS 11, M1 hardware                            | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | Cirrus CI Actions |
| Windows | intel   | 64  |                                                     | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | 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=cp38-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml
```

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

            

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 | CI             |\n| ------- | ------- | --- | --------------------------------------------------- | --- | --- | ---- | ---- | ---- | -------------- |\n| Linux   | intel   | 64  | glibc >= 2.28 (e.g., Ubuntu 18.04+, CentOS 6+, ...) | \u2714\ufe0f   | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n| Linux   | aarch64 | 64  | glibc >= 2.28 (e.g., Raspberry Pi, ...)             | \u2714\ufe0f   | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Circle CI      |\n| macOS   | intel   | 64  | >= macOS 10.13                                      | \u2714\ufe0f   | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n| macOS   | armv8   | 64  | >= macOS 11, M1 hardware                            | \u2714\ufe0f   | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Cirrus CI Actions |\n| Windows | intel   | 64  |                                                     | \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=cp38-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml\n```\n\nReplace `cp38-manylinux_x86_64` with `cp39-manylinux_x86_64`, `cp310-manylinux_x86_64`, `cp311-manylinux_x86_64`, or `cp312-manylinux_x86_64` to build for different Python versions.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A collection of chemoinformatics and machine-learning software written in C++ and Python",
    "version": "2024.3.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": "1054acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed",
                "md5": "97dffe4b5aec0d1437a272d8e2bc03f6",
                "sha256": "1cb7cdb29956649d4c875790b94142868c08c0735dee4d90b2d70dfd378e9d2e"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97dffe4b5aec0d1437a272d8e2bc03f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 29505991,
            "upload_time": "2024-08-07T12:34:25",
            "upload_time_iso_8601": "2024-08-07T12:34:25.607048Z",
            "url": "https://files.pythonhosted.org/packages/10/54/acd8657fbf77af4ed1f773e6eb14b75b3840e8e9a665439101c0491fa9ed/rdkit-2024.3.5-cp310-cp310-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0879ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b",
                "md5": "8d65bfe44527d13f590b2f09ce2fb595",
                "sha256": "e5b0dfb28aa0949152ff816fba0a2f6267154f5c25159a9ec84c27cf18f72322"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d65bfe44527d13f590b2f09ce2fb595",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 27453273,
            "upload_time": "2024-08-07T12:34:31",
            "upload_time_iso_8601": "2024-08-07T12:34:31.391746Z",
            "url": "https://files.pythonhosted.org/packages/08/79/ac7e30471b4cbe465aa9b9bcb5a64018df55464e37777f696682199bc65b/rdkit-2024.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b55271b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d",
                "md5": "39d54ab62e0045b6dbc45a90718e6758",
                "sha256": "7d5576bad6672959d0c1939e8d7e2fcd8656f8daf9788ce58e5c313db719b5ec"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39d54ab62e0045b6dbc45a90718e6758",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32195237,
            "upload_time": "2024-08-07T12:34:37",
            "upload_time_iso_8601": "2024-08-07T12:34:37.116241Z",
            "url": "https://files.pythonhosted.org/packages/b5/52/71b8946c1cf3d1bea6a09d7e2ea7acb783d34886af4666cb10bd791cdb4d/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f639e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5",
                "md5": "aa6ca17159a5d75f33d9891d31b08f7c",
                "sha256": "455d510beff8806e62e48b977d7acbfbc351474fa132124738a07223440c1b9a"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa6ca17159a5d75f33d9891d31b08f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 33133359,
            "upload_time": "2024-08-07T12:34:42",
            "upload_time_iso_8601": "2024-08-07T12:34:42.266716Z",
            "url": "https://files.pythonhosted.org/packages/f6/39/e625b5c132f174a5c1446b1373235bfc290224baedfed28b4d515fbdfdb5/rdkit-2024.3.5-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37ea5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de",
                "md5": "c651350c96e58beee41cbf162f39d64a",
                "sha256": "01fd323f5902a720925293c0ce08a33e630422374cf263d04ef173c106c63c36"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c651350c96e58beee41cbf162f39d64a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 21730123,
            "upload_time": "2024-08-07T12:34:46",
            "upload_time_iso_8601": "2024-08-07T12:34:46.979502Z",
            "url": "https://files.pythonhosted.org/packages/37/ea/5d988d278405cfa44e4ccd32a252b880e9ce36e25707d5715e7e02d7b4de/rdkit-2024.3.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "692745fd87a69c09d0075b933f9795ed0b532267973162db638119f38fe65527",
                "md5": "7b4ac94376bcab1e9ccb123702059d1d",
                "sha256": "04079aef5f91965bd2a48bf432b32c36ea1bf088e26efb2c9a43b625b6a75d15"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp311-cp311-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b4ac94376bcab1e9ccb123702059d1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 29506113,
            "upload_time": "2024-08-07T12:34:50",
            "upload_time_iso_8601": "2024-08-07T12:34:50.913823Z",
            "url": "https://files.pythonhosted.org/packages/69/27/45fd87a69c09d0075b933f9795ed0b532267973162db638119f38fe65527/rdkit-2024.3.5-cp311-cp311-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5180b6f33520553055828e35ca862075ab15f22db94b70fac2fe24a6a24abd35",
                "md5": "d6bd7145d73f39a7f66c386b7c9689a3",
                "sha256": "98dac94a5e414ed1880b215eacec63e5fd77b0ea351e0a18fc5229acb8e886f5"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d6bd7145d73f39a7f66c386b7c9689a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 27453589,
            "upload_time": "2024-08-07T12:34:56",
            "upload_time_iso_8601": "2024-08-07T12:34:56.082140Z",
            "url": "https://files.pythonhosted.org/packages/51/80/b6f33520553055828e35ca862075ab15f22db94b70fac2fe24a6a24abd35/rdkit-2024.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94ef582c88b55b4ede7536c9a1c8ea58e766b6d8ea65d692779e2fe3e8498b73",
                "md5": "42a6eb5f3090185c940ce4ec4e97bce8",
                "sha256": "8d4ebafb7e845bdc55eb6e2e188123ec84fb2bf724d3a7eb2da9bcfade7acc65"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42a6eb5f3090185c940ce4ec4e97bce8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 32192441,
            "upload_time": "2024-08-07T12:35:00",
            "upload_time_iso_8601": "2024-08-07T12:35:00.574644Z",
            "url": "https://files.pythonhosted.org/packages/94/ef/582c88b55b4ede7536c9a1c8ea58e766b6d8ea65d692779e2fe3e8498b73/rdkit-2024.3.5-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5afb11467265f41f2de3101e12a6cbc407cf754bac875bb64b942d861612f40",
                "md5": "ca2ab011dfef7d86f94614d5f11e86ee",
                "sha256": "a51cc403792ba37d1ee8ad84ad829177a4453547a4e085e1115ae2b237084ddb"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca2ab011dfef7d86f94614d5f11e86ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33131587,
            "upload_time": "2024-08-07T12:35:05",
            "upload_time_iso_8601": "2024-08-07T12:35:05.361853Z",
            "url": "https://files.pythonhosted.org/packages/b5/af/b11467265f41f2de3101e12a6cbc407cf754bac875bb64b942d861612f40/rdkit-2024.3.5-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c878a6917d907564ea288ceb122348263164f99365779167d3fe74b5e0531635",
                "md5": "709fdf630ce7d0a99add49205ec3ca9c",
                "sha256": "292141f0ba2359be07d8566d9a39ce697c1d6e7eb406031a2bf0387026503a47"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "709fdf630ce7d0a99add49205ec3ca9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 21730220,
            "upload_time": "2024-08-07T12:35:09",
            "upload_time_iso_8601": "2024-08-07T12:35:09.749553Z",
            "url": "https://files.pythonhosted.org/packages/c8/78/a6917d907564ea288ceb122348263164f99365779167d3fe74b5e0531635/rdkit-2024.3.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "722723589039f883abda0148909bdbd5365bf8180ba2db713b5800f480738b5c",
                "md5": "13bec3548d43c676e1996bff2672cb05",
                "sha256": "d8714c03558086d022649617197c0c45c75c301f6a9fb67205695493a7e5b826"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13bec3548d43c676e1996bff2672cb05",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 29588315,
            "upload_time": "2024-08-07T12:35:14",
            "upload_time_iso_8601": "2024-08-07T12:35:14.605451Z",
            "url": "https://files.pythonhosted.org/packages/72/27/23589039f883abda0148909bdbd5365bf8180ba2db713b5800f480738b5c/rdkit-2024.3.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22f43e32f2237039a7a4896630db783fefca68a7974ee0d272975de0eeb64f31",
                "md5": "62e498db9a719e9d2b7dd07a7076eb1e",
                "sha256": "a98099cef42c1eb52512b343beb68a8b7cc4da79924a67181f58692a6376d91b"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "62e498db9a719e9d2b7dd07a7076eb1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 27494662,
            "upload_time": "2024-08-07T12:35:19",
            "upload_time_iso_8601": "2024-08-07T12:35:19.562942Z",
            "url": "https://files.pythonhosted.org/packages/22/f4/3e32f2237039a7a4896630db783fefca68a7974ee0d272975de0eeb64f31/rdkit-2024.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "818eff92d82911ea8c9c0e3942789cc13f1bbed51427ce69719e1b97a6f305e0",
                "md5": "cf68902c170e37941e063046d9f078ab",
                "sha256": "89f7a72466ffbd45320d845ee1bcde1bddb1a322352836835d26ebb712228a41"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf68902c170e37941e063046d9f078ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 32086455,
            "upload_time": "2024-08-07T12:35:24",
            "upload_time_iso_8601": "2024-08-07T12:35:24.144546Z",
            "url": "https://files.pythonhosted.org/packages/81/8e/ff92d82911ea8c9c0e3942789cc13f1bbed51427ce69719e1b97a6f305e0/rdkit-2024.3.5-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa0394388eda859d357612553c3bfbaa04d699b7cbcb373f52ac090b1f62fc39",
                "md5": "9c4d0f24b2adf9dad330d3f66a0bd3f7",
                "sha256": "913494a03fcf6121c103e5db43fa33bca0fcc65ebd5a6c46661baa6851f79d91"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c4d0f24b2adf9dad330d3f66a0bd3f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33052872,
            "upload_time": "2024-08-07T12:35:28",
            "upload_time_iso_8601": "2024-08-07T12:35:28.195877Z",
            "url": "https://files.pythonhosted.org/packages/fa/03/94388eda859d357612553c3bfbaa04d699b7cbcb373f52ac090b1f62fc39/rdkit-2024.3.5-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03ac8753124d315a4565e533b91d4b0e9e90205a91490051b5918e574b4abcd5",
                "md5": "20a5a38bc092c3b59c0b37927f4c71a5",
                "sha256": "6af38c62d4af9d669f8996551d3ae809de9ab245570b861be3f7a2b1a536f79f"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "20a5a38bc092c3b59c0b37927f4c71a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 21745668,
            "upload_time": "2024-08-07T12:35:33",
            "upload_time_iso_8601": "2024-08-07T12:35:33.619269Z",
            "url": "https://files.pythonhosted.org/packages/03/ac/8753124d315a4565e533b91d4b0e9e90205a91490051b5918e574b4abcd5/rdkit-2024.3.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cb8acebdf640d693a21219da8f2089f49bae624b4804ee81f624c4df0530a4f",
                "md5": "3e4908975412d7074276bf166d3eb4d6",
                "sha256": "c971eba2a67f8ae301b9b8c66b3431cd62472f648cdec9694e5413d8ebc59720"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp38-cp38-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e4908975412d7074276bf166d3eb4d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 29503489,
            "upload_time": "2024-08-07T12:35:37",
            "upload_time_iso_8601": "2024-08-07T12:35:37.496173Z",
            "url": "https://files.pythonhosted.org/packages/5c/b8/acebdf640d693a21219da8f2089f49bae624b4804ee81f624c4df0530a4f/rdkit-2024.3.5-cp38-cp38-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfcbc709b60f4815e18c00e1e8639204bdba04cb158e6278791d82f94f51a988",
                "md5": "8ed5b28e442d18b435d6b9434c9b8bda",
                "sha256": "53638d0d94f7c511273ff5765abc6a1fe60fe6c8633db13cad03bc527550a7a9"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8ed5b28e442d18b435d6b9434c9b8bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 27450954,
            "upload_time": "2024-08-07T12:35:41",
            "upload_time_iso_8601": "2024-08-07T12:35:41.804763Z",
            "url": "https://files.pythonhosted.org/packages/bf/cb/c709b60f4815e18c00e1e8639204bdba04cb158e6278791d82f94f51a988/rdkit-2024.3.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f1064ea11b0e4b5d3c56c19f248bc22688266a45ea271fd9113d940c4e05b7f",
                "md5": "536152580352efd73d135e1aca0642b3",
                "sha256": "2affa1b4cf601d27b157bbc44255c640baac9bc04cfdf5fa88f43c34c3f360d5"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "536152580352efd73d135e1aca0642b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32193494,
            "upload_time": "2024-08-07T12:35:46",
            "upload_time_iso_8601": "2024-08-07T12:35:46.041117Z",
            "url": "https://files.pythonhosted.org/packages/3f/10/64ea11b0e4b5d3c56c19f248bc22688266a45ea271fd9113d940c4e05b7f/rdkit-2024.3.5-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d8463b2e66f5c7cb97ce994769afbbef85a1ac364fedbcb7d4a3c0f15d318a5",
                "md5": "aab25b55f3743a68d41b9d748c523985",
                "sha256": "f662ed10e14c7874d0e011c1f8260a6cf4a5547100806f9f4540f8550a3f1d36"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aab25b55f3743a68d41b9d748c523985",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 33128248,
            "upload_time": "2024-08-07T12:35:50",
            "upload_time_iso_8601": "2024-08-07T12:35:50.481915Z",
            "url": "https://files.pythonhosted.org/packages/3d/84/63b2e66f5c7cb97ce994769afbbef85a1ac364fedbcb7d4a3c0f15d318a5/rdkit-2024.3.5-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94cec495b14092c8a26eadffbcf1f0874dfb6660b78fbf244925c2b3d23c57c",
                "md5": "c0362f8b00dc5dd3f5104acc2902d62b",
                "sha256": "73fa2fe3a9a2334edf8448a5a3093a6f949ee715de77d3baa685751e2cf9317b"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0362f8b00dc5dd3f5104acc2902d62b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 21764147,
            "upload_time": "2024-08-07T12:35:54",
            "upload_time_iso_8601": "2024-08-07T12:35:54.461730Z",
            "url": "https://files.pythonhosted.org/packages/c9/4c/ec495b14092c8a26eadffbcf1f0874dfb6660b78fbf244925c2b3d23c57c/rdkit-2024.3.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8970fea2765e78dd8bbe51e177e05e3625754eda2d3dd22e2ca48f29e94809b",
                "md5": "6f8b394091920ee53d8d96341e9676ad",
                "sha256": "cf2747e7c82d6c90a8a631fe063d24d77b31f535e0f8a17ac9dbfbe4ab456886"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp39-cp39-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f8b394091920ee53d8d96341e9676ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 29505582,
            "upload_time": "2024-08-07T12:35:59",
            "upload_time_iso_8601": "2024-08-07T12:35:59.403196Z",
            "url": "https://files.pythonhosted.org/packages/f8/97/0fea2765e78dd8bbe51e177e05e3625754eda2d3dd22e2ca48f29e94809b/rdkit-2024.3.5-cp39-cp39-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "add62347481f4e2bdfd24834b08df4dfc662bbc3f1d574cbf5dd32fe05da8c27",
                "md5": "dd6e85c206aae2019228d3170200172c",
                "sha256": "e69cec14cbb42c5ca912346b594d3f6a7aac572463949c55c7749da257e68123"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd6e85c206aae2019228d3170200172c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 27452897,
            "upload_time": "2024-08-07T12:36:03",
            "upload_time_iso_8601": "2024-08-07T12:36:03.755941Z",
            "url": "https://files.pythonhosted.org/packages/ad/d6/2347481f4e2bdfd24834b08df4dfc662bbc3f1d574cbf5dd32fe05da8c27/rdkit-2024.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90f009bd9c5e26b43d0ce30f07bbfd654fd2d129251a11de11c7fb08c48042b0",
                "md5": "1e6679eb08a3e3d9fa224b64628b5007",
                "sha256": "7c91c5ccbf8d51cd3dd894bf770ca99da5fe37714f6e2a66016e8af4f57d2b56"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e6679eb08a3e3d9fa224b64628b5007",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 32194401,
            "upload_time": "2024-08-07T12:36:08",
            "upload_time_iso_8601": "2024-08-07T12:36:08.396031Z",
            "url": "https://files.pythonhosted.org/packages/90/f0/09bd9c5e26b43d0ce30f07bbfd654fd2d129251a11de11c7fb08c48042b0/rdkit-2024.3.5-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "192d520ddc62d6fe2b56a87dd33edddd65a1bbc4274e3b9703ad448faa0d498e",
                "md5": "5d0e11afad09acfd594861d0f24e82dc",
                "sha256": "316bb5273bff5be76d4e5b0def998455e9b1a20898df44548b0e299f90786cb2"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d0e11afad09acfd594861d0f24e82dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33131686,
            "upload_time": "2024-08-07T12:36:12",
            "upload_time_iso_8601": "2024-08-07T12:36:12.731762Z",
            "url": "https://files.pythonhosted.org/packages/19/2d/520ddc62d6fe2b56a87dd33edddd65a1bbc4274e3b9703ad448faa0d498e/rdkit-2024.3.5-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "635510abd7a3b2e53c12b6fdc45f384b7a2311b79eb7b8ff1aa9a904e2f734c8",
                "md5": "623583ac0da5ebb2ffe8d447ae584561",
                "sha256": "90376467f4988ee44f3f47d1e558ffc27646254a99fe65d19a7d9a123e832ef2"
            },
            "downloads": -1,
            "filename": "rdkit-2024.3.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "623583ac0da5ebb2ffe8d447ae584561",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 21733025,
            "upload_time": "2024-08-07T12:36:16",
            "upload_time_iso_8601": "2024-08-07T12:36:16.774733Z",
            "url": "https://files.pythonhosted.org/packages/63/55/10abd7a3b2e53c12b6fdc45f384b7a2311b79eb7b8ff1aa9a904e2f734c8/rdkit-2024.3.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-07 12:34:25",
    "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.97262s