rdkit


Namerdkit JSON
Version 2023.9.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_time2024-04-27 10:58:37
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.17 (e.g., Ubuntu 16.04+, CentOS 6+, ...) | ✔️   | ✔️   | ✔️    | ✔️    | ✔️    | Github Actions |
| Linux   | aarch64 | 64  | glibc >= 2.17 (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.17 (e.g., Ubuntu 16.04+, CentOS 6+, ...) | \u2714\ufe0f   | \u2714\ufe0f   | \u2714\ufe0f    | \u2714\ufe0f    | \u2714\ufe0f    | Github Actions |\n| Linux   | aarch64 | 64  | glibc >= 2.17 (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": "2023.9.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": "",
            "digests": {
                "blake2b_256": "751515c991ceccdeed152e617a6261b2f31de83458bf3442c13c21114f25206e",
                "md5": "f1e72b793ea424390bb642667ebb903a",
                "sha256": "a2b47368c0eb12d8ecbccbb8afb752f149fdc182a9841a192cdb1dc4ea141741"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp310-cp310-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1e72b793ea424390bb642667ebb903a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 28683310,
            "upload_time": "2024-04-27T10:58:37",
            "upload_time_iso_8601": "2024-04-27T10:58:37.534146Z",
            "url": "https://files.pythonhosted.org/packages/75/15/15c991ceccdeed152e617a6261b2f31de83458bf3442c13c21114f25206e/rdkit-2023.9.6-cp310-cp310-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5007425a367c2624526ebf52a9cbfcdab8510b0024f4e3f29b2d76dc8c1744b",
                "md5": "9151fe889ab4d1eb5548b23beda439e2",
                "sha256": "780035c7bc024fa093fa05794b507316068e383f063c16b1a1239243a70ba010"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9151fe889ab4d1eb5548b23beda439e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 27605477,
            "upload_time": "2024-04-27T10:58:56",
            "upload_time_iso_8601": "2024-04-27T10:58:56.853566Z",
            "url": "https://files.pythonhosted.org/packages/f5/00/7425a367c2624526ebf52a9cbfcdab8510b0024f4e3f29b2d76dc8c1744b/rdkit-2023.9.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d556955fb94c25f4d975e7f730db48f4d7a89f9f8f4e78bb48d44175152e9aec",
                "md5": "aca38fa0d9bb23668f99fb163d121603",
                "sha256": "209c2b0049c019bd3b9f17e5d947cf94a221ce61222016528dad6deed4da2de9"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aca38fa0d9bb23668f99fb163d121603",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34051377,
            "upload_time": "2024-04-27T10:59:22",
            "upload_time_iso_8601": "2024-04-27T10:59:22.275358Z",
            "url": "https://files.pythonhosted.org/packages/d5/56/955fb94c25f4d975e7f730db48f4d7a89f9f8f4e78bb48d44175152e9aec/rdkit-2023.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b5af18e7af8f7f332af02176add4ff78cd6bc1cc96ea6a11c4f6d364f4796f2",
                "md5": "1495206e14d5d5b3a5e11de00232cea6",
                "sha256": "9b6dbed06f61efd5d293b8397d5719944dc8fa3f2b6704c43d9f50d851a0f2db"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1495206e14d5d5b3a5e11de00232cea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34855365,
            "upload_time": "2024-04-27T10:59:27",
            "upload_time_iso_8601": "2024-04-27T10:59:27.839716Z",
            "url": "https://files.pythonhosted.org/packages/3b/5a/f18e7af8f7f332af02176add4ff78cd6bc1cc96ea6a11c4f6d364f4796f2/rdkit-2023.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13eff75f9e0d5f866733ee1fa6dfb18d337301096fe5f0a1a21b9d1999ec3162",
                "md5": "00f34d9fd1eeb34d5f71ba644b0f0448",
                "sha256": "2a0aed7070c725e660f9bfbbd77678b3dda7b4a975342371559b98fb0179967e"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00f34d9fd1eeb34d5f71ba644b0f0448",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 20970134,
            "upload_time": "2024-04-27T10:59:32",
            "upload_time_iso_8601": "2024-04-27T10:59:32.290327Z",
            "url": "https://files.pythonhosted.org/packages/13/ef/f75f9e0d5f866733ee1fa6dfb18d337301096fe5f0a1a21b9d1999ec3162/rdkit-2023.9.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a8a73957722ece84d4a294a58261abf8f888980890ea27d39b9d2b5abd6395e",
                "md5": "e1d1e8527911391efcf98cf2d945c8b9",
                "sha256": "07b49918d5ab68ea12c91fccc0bc5733f191cc4937775c72e7dd46c136610d51"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp311-cp311-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1d1e8527911391efcf98cf2d945c8b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 28683225,
            "upload_time": "2024-04-27T10:59:36",
            "upload_time_iso_8601": "2024-04-27T10:59:36.661500Z",
            "url": "https://files.pythonhosted.org/packages/7a/8a/73957722ece84d4a294a58261abf8f888980890ea27d39b9d2b5abd6395e/rdkit-2023.9.6-cp311-cp311-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbd02fba772df6120156ee687a9cbc7a276a2c7ab2c777395324e1f16bb2a4fe",
                "md5": "d0e38a0f240ac8a606ab7a4d2ec89642",
                "sha256": "9c0eb1bbfe19a2441b24bfa8bde1dff405e8394691fd27f8e6310db8db42e96d"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0e38a0f240ac8a606ab7a4d2ec89642",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 27605626,
            "upload_time": "2024-04-27T10:59:41",
            "upload_time_iso_8601": "2024-04-27T10:59:41.832984Z",
            "url": "https://files.pythonhosted.org/packages/bb/d0/2fba772df6120156ee687a9cbc7a276a2c7ab2c777395324e1f16bb2a4fe/rdkit-2023.9.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1af08931bb78ca1dc606c517bbb40d48b36624a9cbd70f3d7623e504409dd5b2",
                "md5": "c6356f1807a221ba0575470f490803c3",
                "sha256": "07a9e45b88a08cfb857afa523c23ddcaf79a1b783e5ab40ecd28050addaaa3e4"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6356f1807a221ba0575470f490803c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34045886,
            "upload_time": "2024-04-27T10:59:46",
            "upload_time_iso_8601": "2024-04-27T10:59:46.414693Z",
            "url": "https://files.pythonhosted.org/packages/1a/f0/8931bb78ca1dc606c517bbb40d48b36624a9cbd70f3d7623e504409dd5b2/rdkit-2023.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf4175c81046af3e958e57cabd87d594878501dc7dde0ab0f5e4014c5f4a302",
                "md5": "b2bb32d867bf8124c35cf2ee5cd1210f",
                "sha256": "3d674a280fe84b9048c07cfa0aee546c5b21394ea38a689d37481790fc0d996b"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2bb32d867bf8124c35cf2ee5cd1210f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34851659,
            "upload_time": "2024-04-27T10:59:51",
            "upload_time_iso_8601": "2024-04-27T10:59:51.106033Z",
            "url": "https://files.pythonhosted.org/packages/ca/f4/175c81046af3e958e57cabd87d594878501dc7dde0ab0f5e4014c5f4a302/rdkit-2023.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28e7ae3e52603abe2a979b7b60bde78dc909e71c027cd896861e756cdf8357af",
                "md5": "e33dd468ed1695180ebfd2cba00aa83e",
                "sha256": "33db7a021ce3406386a6bc9fd5bd25f387e6bef63239cd00a534cad250dba9ab"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e33dd468ed1695180ebfd2cba00aa83e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 20970167,
            "upload_time": "2024-04-27T10:59:55",
            "upload_time_iso_8601": "2024-04-27T10:59:55.526213Z",
            "url": "https://files.pythonhosted.org/packages/28/e7/ae3e52603abe2a979b7b60bde78dc909e71c027cd896861e756cdf8357af/rdkit-2023.9.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f0a70e65fd68dedf505ef3b2dbf5084e899d6efdcddccd61bcc08d387f10da",
                "md5": "6812ec8028a4c6466d3022f84e15ae0b",
                "sha256": "8dc279618e32a33164b9ceef13f2094d4cf6bf4d55c63b70ae669181538c9f79"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6812ec8028a4c6466d3022f84e15ae0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 28768388,
            "upload_time": "2024-04-27T10:59:59",
            "upload_time_iso_8601": "2024-04-27T10:59:59.459246Z",
            "url": "https://files.pythonhosted.org/packages/c0/f0/a70e65fd68dedf505ef3b2dbf5084e899d6efdcddccd61bcc08d387f10da/rdkit-2023.9.6-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f057d30e0e8668b4193cce751bf578ec06f76ebd2c3ab2add84485fb535cfdd5",
                "md5": "85eeef1ec1665686da0fcaa14ad821e4",
                "sha256": "155f83476846a88b5c31efe6369ce16477b093a0c8f525d20107c1442cfd0d88"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "85eeef1ec1665686da0fcaa14ad821e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 27646813,
            "upload_time": "2024-04-27T11:00:04",
            "upload_time_iso_8601": "2024-04-27T11:00:04.384064Z",
            "url": "https://files.pythonhosted.org/packages/f0/57/d30e0e8668b4193cce751bf578ec06f76ebd2c3ab2add84485fb535cfdd5/rdkit-2023.9.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ec25f5f1bb4f9080c6ffb110bfa6454d898ac8a96b3a09cdf7a24f6194da16f",
                "md5": "be8931ec412ea7c7299e8682b854585d",
                "sha256": "bb5ec50177537382d9273bbce04f259b504931d7a6f33ebee0cfe3921b094951"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be8931ec412ea7c7299e8682b854585d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33887663,
            "upload_time": "2024-04-27T11:00:10",
            "upload_time_iso_8601": "2024-04-27T11:00:10.308648Z",
            "url": "https://files.pythonhosted.org/packages/8e/c2/5f5f1bb4f9080c6ffb110bfa6454d898ac8a96b3a09cdf7a24f6194da16f/rdkit-2023.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05f63a0063ef9e868cf5fbc6308edc80e2a04d3627088a0eb801d744acdcfaa7",
                "md5": "375841df1d1f246b98e57351a4395731",
                "sha256": "dc43b8af98866d851467cb9eea8e636c9c192c589476ed0e4930db204e9e8b98"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "375841df1d1f246b98e57351a4395731",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 34757246,
            "upload_time": "2024-04-27T11:00:16",
            "upload_time_iso_8601": "2024-04-27T11:00:16.423868Z",
            "url": "https://files.pythonhosted.org/packages/05/f6/3a0063ef9e868cf5fbc6308edc80e2a04d3627088a0eb801d744acdcfaa7/rdkit-2023.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "464685acf7041c6295b0c8a15c23e36604ea48dc78f3691bbc984a60c8ebf1c5",
                "md5": "f31ad676bedf65a2f05d5a8b24eca7c4",
                "sha256": "e6e09f47df092511d756b3b1a38a98e66e9a6944e0ed09b8d989381148fa4b7f"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f31ad676bedf65a2f05d5a8b24eca7c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 20988528,
            "upload_time": "2024-04-27T11:00:21",
            "upload_time_iso_8601": "2024-04-27T11:00:21.558978Z",
            "url": "https://files.pythonhosted.org/packages/46/46/85acf7041c6295b0c8a15c23e36604ea48dc78f3691bbc984a60c8ebf1c5/rdkit-2023.9.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94f66266ccbcab06735c0b19ab51738ca1e7c8358c40897ce77bbf2a096f9e3b",
                "md5": "c58d747867fffcb8a78cbe67a63c5034",
                "sha256": "797a1cba4ccfe518ead7271080fc40aeb1798949898825ae3a10869c22acc1a1"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp38-cp38-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c58d747867fffcb8a78cbe67a63c5034",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 28683623,
            "upload_time": "2024-04-27T11:00:25",
            "upload_time_iso_8601": "2024-04-27T11:00:25.538090Z",
            "url": "https://files.pythonhosted.org/packages/94/f6/6266ccbcab06735c0b19ab51738ca1e7c8358c40897ce77bbf2a096f9e3b/rdkit-2023.9.6-cp38-cp38-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8b493d2089e53d109872197a540f341e02bd50477a09364041cce452f287b2a",
                "md5": "682f96d569a8cfd4bb2133e44f6003d1",
                "sha256": "022b46d1f6f2b7fb4a30fd97bf1fd5d9f1bceabfd7ae297e0988db7b9fe5dbdb"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "682f96d569a8cfd4bb2133e44f6003d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 27605137,
            "upload_time": "2024-04-27T11:00:30",
            "upload_time_iso_8601": "2024-04-27T11:00:30.532660Z",
            "url": "https://files.pythonhosted.org/packages/a8/b4/93d2089e53d109872197a540f341e02bd50477a09364041cce452f287b2a/rdkit-2023.9.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa198e50803c5586d20dfa2cebb7b72194dfa8632e776eb7e6d300064d322b34",
                "md5": "2a20627bc2544152446e26247c0a56a6",
                "sha256": "59ee17711909f62ed888febf68fba9a67920bca1f2040a4ccc0676f2f59467dd"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a20627bc2544152446e26247c0a56a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34051228,
            "upload_time": "2024-04-27T11:00:35",
            "upload_time_iso_8601": "2024-04-27T11:00:35.827853Z",
            "url": "https://files.pythonhosted.org/packages/aa/19/8e50803c5586d20dfa2cebb7b72194dfa8632e776eb7e6d300064d322b34/rdkit-2023.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e531b2e98b77a9449efff5fca5b6d8192583252f4c28d2d256789ea1eea54c8",
                "md5": "247d537bcac35069b9c685c906b64a1d",
                "sha256": "413e88dcab175b65fa122df38b2a9c8de162d87e68bc82d8c9f09c3f8cb6eb9e"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "247d537bcac35069b9c685c906b64a1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34855177,
            "upload_time": "2024-04-27T11:00:41",
            "upload_time_iso_8601": "2024-04-27T11:00:41.931124Z",
            "url": "https://files.pythonhosted.org/packages/8e/53/1b2e98b77a9449efff5fca5b6d8192583252f4c28d2d256789ea1eea54c8/rdkit-2023.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56db59c4ba90e1db6a6356341fc389d73c423f884282424fcca6f1771f0f4b99",
                "md5": "4c1058d3b3106e33d7fd7aabefe77017",
                "sha256": "09407635736b8b84bbf4791a8024b8fe36bd64dcefe230dd868371a27c2b65ee"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c1058d3b3106e33d7fd7aabefe77017",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 21004903,
            "upload_time": "2024-04-27T11:00:47",
            "upload_time_iso_8601": "2024-04-27T11:00:47.027516Z",
            "url": "https://files.pythonhosted.org/packages/56/db/59c4ba90e1db6a6356341fc389d73c423f884282424fcca6f1771f0f4b99/rdkit-2023.9.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "443814b311e2ff52e77466eecff0ba422e80812b239d69f60c015db3a8c940b1",
                "md5": "c70253c47af6903095214fce6c7debae",
                "sha256": "9cc210e3cdad79ce13e571a532d0cdf07b11ccfd231f160eb54065f5a01dfb46"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp39-cp39-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c70253c47af6903095214fce6c7debae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 28683583,
            "upload_time": "2024-04-27T11:00:51",
            "upload_time_iso_8601": "2024-04-27T11:00:51.424938Z",
            "url": "https://files.pythonhosted.org/packages/44/38/14b311e2ff52e77466eecff0ba422e80812b239d69f60c015db3a8c940b1/rdkit-2023.9.6-cp39-cp39-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e7f00b5d8332d9c93379a5b9d58618dd1ebb54c566c5e46f7e31219def8c9ec",
                "md5": "f5ac08245a6747d4daadeb57456b7b32",
                "sha256": "8876e33e393f500f9593f560b1df8cd67c7108615767eb5565678a17b8bdfe33"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f5ac08245a6747d4daadeb57456b7b32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 27605090,
            "upload_time": "2024-04-27T11:00:56",
            "upload_time_iso_8601": "2024-04-27T11:00:56.877069Z",
            "url": "https://files.pythonhosted.org/packages/1e/7f/00b5d8332d9c93379a5b9d58618dd1ebb54c566c5e46f7e31219def8c9ec/rdkit-2023.9.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a2b226808ed74f10f79793341e70ff8a225c60a775c6d30e8555dbb4e91746f",
                "md5": "d20e6ddf69f99c43986bb87be77ebd1c",
                "sha256": "5091976a6c631fa8d563bbf48480b01917b0ff94a1ffce7d586131cf848d41d8"
            },
            "downloads": -1,
            "filename": "rdkit-2023.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d20e6ddf69f99c43986bb87be77ebd1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34051380,
            "upload_time": "2024-04-27T11:01:01",
            "upload_time_iso_8601": "2024-04-27T11:01:01.972024Z",
            "url": "https://files.pythonhosted.org/packages/6a/2b/226808ed74f10f79793341e70ff8a225c60a775c6d30e8555dbb4e91746f/rdkit-2023.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 10:58:37",
    "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.23795s