rchitect


Namerchitect JSON
Version 0.4.7 PyPI version JSON
download
home_pagehttps://github.com/randy3k/rchitect
SummaryMapping R API to Python
upload_time2024-08-15 05:31:23
maintainerNone
docs_urlNone
authorRandy Lai
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Interoperate R with Python

[![Main](https://github.com/randy3k/rchitect/actions/workflows/main.yml/badge.svg)](https://github.com/randy3k/rchitect/actions/workflows/main.yml)
[![codecov](https://codecov.io/gh/randy3k/rchitect/branch/master/graph/badge.svg)](https://codecov.io/gh/randy3k/rchitect)
[![pypi](https://img.shields.io/pypi/v/rchitect.svg)](https://pypi.org/project/rchitect/)
[![Conda version](https://img.shields.io/conda/vn/conda-forge/rchitect.svg)](https://anaconda.org/conda-forge/rchitect)


## Installation

```sh
# install released version
pip install -U rchitect

# or the development version
pip install -U git+https://github.com/randy3k/rchitect
```

## Why reinvent the wheel?

You may be curious why I reinvented the wheel when there is [`rpy2`](https://github.com/rpy2/rpy2)?

The main reason is to drive [`radian`](https://github.com/randy3k/radian).
`rpy2` was not suitable because it is missing some key features for running
the R REPL. Speaking of compatibility, `rchitect` has been thoroughly tested on
multiple platforms such as Windows, macOS and Linux and we also provide binary
wheels for python 3.6+.

## Getting started

```py
from rchitect import *
a = reval("1:5")     # evaluate an R expression in the global environment
b = rcopy(a)         # convert any RObject returned by `reval` to its python type
c = robject(b)       # convert any python object to its R type
d = rcall("sum", c)  # call an R function. Python objects are converted to RObjects implicitly.
```

## FAQ

#### How to switch to a different R or specify the version of R.

There are a few options.

- One could expose the path to the R binary in the `PATH` variable
- The environment variable `R_BINARY` could also be used to specify the path to R.
- The environment variable `R_HOME` could also be used to specify R home directory. Note that it is should be set as the result of `R.home()`, not the directory where `R` is located. For example, in Unix
```sh
$ env R_HOME=/usr/local/lib/R radian
```

#### Cannot find shared library

Please also make sure that R was installed with the R shared library `libR.so` or `libR.dylib` or `libR.dll`. On Linux, the flag `--enable-R-shlib` may be needed to install R from the source.


## Wiki

[reticulate](https://github.com/randy3k/rchitect/wiki/Conversions-between-reticulate-and-rchitect-objects-are-seamless) conversions

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/randy3k/rchitect",
    "name": "rchitect",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Randy Lai",
    "author_email": "randy.cs.lai@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/02/b5/4822ff52d2ce8f5b47302252bbce73f62f6864481835a17e7286ab2e6efc/rchitect-0.4.7.tar.gz",
    "platform": null,
    "description": "# Interoperate R with Python\n\n[![Main](https://github.com/randy3k/rchitect/actions/workflows/main.yml/badge.svg)](https://github.com/randy3k/rchitect/actions/workflows/main.yml)\n[![codecov](https://codecov.io/gh/randy3k/rchitect/branch/master/graph/badge.svg)](https://codecov.io/gh/randy3k/rchitect)\n[![pypi](https://img.shields.io/pypi/v/rchitect.svg)](https://pypi.org/project/rchitect/)\n[![Conda version](https://img.shields.io/conda/vn/conda-forge/rchitect.svg)](https://anaconda.org/conda-forge/rchitect)\n\n\n## Installation\n\n```sh\n# install released version\npip install -U rchitect\n\n# or the development version\npip install -U git+https://github.com/randy3k/rchitect\n```\n\n## Why reinvent the wheel?\n\nYou may be curious why I reinvented the wheel when there is [`rpy2`](https://github.com/rpy2/rpy2)?\n\nThe main reason is to drive [`radian`](https://github.com/randy3k/radian).\n`rpy2` was not suitable because it is missing some key features for running\nthe R REPL. Speaking of compatibility, `rchitect` has been thoroughly tested on\nmultiple platforms such as Windows, macOS and Linux and we also provide binary\nwheels for python 3.6+.\n\n## Getting started\n\n```py\nfrom rchitect import *\na = reval(\"1:5\")     # evaluate an R expression in the global environment\nb = rcopy(a)         # convert any RObject returned by `reval` to its python type\nc = robject(b)       # convert any python object to its R type\nd = rcall(\"sum\", c)  # call an R function. Python objects are converted to RObjects implicitly.\n```\n\n## FAQ\n\n#### How to switch to a different R or specify the version of R.\n\nThere are a few options.\n\n- One could expose the path to the R binary in the `PATH` variable\n- The environment variable `R_BINARY` could also be used to specify the path to R.\n- The environment variable `R_HOME` could also be used to specify R home directory. Note that it is should be set as the result of `R.home()`, not the directory where `R` is located. For example, in Unix\n```sh\n$ env R_HOME=/usr/local/lib/R radian\n```\n\n#### Cannot find shared library\n\nPlease also make sure that R was installed with the R shared library `libR.so` or `libR.dylib` or `libR.dll`. On Linux, the flag `--enable-R-shlib` may be needed to install R from the source.\n\n\n## Wiki\n\n[reticulate](https://github.com/randy3k/rchitect/wiki/Conversions-between-reticulate-and-rchitect-objects-are-seamless) conversions\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Mapping R API to Python",
    "version": "0.4.7",
    "project_urls": {
        "Homepage": "https://github.com/randy3k/rchitect"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9c7500e2f8636620676e77f7a7fc655fe9b08490b4981ee084121574f5916aa",
                "md5": "11fecd30fbed398e550601f2b6398843",
                "sha256": "413d2f10ed0561fe57352f5b98c41c785cdcbec59fec28045d4285bb587b75a0"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11fecd30fbed398e550601f2b6398843",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 77549,
            "upload_time": "2024-08-15T05:31:27",
            "upload_time_iso_8601": "2024-08-15T05:31:27.673644Z",
            "url": "https://files.pythonhosted.org/packages/e9/c7/500e2f8636620676e77f7a7fc655fe9b08490b4981ee084121574f5916aa/rchitect-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed31ef80a3f230048cc40286f3b0ab47ed080759d15cea4d69db64d94afbba65",
                "md5": "7766c9c6b23dea5eeee2101e96154248",
                "sha256": "13cdce88b1b7276a81c332d9f226220d8432740db1879e96fbb8f0b6b52411ad"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7766c9c6b23dea5eeee2101e96154248",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 77691,
            "upload_time": "2024-08-15T05:31:29",
            "upload_time_iso_8601": "2024-08-15T05:31:29.133963Z",
            "url": "https://files.pythonhosted.org/packages/ed/31/ef80a3f230048cc40286f3b0ab47ed080759d15cea4d69db64d94afbba65/rchitect-0.4.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4a8a141dcef81594e4ad074d5b0a11894daa454ecb7f402e4f959ab4b94bb78",
                "md5": "eeef82488328e73760336c575bd60ac0",
                "sha256": "15f6d31afe8b119f33836b4b7f1c1de70da1577051c71c1ce9da4d91bfbb5940"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eeef82488328e73760336c575bd60ac0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 150620,
            "upload_time": "2024-08-15T05:31:30",
            "upload_time_iso_8601": "2024-08-15T05:31:30.478808Z",
            "url": "https://files.pythonhosted.org/packages/a4/a8/a141dcef81594e4ad074d5b0a11894daa454ecb7f402e4f959ab4b94bb78/rchitect-0.4.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5171c955e75fdf7b88af127fbb80fc40f666ac417eba8901e15f99b3aa0a9a1",
                "md5": "50b46529a75c990a0cf55bac314b44c5",
                "sha256": "b9b4ebc46705448f8af962ba5898f4accc101d2dca790a08b7d5a8f55da7b947"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50b46529a75c990a0cf55bac314b44c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 161597,
            "upload_time": "2024-08-15T05:31:31",
            "upload_time_iso_8601": "2024-08-15T05:31:31.606773Z",
            "url": "https://files.pythonhosted.org/packages/f5/17/1c955e75fdf7b88af127fbb80fc40f666ac417eba8901e15f99b3aa0a9a1/rchitect-0.4.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85b357863d08244eee0072af6e53e95a1ebdab2dd4967f4d4e6dceec779dd079",
                "md5": "639820f6cd3e4c3646de02f639cb7a61",
                "sha256": "50721c357a7a16548fcb5dee6bedf2671d1578a46bb3bb9d2d9b54040b06a954"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "639820f6cd3e4c3646de02f639cb7a61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 167349,
            "upload_time": "2024-08-15T05:31:33",
            "upload_time_iso_8601": "2024-08-15T05:31:33.019991Z",
            "url": "https://files.pythonhosted.org/packages/85/b3/57863d08244eee0072af6e53e95a1ebdab2dd4967f4d4e6dceec779dd079/rchitect-0.4.7-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37cf8edde89b0e5d7366e8fd8f833a7d6fddf5f60f94f4a5d8793cdafb45cf83",
                "md5": "ca4db19bace4f46ec70c919bf7426bf9",
                "sha256": "8a12bd9eac5f1619103253e2e034e38c83a48c27fdd7642d23d4efc80a0a1830"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca4db19bace4f46ec70c919bf7426bf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 179941,
            "upload_time": "2024-08-15T05:31:34",
            "upload_time_iso_8601": "2024-08-15T05:31:34.013303Z",
            "url": "https://files.pythonhosted.org/packages/37/cf/8edde89b0e5d7366e8fd8f833a7d6fddf5f60f94f4a5d8793cdafb45cf83/rchitect-0.4.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78ca0bc9cd654a4ffda510fe7242c421322eac376fe0820635b650fe93267f79",
                "md5": "73764b638c01576d6f856b5ad4099283",
                "sha256": "367f4dfd16e398fd019ecaec607f1b7a3237164e8bb7419115be52bf4b2fceb6"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "73764b638c01576d6f856b5ad4099283",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 63780,
            "upload_time": "2024-08-15T05:31:35",
            "upload_time_iso_8601": "2024-08-15T05:31:35.373415Z",
            "url": "https://files.pythonhosted.org/packages/78/ca/0bc9cd654a4ffda510fe7242c421322eac376fe0820635b650fe93267f79/rchitect-0.4.7-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79c31fda945a3ddd9297139164091dc6ac751b20e176a38110530da2de6b4209",
                "md5": "6aad17b3de72a1115cb710195d9f910a",
                "sha256": "1d573453fdc1962a09c52d5e04d80fe747967897ab80714b5a7e89bdd630cf3f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6aad17b3de72a1115cb710195d9f910a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 63396,
            "upload_time": "2024-08-15T05:31:36",
            "upload_time_iso_8601": "2024-08-15T05:31:36.660618Z",
            "url": "https://files.pythonhosted.org/packages/79/c3/1fda945a3ddd9297139164091dc6ac751b20e176a38110530da2de6b4209/rchitect-0.4.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cf87053a8fdeaab4be5e699f7a0c1587a24053708ee56b8b99acaa4a09597f0",
                "md5": "95e36312d0842badff6d8c30d27e472c",
                "sha256": "108bf98bff6f608610deec1c3de4a2f1ccf614cfe3c1945f9eb904dece41787f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95e36312d0842badff6d8c30d27e472c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 77550,
            "upload_time": "2024-08-15T05:31:37",
            "upload_time_iso_8601": "2024-08-15T05:31:37.961075Z",
            "url": "https://files.pythonhosted.org/packages/3c/f8/7053a8fdeaab4be5e699f7a0c1587a24053708ee56b8b99acaa4a09597f0/rchitect-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77f3499d80211e2bc142b9abac1406f793040f82bf09c7742466b1a44a38dea5",
                "md5": "a28189e4785e1cc2c0c2d8236099e761",
                "sha256": "e1e08d3f95aa01043f50dcb51953de2c53f36ee5f42042150cacbf58c669fb48"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a28189e4785e1cc2c0c2d8236099e761",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 77691,
            "upload_time": "2024-08-15T05:31:39",
            "upload_time_iso_8601": "2024-08-15T05:31:39.456687Z",
            "url": "https://files.pythonhosted.org/packages/77/f3/499d80211e2bc142b9abac1406f793040f82bf09c7742466b1a44a38dea5/rchitect-0.4.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ca3a3ab2aec778609415056cc01802651a6c1ffe7ef1e60c3c18aa21154e846",
                "md5": "4828192b298a14c062742309a8a9c5f1",
                "sha256": "be755d110d59b9a3e86a414d9bb1c2a0a2b9882ee7480971e32894892c3185a5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4828192b298a14c062742309a8a9c5f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 150622,
            "upload_time": "2024-08-15T05:31:40",
            "upload_time_iso_8601": "2024-08-15T05:31:40.789887Z",
            "url": "https://files.pythonhosted.org/packages/4c/a3/a3ab2aec778609415056cc01802651a6c1ffe7ef1e60c3c18aa21154e846/rchitect-0.4.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b95b233735ac49ade99aa4051bdb3f156b6a14ad60b7b62295b38408cd61e9b2",
                "md5": "643b761090f70c0cd7624189c33762cb",
                "sha256": "fd1d98c41dd7897cf8694823ed21061a8eaf5732cc979072e7dc43190eb5dfb2"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "643b761090f70c0cd7624189c33762cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 161575,
            "upload_time": "2024-08-15T05:31:42",
            "upload_time_iso_8601": "2024-08-15T05:31:42.094714Z",
            "url": "https://files.pythonhosted.org/packages/b9/5b/233735ac49ade99aa4051bdb3f156b6a14ad60b7b62295b38408cd61e9b2/rchitect-0.4.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2777e8dd34179df2e5f97db220eac22e1e2b18a542419e3397147ddd51ea1d2b",
                "md5": "70cb7082c171411193c97857fe028f81",
                "sha256": "f4b1aa80fe1133c1aab4daf7c6b9635fd6e95cd108a5b510a6303c2a56c46c4a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "70cb7082c171411193c97857fe028f81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 168164,
            "upload_time": "2024-08-15T05:31:43",
            "upload_time_iso_8601": "2024-08-15T05:31:43.569892Z",
            "url": "https://files.pythonhosted.org/packages/27/77/e8dd34179df2e5f97db220eac22e1e2b18a542419e3397147ddd51ea1d2b/rchitect-0.4.7-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "288629f87a61fee3341e1b06abf52ee9b56d717b43b78ed9d00b7e9d9acf05a4",
                "md5": "260a8f76ac03ff6a5026596521b21dc7",
                "sha256": "8e03fabdde3ce1c7c3408409201c1c8e8ca0bc6106c3b48b7899090f6cf8b853"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "260a8f76ac03ff6a5026596521b21dc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 180814,
            "upload_time": "2024-08-15T05:31:45",
            "upload_time_iso_8601": "2024-08-15T05:31:45.030471Z",
            "url": "https://files.pythonhosted.org/packages/28/86/29f87a61fee3341e1b06abf52ee9b56d717b43b78ed9d00b7e9d9acf05a4/rchitect-0.4.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f94d1a56869804ec874f63cf81e3814b863f0850bab5da91684054937e40b0e",
                "md5": "cdb117b35f4f5c62d169d1b2b05def02",
                "sha256": "5e22433010142bd40b97b960eb59818f8b1796b8a150518961c3558483c9bd0f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cdb117b35f4f5c62d169d1b2b05def02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63784,
            "upload_time": "2024-08-15T05:31:46",
            "upload_time_iso_8601": "2024-08-15T05:31:46.202344Z",
            "url": "https://files.pythonhosted.org/packages/8f/94/d1a56869804ec874f63cf81e3814b863f0850bab5da91684054937e40b0e/rchitect-0.4.7-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "001b4245aa3e8ef64922e4a76079be2cf01ef1cf01341f76d28677a1f079047b",
                "md5": "563a84c1b4d3d80e7903cdfb5aedadfc",
                "sha256": "6c84f5f85fe478f3d0ab7943eabcd4c49a1d60aecb5304e2b064f9a9d4d2260a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "563a84c1b4d3d80e7903cdfb5aedadfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63396,
            "upload_time": "2024-08-15T05:31:47",
            "upload_time_iso_8601": "2024-08-15T05:31:47.065041Z",
            "url": "https://files.pythonhosted.org/packages/00/1b/4245aa3e8ef64922e4a76079be2cf01ef1cf01341f76d28677a1f079047b/rchitect-0.4.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1557e4929c5efd9b29d27c75bd158c24ad6dfad196d929fc693d1e61e73f6f17",
                "md5": "42cd9f598bfee4dec6c849665b8d23ef",
                "sha256": "dc84363ab4887014cffc86cbda886a2ffb617af1e6b0d0febfda88e2bb553f7a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42cd9f598bfee4dec6c849665b8d23ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 77645,
            "upload_time": "2024-08-15T05:31:48",
            "upload_time_iso_8601": "2024-08-15T05:31:48.143753Z",
            "url": "https://files.pythonhosted.org/packages/15/57/e4929c5efd9b29d27c75bd158c24ad6dfad196d929fc693d1e61e73f6f17/rchitect-0.4.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9aa188a4fb79e1b9c50579dbef86ffea27e61c3c68ac3f9a0b335100ef774d9",
                "md5": "b2db2f9a52d7d90b32be43dbd22ec9d2",
                "sha256": "c5b379e5e687b8a5c5a77ef258f6f043bc3d9617875d8793543fb009d8578e0b"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b2db2f9a52d7d90b32be43dbd22ec9d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 77748,
            "upload_time": "2024-08-15T05:31:50",
            "upload_time_iso_8601": "2024-08-15T05:31:50.654954Z",
            "url": "https://files.pythonhosted.org/packages/b9/aa/188a4fb79e1b9c50579dbef86ffea27e61c3c68ac3f9a0b335100ef774d9/rchitect-0.4.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31a38b7f695f555cc6196c63ee21f7e0ba171762d17686088c04556f6a013cc1",
                "md5": "5f82000ab116aa01c8628d3bbb4bbc1c",
                "sha256": "b31549918a3999373e761a06b62265db9e80ca2ba10da108ab6c82c7fab9b856"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f82000ab116aa01c8628d3bbb4bbc1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 151031,
            "upload_time": "2024-08-15T05:31:52",
            "upload_time_iso_8601": "2024-08-15T05:31:52.280057Z",
            "url": "https://files.pythonhosted.org/packages/31/a3/8b7f695f555cc6196c63ee21f7e0ba171762d17686088c04556f6a013cc1/rchitect-0.4.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a102fee636c009b7da0267b6b5e4ce06f7f3d9f0a97d6a92a2a643e017289590",
                "md5": "673a4c2f9429b9a016351ce4396618e8",
                "sha256": "4ebfc7687e6045a846f7cd020367eb0eaa6858d9efa224527fe91b28222a94b0"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "673a4c2f9429b9a016351ce4396618e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 162167,
            "upload_time": "2024-08-15T05:31:53",
            "upload_time_iso_8601": "2024-08-15T05:31:53.399166Z",
            "url": "https://files.pythonhosted.org/packages/a1/02/fee636c009b7da0267b6b5e4ce06f7f3d9f0a97d6a92a2a643e017289590/rchitect-0.4.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73fad0bfe7130a7c0c553b19a9828b6741d92f9ccdbc818ac384669d0c6ef9bc",
                "md5": "2d468c28469fde8ea60016381e448578",
                "sha256": "9023ce9164abe00ee954fc5321a724be04e350f045250f4ac29344080e14de19"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2d468c28469fde8ea60016381e448578",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 168388,
            "upload_time": "2024-08-15T05:31:54",
            "upload_time_iso_8601": "2024-08-15T05:31:54.543567Z",
            "url": "https://files.pythonhosted.org/packages/73/fa/d0bfe7130a7c0c553b19a9828b6741d92f9ccdbc818ac384669d0c6ef9bc/rchitect-0.4.7-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14f84e490bda481758d1a6ab1af97d07933ca8fa71830c67b03e5d67e00a64db",
                "md5": "5079dbfb532e34cfe7763f15ae461dd5",
                "sha256": "f36980c39260d569665ff3353d311c758d89449f6a105cbebc4b53a726d2fb31"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5079dbfb532e34cfe7763f15ae461dd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 181049,
            "upload_time": "2024-08-15T05:31:55",
            "upload_time_iso_8601": "2024-08-15T05:31:55.543126Z",
            "url": "https://files.pythonhosted.org/packages/14/f8/4e490bda481758d1a6ab1af97d07933ca8fa71830c67b03e5d67e00a64db/rchitect-0.4.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7813103155d573cb37b4aad3346b2cda5b8366d964298eb831c13c5e1be94d9",
                "md5": "21be07c5dc454a6c77521f0794ad6cbb",
                "sha256": "e8b33c3312c636ff28eb1fa3036e23d6910a11908a3c0e6a13320e6b606d9c71"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "21be07c5dc454a6c77521f0794ad6cbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 63852,
            "upload_time": "2024-08-15T05:31:56",
            "upload_time_iso_8601": "2024-08-15T05:31:56.939784Z",
            "url": "https://files.pythonhosted.org/packages/b7/81/3103155d573cb37b4aad3346b2cda5b8366d964298eb831c13c5e1be94d9/rchitect-0.4.7-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11e131488ad464ef0eb53e90ef602564fd06622efdbb7f6c2e1d27e2006c55ca",
                "md5": "3347c913d1c080c00d0ef358f4c704b7",
                "sha256": "8f7e60faa6a0d9b93c4c3b0189ff40b77ff0652197adaf0581e93843eb367364"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3347c913d1c080c00d0ef358f4c704b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 63447,
            "upload_time": "2024-08-15T05:31:58",
            "upload_time_iso_8601": "2024-08-15T05:31:58.057624Z",
            "url": "https://files.pythonhosted.org/packages/11/e1/31488ad464ef0eb53e90ef602564fd06622efdbb7f6c2e1d27e2006c55ca/rchitect-0.4.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9aa08953424f85ca6d72e99352fcd95e6778b2488e3da31f6510513e3af3c6e",
                "md5": "e5edae36243df90dedf85adda9011f75",
                "sha256": "ba2ecf4c4bca560fef6fc988d92142ccbc876ab90b5d428ecb80e1322bb88df3"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5edae36243df90dedf85adda9011f75",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 77559,
            "upload_time": "2024-08-15T05:31:59",
            "upload_time_iso_8601": "2024-08-15T05:31:59.095402Z",
            "url": "https://files.pythonhosted.org/packages/a9/aa/08953424f85ca6d72e99352fcd95e6778b2488e3da31f6510513e3af3c6e/rchitect-0.4.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03e675b3920b68a3abc8c902b8c1226a93ec55f256bbcf1296face4dc94dc8d6",
                "md5": "fe48e4c34128474a94cb3aa0822d948a",
                "sha256": "0a3b8ad1bbc02bdc95ba78b6615ec82bde17ae295e09fb2ce8617f0815840355"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fe48e4c34128474a94cb3aa0822d948a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 150310,
            "upload_time": "2024-08-15T05:31:59",
            "upload_time_iso_8601": "2024-08-15T05:31:59.954707Z",
            "url": "https://files.pythonhosted.org/packages/03/e6/75b3920b68a3abc8c902b8c1226a93ec55f256bbcf1296face4dc94dc8d6/rchitect-0.4.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f6d7c85722990b8acfe4c4fa6065769f2dbcbfea959622f5ff2df0c52263d9c",
                "md5": "e0b946b362c1d9a9d2de66d5bdc40ee7",
                "sha256": "66af6629bdaea87c201e1a8280062f2b492f418b70f7930699148815bf507f37"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0b946b362c1d9a9d2de66d5bdc40ee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 161300,
            "upload_time": "2024-08-15T05:32:01",
            "upload_time_iso_8601": "2024-08-15T05:32:01.449277Z",
            "url": "https://files.pythonhosted.org/packages/8f/6d/7c85722990b8acfe4c4fa6065769f2dbcbfea959622f5ff2df0c52263d9c/rchitect-0.4.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a259804a2996dbe7e3db24e039e6fdaf2ad314a1de809fe796480a96e7282c7",
                "md5": "ed2b53a6add146fcfd46f6c66cefa6cf",
                "sha256": "287ee345a844ff09785afe6c90175bcb2a61a387a974338d3e833213230292f0"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ed2b53a6add146fcfd46f6c66cefa6cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 167976,
            "upload_time": "2024-08-15T05:32:02",
            "upload_time_iso_8601": "2024-08-15T05:32:02.908042Z",
            "url": "https://files.pythonhosted.org/packages/9a/25/9804a2996dbe7e3db24e039e6fdaf2ad314a1de809fe796480a96e7282c7/rchitect-0.4.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b06b15f945b659c53e22ee9f5ef58c82b95c50601c06146bcbd37fdc9d9db5dd",
                "md5": "2b7b2b822e8caa9ba65c1040a033b0e5",
                "sha256": "3710aaf7cc2c073544e27a7598aaa0b7e787f0297dea0971e13600b0391412e6"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b7b2b822e8caa9ba65c1040a033b0e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 180609,
            "upload_time": "2024-08-15T05:32:04",
            "upload_time_iso_8601": "2024-08-15T05:32:04.384014Z",
            "url": "https://files.pythonhosted.org/packages/b0/6b/15f945b659c53e22ee9f5ef58c82b95c50601c06146bcbd37fdc9d9db5dd/rchitect-0.4.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "640cdef0344bcb71002ac1e231abb1857c24cf94e84345a17e18293c6f6cecb5",
                "md5": "2dcf7e3877814cabf3532a6507c75385",
                "sha256": "d1b9658fd5ade9731ecd46e89ec660b54ffa8832a2d0e617398af1854a74fcca"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "2dcf7e3877814cabf3532a6507c75385",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 63781,
            "upload_time": "2024-08-15T05:32:05",
            "upload_time_iso_8601": "2024-08-15T05:32:05.822934Z",
            "url": "https://files.pythonhosted.org/packages/64/0c/def0344bcb71002ac1e231abb1857c24cf94e84345a17e18293c6f6cecb5/rchitect-0.4.7-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c7bae99ff1a4d0d0535982e6cd23a7211722f69b920cca2d70336f4430804dd",
                "md5": "d34521b41035c0ea9302c26ab9c0be8f",
                "sha256": "9ed29293b1a80e63e0c8c0b17d426c71d7a7247e8e0c2f5998dea85c4fafebea"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d34521b41035c0ea9302c26ab9c0be8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 63392,
            "upload_time": "2024-08-15T05:32:06",
            "upload_time_iso_8601": "2024-08-15T05:32:06.955167Z",
            "url": "https://files.pythonhosted.org/packages/9c/7b/ae99ff1a4d0d0535982e6cd23a7211722f69b920cca2d70336f4430804dd/rchitect-0.4.7-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5317de347610479ec41184ac1ba50d3fcd692689fd0f491d295acef2f8f1f9ac",
                "md5": "63a80b05fea33f16ab83e3b66ae943a7",
                "sha256": "77262251f7201b1a4969e7c6c7a4c5cad8c65327108df7beb07f908fd1299277"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63a80b05fea33f16ab83e3b66ae943a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 77555,
            "upload_time": "2024-08-15T05:32:08",
            "upload_time_iso_8601": "2024-08-15T05:32:08.268693Z",
            "url": "https://files.pythonhosted.org/packages/53/17/de347610479ec41184ac1ba50d3fcd692689fd0f491d295acef2f8f1f9ac/rchitect-0.4.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f84b59e2eb4291e459816d8d2f67db3d3d06b8ac967504535dd2193050229568",
                "md5": "6c2951adb24693e7ff00e0d443b4226e",
                "sha256": "e1480ab6b04a12f5911222cc47d42353888d57a29e3164e68e81883eccf0dffd"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6c2951adb24693e7ff00e0d443b4226e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 77696,
            "upload_time": "2024-08-15T05:32:09",
            "upload_time_iso_8601": "2024-08-15T05:32:09.139247Z",
            "url": "https://files.pythonhosted.org/packages/f8/4b/59e2eb4291e459816d8d2f67db3d3d06b8ac967504535dd2193050229568/rchitect-0.4.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b0a01f8f021e10e3689b85ae79b345e9fe177911781e92cf7195f71e998f0e8",
                "md5": "c60fe4648a7aa571afa8f4ac165320c4",
                "sha256": "47105c916a822fe7dc1261329dde7a41344a6ff30522c3977e8671f6716ae02b"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c60fe4648a7aa571afa8f4ac165320c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 150840,
            "upload_time": "2024-08-15T05:32:10",
            "upload_time_iso_8601": "2024-08-15T05:32:10.020578Z",
            "url": "https://files.pythonhosted.org/packages/3b/0a/01f8f021e10e3689b85ae79b345e9fe177911781e92cf7195f71e998f0e8/rchitect-0.4.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b32332fc4b03a279685e4a63b0542ad1901ffdf2af1c341e25c9d41cceb0d5f",
                "md5": "2de2c22f31d2d136ef0a0b83b77fc0b6",
                "sha256": "2ffe4c15234d36ce18b682a39416df1f7545223d3e4bead06342f6d157aab915"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2de2c22f31d2d136ef0a0b83b77fc0b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 161777,
            "upload_time": "2024-08-15T05:32:11",
            "upload_time_iso_8601": "2024-08-15T05:32:11.254245Z",
            "url": "https://files.pythonhosted.org/packages/6b/32/332fc4b03a279685e4a63b0542ad1901ffdf2af1c341e25c9d41cceb0d5f/rchitect-0.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d61dbcbea2779170b131ef76f2a5e6755d42ad02bf87e1614fd06928c00c9503",
                "md5": "9f76b08730c753d4bce85519be7becae",
                "sha256": "a37be7368462fd730a81d293dcd2900aa79ca7e3ebc4b961ea3018b4fe3b0341"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9f76b08730c753d4bce85519be7becae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167723,
            "upload_time": "2024-08-15T05:32:12",
            "upload_time_iso_8601": "2024-08-15T05:32:12.326748Z",
            "url": "https://files.pythonhosted.org/packages/d6/1d/bcbea2779170b131ef76f2a5e6755d42ad02bf87e1614fd06928c00c9503/rchitect-0.4.7-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc92d9f6b8556ec1cdd9eceea0e2875ab0462b7324913d9cd8efacb62f83ec45",
                "md5": "4d30b2f9c70c9b9d8c7f7c90d09bd57e",
                "sha256": "c3f8de3804a7994422862ff50d887e96da4d2856db1d5f036bd970490d0ff87f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d30b2f9c70c9b9d8c7f7c90d09bd57e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 180332,
            "upload_time": "2024-08-15T05:32:13",
            "upload_time_iso_8601": "2024-08-15T05:32:13.245642Z",
            "url": "https://files.pythonhosted.org/packages/cc/92/d9f6b8556ec1cdd9eceea0e2875ab0462b7324913d9cd8efacb62f83ec45/rchitect-0.4.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce24efa9fc045d363fdbf5480b0e820248716e7eabf2efe647662e09f9acfae5",
                "md5": "1cb6e5ad783b20a88be6ccec96de9120",
                "sha256": "a9a68ec2ebeb6a1735906ab78cc332f7c349407e65b56db0baa019da55741903"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1cb6e5ad783b20a88be6ccec96de9120",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63780,
            "upload_time": "2024-08-15T05:32:14",
            "upload_time_iso_8601": "2024-08-15T05:32:14.273256Z",
            "url": "https://files.pythonhosted.org/packages/ce/24/efa9fc045d363fdbf5480b0e820248716e7eabf2efe647662e09f9acfae5/rchitect-0.4.7-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac5521646848c5ef8c8f34f0c30866e6fdae6b9dd5455ecbf99791235af27e2a",
                "md5": "f32e1eaef12bbc808fe032654cb1ece7",
                "sha256": "e78dd3a40b93978be83520ab5f87728ca4dc7cc79830cd2d015a5c2756c00d7c"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f32e1eaef12bbc808fe032654cb1ece7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63393,
            "upload_time": "2024-08-15T05:32:15",
            "upload_time_iso_8601": "2024-08-15T05:32:15.258624Z",
            "url": "https://files.pythonhosted.org/packages/ac/55/21646848c5ef8c8f34f0c30866e6fdae6b9dd5455ecbf99791235af27e2a/rchitect-0.4.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "daf4d96b3b925cc7b56b516f023943bd3cfb957b29756651734b771cf704ff75",
                "md5": "66dd0ff60f8f0afacec4843a38190115",
                "sha256": "4081ddfb4df841593e39e53e75e1dd9beb689a1593f4f77e6c33818dd0f56fe8"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66dd0ff60f8f0afacec4843a38190115",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 77551,
            "upload_time": "2024-08-15T05:32:16",
            "upload_time_iso_8601": "2024-08-15T05:32:16.548439Z",
            "url": "https://files.pythonhosted.org/packages/da/f4/d96b3b925cc7b56b516f023943bd3cfb957b29756651734b771cf704ff75/rchitect-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bddd5348259ae0016e948cc45dee41f695917073c7d42de5df2a7b329245c9e",
                "md5": "139be6d9a2dab740093fe1bb174483db",
                "sha256": "d37f41d21fefdeef3dd09d476633f30aba6475ececf4e740f32908e466749c1c"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "139be6d9a2dab740093fe1bb174483db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 77694,
            "upload_time": "2024-08-15T05:32:17",
            "upload_time_iso_8601": "2024-08-15T05:32:17.668492Z",
            "url": "https://files.pythonhosted.org/packages/7b/dd/d5348259ae0016e948cc45dee41f695917073c7d42de5df2a7b329245c9e/rchitect-0.4.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea26c9e3105f90850e47591b7bd59ca385d6c330e0883f0909ecef5de88b0935",
                "md5": "aa0e48fb94277138adb00bd730a02fb9",
                "sha256": "7c9c972b5c5aa8c3ebc18a284b9c91be66ac92ac2b2b05f0cb250a2ec4c3d5fd"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aa0e48fb94277138adb00bd730a02fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 150592,
            "upload_time": "2024-08-15T05:32:19",
            "upload_time_iso_8601": "2024-08-15T05:32:19.573096Z",
            "url": "https://files.pythonhosted.org/packages/ea/26/c9e3105f90850e47591b7bd59ca385d6c330e0883f0909ecef5de88b0935/rchitect-0.4.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c32af36aa128e0a0515ea5dc8f7207dec8defc7972af2001f06b58eaf4ee83a",
                "md5": "b733b4a545255a39b59aa6b540fa5ae5",
                "sha256": "a0d55f6a004c99535fc5a5fd58c9877552a815eedad9d5b659b2c11cee95cd00"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b733b4a545255a39b59aa6b540fa5ae5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 161591,
            "upload_time": "2024-08-15T05:32:20",
            "upload_time_iso_8601": "2024-08-15T05:32:20.621221Z",
            "url": "https://files.pythonhosted.org/packages/2c/32/af36aa128e0a0515ea5dc8f7207dec8defc7972af2001f06b58eaf4ee83a/rchitect-0.4.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5691171c5f7b68f543d719ae35355868ef9442bc3f7af95aa489a332bc53073",
                "md5": "a7d09f37154277df6eda80e3f3bf356d",
                "sha256": "f27e2a948d2008181025988623af1f1e29b7c44fcc9b3a239fcd04deadfb95cb"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a7d09f37154277df6eda80e3f3bf356d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 167138,
            "upload_time": "2024-08-15T05:32:21",
            "upload_time_iso_8601": "2024-08-15T05:32:21.663833Z",
            "url": "https://files.pythonhosted.org/packages/b5/69/1171c5f7b68f543d719ae35355868ef9442bc3f7af95aa489a332bc53073/rchitect-0.4.7-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90a529e49cfc2cdccace544615cbf3e9168b049c8010de3b54205fd49f37298a",
                "md5": "6f48b63a06c6bd7b31a53eab96e59172",
                "sha256": "4885212ae79371a173766fa7c175b837264f8391c84334921ef3415416cddd2f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f48b63a06c6bd7b31a53eab96e59172",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 179796,
            "upload_time": "2024-08-15T05:32:22",
            "upload_time_iso_8601": "2024-08-15T05:32:22.682567Z",
            "url": "https://files.pythonhosted.org/packages/90/a5/29e49cfc2cdccace544615cbf3e9168b049c8010de3b54205fd49f37298a/rchitect-0.4.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8721a017abff53b08f395da4ae9c8875fc1e6fdc5cfb7d16336202c60df9e2c6",
                "md5": "2a8688baf04e7b200c8a8b7a17ca882c",
                "sha256": "db42bee9c6dc23f5fff87df9793d1d6c0e3e6279bb310e725392018166c6d394"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2a8688baf04e7b200c8a8b7a17ca882c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 63782,
            "upload_time": "2024-08-15T05:32:23",
            "upload_time_iso_8601": "2024-08-15T05:32:23.730139Z",
            "url": "https://files.pythonhosted.org/packages/87/21/a017abff53b08f395da4ae9c8875fc1e6fdc5cfb7d16336202c60df9e2c6/rchitect-0.4.7-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "727963f65664c63b6960c91a2723b8f3b48e63d2785ae8e8255d3d074e71da68",
                "md5": "144c57bbbaa953d5ed16fdc677f9d3b1",
                "sha256": "73a8c02cafc0b67dd5f47210e05ff59c6df5e8b81b99d57b9cfa3803cf3f04f5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "144c57bbbaa953d5ed16fdc677f9d3b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 63398,
            "upload_time": "2024-08-15T05:32:25",
            "upload_time_iso_8601": "2024-08-15T05:32:25.673396Z",
            "url": "https://files.pythonhosted.org/packages/72/79/63f65664c63b6960c91a2723b8f3b48e63d2785ae8e8255d3d074e71da68/rchitect-0.4.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8428f21ba9d418ca1deeb43d2ec9399fcf8f0fe975e3c9b10456fea62ea0682f",
                "md5": "6ce81ab4a1c6820fb942af321ead4607",
                "sha256": "5c903eb20766fbc5665fca59b3554a6d91f69b00a8c9cd8dc9ea015747b5db77"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ce81ab4a1c6820fb942af321ead4607",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 66743,
            "upload_time": "2024-08-15T05:32:26",
            "upload_time_iso_8601": "2024-08-15T05:32:26.588109Z",
            "url": "https://files.pythonhosted.org/packages/84/28/f21ba9d418ca1deeb43d2ec9399fcf8f0fe975e3c9b10456fea62ea0682f/rchitect-0.4.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec79b46b03fa3f6253112f5ed74e84ab62083fd5ca449eba237a46e71ca207f8",
                "md5": "7c6283cc2eceb77344ac1f42d576f417",
                "sha256": "822cba79da02fc55f3a76b13c8bf96b5be7d0998e004442b198a21726936f8b3"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7c6283cc2eceb77344ac1f42d576f417",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 66605,
            "upload_time": "2024-08-15T05:32:27",
            "upload_time_iso_8601": "2024-08-15T05:32:27.867249Z",
            "url": "https://files.pythonhosted.org/packages/ec/79/b46b03fa3f6253112f5ed74e84ab62083fd5ca449eba237a46e71ca207f8/rchitect-0.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6e0d6f797aa64f4605b82b44de1c052f7d9c203512403cf5f9c74a80ef63a7d",
                "md5": "ab04de03111d7f3ee060679184757f3b",
                "sha256": "f91dac450a70f455705e9fc3a930f275ba22ebeaf429f1417908e2732ba0fb5a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ab04de03111d7f3ee060679184757f3b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 80727,
            "upload_time": "2024-08-15T05:32:28",
            "upload_time_iso_8601": "2024-08-15T05:32:28.753738Z",
            "url": "https://files.pythonhosted.org/packages/f6/e0/d6f797aa64f4605b82b44de1c052f7d9c203512403cf5f9c74a80ef63a7d/rchitect-0.4.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79fe21cd970a15c5b54bcd77cd3c400efec68b1253a983a097eff29d8ea18143",
                "md5": "3eb1cc88a9842287286aa4edba496fb4",
                "sha256": "48ad7faf3f31e194653908815a95129785d761bbf1a8c765a0a175960fba24d9"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3eb1cc88a9842287286aa4edba496fb4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 81419,
            "upload_time": "2024-08-15T05:32:29",
            "upload_time_iso_8601": "2024-08-15T05:32:29.744175Z",
            "url": "https://files.pythonhosted.org/packages/79/fe/21cd970a15c5b54bcd77cd3c400efec68b1253a983a097eff29d8ea18143/rchitect-0.4.7-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e771bb153938580dc2129bfe96ed2f66c42b54c69a190c813fcf7b2f71c0deb5",
                "md5": "c701152bc7ed35d30a28101eb90cdb8d",
                "sha256": "b63ab432db30dcf5a54419cc009d3c8683a390170b3a065aa8f2b6e8b0977e0e"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c701152bc7ed35d30a28101eb90cdb8d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 60206,
            "upload_time": "2024-08-15T05:32:30",
            "upload_time_iso_8601": "2024-08-15T05:32:30.652449Z",
            "url": "https://files.pythonhosted.org/packages/e7/71/bb153938580dc2129bfe96ed2f66c42b54c69a190c813fcf7b2f71c0deb5/rchitect-0.4.7-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f645a26d542a46887be76ba1b053b9df376a7ec3290a9e12883cc94e46ab17c",
                "md5": "7adeb80b7b2879d0e99a5e0f8c167f98",
                "sha256": "1cac532218784ca221c4b979a352ee81efc2847879dc9ce5379f5dfa38436338"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7adeb80b7b2879d0e99a5e0f8c167f98",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 66743,
            "upload_time": "2024-08-15T05:32:31",
            "upload_time_iso_8601": "2024-08-15T05:32:31.556149Z",
            "url": "https://files.pythonhosted.org/packages/0f/64/5a26d542a46887be76ba1b053b9df376a7ec3290a9e12883cc94e46ab17c/rchitect-0.4.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c51c66dff1e97b50b02c0931c3725315b8691d24bd7e308c5a3d2d4d02e5a293",
                "md5": "ee51603f287cf96e9f03d78bc21d6b4c",
                "sha256": "7a4b07b2d1fa10f714cf8c9560cce3704b805aa2ee24b53313d7d5d77e3115e3"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ee51603f287cf96e9f03d78bc21d6b4c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 81060,
            "upload_time": "2024-08-15T05:32:32",
            "upload_time_iso_8601": "2024-08-15T05:32:32.537322Z",
            "url": "https://files.pythonhosted.org/packages/c5/1c/66dff1e97b50b02c0931c3725315b8691d24bd7e308c5a3d2d4d02e5a293/rchitect-0.4.7-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8c2fb45332f1b92b04483ba2821d83cd1c58385ab8110c81ede41e839d7994b",
                "md5": "48db3849def0f57e59d9048153df456c",
                "sha256": "cffa3581286bfbccc50b47a0d5a1fda2bbb9346d8dd061ff05c26ef99d3cb58a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48db3849def0f57e59d9048153df456c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 81698,
            "upload_time": "2024-08-15T05:32:33",
            "upload_time_iso_8601": "2024-08-15T05:32:33.491823Z",
            "url": "https://files.pythonhosted.org/packages/e8/c2/fb45332f1b92b04483ba2821d83cd1c58385ab8110c81ede41e839d7994b/rchitect-0.4.7-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0dd43d872de33d6485d24aed7125dba8075ddcdaa0500cef57b7ab088af2d95",
                "md5": "1c0a7e5918c869aa2155e3b454475fdc",
                "sha256": "89bd6edfc477a1092bd497ecac895fc4da7e6276dc9a2184bfb96b13bd5cd59e"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1c0a7e5918c869aa2155e3b454475fdc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 60199,
            "upload_time": "2024-08-15T05:32:35",
            "upload_time_iso_8601": "2024-08-15T05:32:35.019619Z",
            "url": "https://files.pythonhosted.org/packages/f0/dd/43d872de33d6485d24aed7125dba8075ddcdaa0500cef57b7ab088af2d95/rchitect-0.4.7-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9268f89153457d349ce46dbe34dea882fc2b2d4986841944d17af2a1e2d6b86",
                "md5": "55d1a05c1605020fc034a96e4529b8af",
                "sha256": "7651c15a730a5d9477403eb3572b2dfa49ea3dc081fe2e653dd50d15898680d2"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55d1a05c1605020fc034a96e4529b8af",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 66739,
            "upload_time": "2024-08-15T05:32:35",
            "upload_time_iso_8601": "2024-08-15T05:32:35.950121Z",
            "url": "https://files.pythonhosted.org/packages/b9/26/8f89153457d349ce46dbe34dea882fc2b2d4986841944d17af2a1e2d6b86/rchitect-0.4.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "558abeef0f0ed19d0050cdd96b2708123deba38836128cc3a24a829dd2176ff6",
                "md5": "dc80c5faa511a4e62cb21c32fe99f4db",
                "sha256": "e3d8bd990ac1ca63a1f4a19868447f91d5f4b87640e5f3ce3ff9f3d37877cafa"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc80c5faa511a4e62cb21c32fe99f4db",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 66590,
            "upload_time": "2024-08-15T05:32:36",
            "upload_time_iso_8601": "2024-08-15T05:32:36.897089Z",
            "url": "https://files.pythonhosted.org/packages/55/8a/beef0f0ed19d0050cdd96b2708123deba38836128cc3a24a829dd2176ff6/rchitect-0.4.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c9b7ea319959e1a99f22a5e0d978edced22d25a779c05c8609f90644da38e4a",
                "md5": "0f7b94dc246035f221be3c71b286fa29",
                "sha256": "e853e5547faed0071a93164216b807df2a199521daa811f9fc9c677b17acb5b6"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0f7b94dc246035f221be3c71b286fa29",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 80725,
            "upload_time": "2024-08-15T05:32:37",
            "upload_time_iso_8601": "2024-08-15T05:32:37.837301Z",
            "url": "https://files.pythonhosted.org/packages/2c/9b/7ea319959e1a99f22a5e0d978edced22d25a779c05c8609f90644da38e4a/rchitect-0.4.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3360ea8160c53f935cb1636c520cf12f386c8c48ee96b59955ee61de6e72488",
                "md5": "2f25d846cd38b23ccc1c68b2eb5b3606",
                "sha256": "b66812d6d228643a6d60658a8709eb1707af9e758e0688ddcd77ac1e643e845f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f25d846cd38b23ccc1c68b2eb5b3606",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 81416,
            "upload_time": "2024-08-15T05:32:39",
            "upload_time_iso_8601": "2024-08-15T05:32:39.205704Z",
            "url": "https://files.pythonhosted.org/packages/d3/36/0ea8160c53f935cb1636c520cf12f386c8c48ee96b59955ee61de6e72488/rchitect-0.4.7-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53c9a96dc460eb11a260139f7890d1e358ee872ca7289c2abfb9fa574003a3e9",
                "md5": "ff848cdbb8ceaa0894b7eb9bb9a67242",
                "sha256": "b0ebd76e7298eadea8f007953c55853eadbda83cb2dd24a7a5e27be00760f0ca"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff848cdbb8ceaa0894b7eb9bb9a67242",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 60198,
            "upload_time": "2024-08-15T05:32:40",
            "upload_time_iso_8601": "2024-08-15T05:32:40.156389Z",
            "url": "https://files.pythonhosted.org/packages/53/c9/a96dc460eb11a260139f7890d1e358ee872ca7289c2abfb9fa574003a3e9/rchitect-0.4.7-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ec22f5b93cc7582a154f91c5515a28287e823a0e055dc0a73da95f61007e686",
                "md5": "69f0399424693260cd4980596cc9f07f",
                "sha256": "476be524419526f9357ff644d95c90ed5d4a49276078d297a3c05577ac1f19aa"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69f0399424693260cd4980596cc9f07f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 66738,
            "upload_time": "2024-08-15T05:32:41",
            "upload_time_iso_8601": "2024-08-15T05:32:41.198409Z",
            "url": "https://files.pythonhosted.org/packages/3e/c2/2f5b93cc7582a154f91c5515a28287e823a0e055dc0a73da95f61007e686/rchitect-0.4.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52262e251d85cd78a5532c72dcddfdff3b1edd051d4fb4e450e937d29cb52df2",
                "md5": "b2793cb432886ec25cb8b2382b7d7b5d",
                "sha256": "e8b6b5ae6d30131828bdc887e807ff94a90f6a13ddd5b8e45d42a5295b4f06a2"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b2793cb432886ec25cb8b2382b7d7b5d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 66595,
            "upload_time": "2024-08-15T05:32:42",
            "upload_time_iso_8601": "2024-08-15T05:32:42.605065Z",
            "url": "https://files.pythonhosted.org/packages/52/26/2e251d85cd78a5532c72dcddfdff3b1edd051d4fb4e450e937d29cb52df2/rchitect-0.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4077f78756680cb9431996c0d9002d885ad331385a3541ab6c9ccddc6366f7cb",
                "md5": "641a8dc5410bf38118a49af30430b4b2",
                "sha256": "b4faa556d03f79b29f4cf7926854286636f0f57db1a716a9e8446e405f76648f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "641a8dc5410bf38118a49af30430b4b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 80726,
            "upload_time": "2024-08-15T05:32:43",
            "upload_time_iso_8601": "2024-08-15T05:32:43.831566Z",
            "url": "https://files.pythonhosted.org/packages/40/77/f78756680cb9431996c0d9002d885ad331385a3541ab6c9ccddc6366f7cb/rchitect-0.4.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a4d3f295ea8c53f709c1fe788192c7219fa2bc502e95fa95db6fa16a1d70783",
                "md5": "d3868c75a4e875a890cdbd770be04afd",
                "sha256": "94d7d5343f3d180f9d72870b48b827286929d2440ce8ce5719703fce1ef58ef4"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3868c75a4e875a890cdbd770be04afd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 81416,
            "upload_time": "2024-08-15T05:32:44",
            "upload_time_iso_8601": "2024-08-15T05:32:44.823589Z",
            "url": "https://files.pythonhosted.org/packages/4a/4d/3f295ea8c53f709c1fe788192c7219fa2bc502e95fa95db6fa16a1d70783/rchitect-0.4.7-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c017d6f34091c2b08846fc97c73ce73be69af50f791146807fcc7ea89b40996",
                "md5": "59b8e4a3637aa64b21f9f2bbe2103b5f",
                "sha256": "914e39194b9d555c46f3d5fb0f512670ad860f8784b4b585aa356d9488d57915"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59b8e4a3637aa64b21f9f2bbe2103b5f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 60202,
            "upload_time": "2024-08-15T05:32:45",
            "upload_time_iso_8601": "2024-08-15T05:32:45.781717Z",
            "url": "https://files.pythonhosted.org/packages/4c/01/7d6f34091c2b08846fc97c73ce73be69af50f791146807fcc7ea89b40996/rchitect-0.4.7-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02b54822ff52d2ce8f5b47302252bbce73f62f6864481835a17e7286ab2e6efc",
                "md5": "e33d9466725f0db730193c3640afdd35",
                "sha256": "6993f58d1a3afce64150643fd602ca008be23a0bb5e78166c3d3c616b59d1888"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.7.tar.gz",
            "has_sig": false,
            "md5_digest": "e33d9466725f0db730193c3640afdd35",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 32692,
            "upload_time": "2024-08-15T05:31:23",
            "upload_time_iso_8601": "2024-08-15T05:31:23.653657Z",
            "url": "https://files.pythonhosted.org/packages/02/b5/4822ff52d2ce8f5b47302252bbce73f62f6864481835a17e7286ab2e6efc/rchitect-0.4.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-15 05:31:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "randy3k",
    "github_project": "rchitect",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "rchitect"
}
        
Elapsed time: 0.53884s