rchitect


Namerchitect JSON
Version 0.4.6 PyPI version JSON
download
home_pagehttps://github.com/randy3k/rchitect
SummaryMapping R API to Python
upload_time2024-01-17 18:54:59
maintainer
docs_urlNone
authorRandy Lai
requires_python>=3.7
license
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": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Randy Lai",
    "author_email": "randy.cs.lai@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5b/a2/5f476fa801d44050ac04caae731b5470a6461c639a7d5937a9e9e6559c22/rchitect-0.4.6.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": "",
    "summary": "Mapping R API to Python",
    "version": "0.4.6",
    "project_urls": {
        "Homepage": "https://github.com/randy3k/rchitect"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52e7beec060f607f174207956b57038fdd0eb47f8bc3151bc21513a2e4e33025",
                "md5": "7b0badab7e81a742469980668fb92602",
                "sha256": "fd1385ee46867d5417134490f2360d418e5409ffdc7d72c1b07420f53e1ca5b1"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b0badab7e81a742469980668fb92602",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 83120,
            "upload_time": "2024-01-17T18:55:14",
            "upload_time_iso_8601": "2024-01-17T18:55:14.319276Z",
            "url": "https://files.pythonhosted.org/packages/52/e7/beec060f607f174207956b57038fdd0eb47f8bc3151bc21513a2e4e33025/rchitect-0.4.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d6a2218899f298814c3869e595d7b06dae6242446b38c842955308194f7a8e0",
                "md5": "cdf5869025a98675bcecb3c6174746da",
                "sha256": "4e63ea4fbe196bf4b035f05dd344867ca19243a50e2cd4cfb6ffb149f47588df"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cdf5869025a98675bcecb3c6174746da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 80842,
            "upload_time": "2024-01-17T18:55:15",
            "upload_time_iso_8601": "2024-01-17T18:55:15.477019Z",
            "url": "https://files.pythonhosted.org/packages/5d/6a/2218899f298814c3869e595d7b06dae6242446b38c842955308194f7a8e0/rchitect-0.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57ad8fce1c857d826bc237eef3b919803e90b75f00f78789be822d3e2097c5f4",
                "md5": "cae7648e5c4de8e342ce82fb91c92a5e",
                "sha256": "d2af331a953048e80654a311e7308a7de172f9d30c9567400e5df2c576fa2d0e"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cae7648e5c4de8e342ce82fb91c92a5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 152960,
            "upload_time": "2024-01-17T18:55:17",
            "upload_time_iso_8601": "2024-01-17T18:55:17.379854Z",
            "url": "https://files.pythonhosted.org/packages/57/ad/8fce1c857d826bc237eef3b919803e90b75f00f78789be822d3e2097c5f4/rchitect-0.4.6-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": "908c0a46722b49af60c1a97643e99756668dc8722352a89844c5e25f7ea16f4e",
                "md5": "ff52be2b1a7acbbc3ce06aa59fe27bbb",
                "sha256": "5babeda9d55b7f45d15e1b908175710d73b43a02acb4fc5cb3b88774adc2db46"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff52be2b1a7acbbc3ce06aa59fe27bbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 164554,
            "upload_time": "2024-01-17T18:55:18",
            "upload_time_iso_8601": "2024-01-17T18:55:18.714141Z",
            "url": "https://files.pythonhosted.org/packages/90/8c/0a46722b49af60c1a97643e99756668dc8722352a89844c5e25f7ea16f4e/rchitect-0.4.6-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": "1122159c01417cd29d5ae0a08e09a9a85784e33f112d216d8fbf6e736052846a",
                "md5": "604eae5d979d8cebd5a94bcc68d4794b",
                "sha256": "610222f5ec1627600bca86fc3005e13123cae5b62c419aed40005f15e1d98d36"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "604eae5d979d8cebd5a94bcc68d4794b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 169799,
            "upload_time": "2024-01-17T18:55:20",
            "upload_time_iso_8601": "2024-01-17T18:55:20.690839Z",
            "url": "https://files.pythonhosted.org/packages/11/22/159c01417cd29d5ae0a08e09a9a85784e33f112d216d8fbf6e736052846a/rchitect-0.4.6-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf1a7abbe2048b594c1e9d2546768925933729c13da0e1313fe20c25ed9a8a34",
                "md5": "6eacc42d631bb33e62b967b27a30b42e",
                "sha256": "c19d2fad95a2ef4ca80bec01d76ea7dc6ea51fedf3d324828056e99115576ed6"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6eacc42d631bb33e62b967b27a30b42e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 183254,
            "upload_time": "2024-01-17T18:55:22",
            "upload_time_iso_8601": "2024-01-17T18:55:22.643035Z",
            "url": "https://files.pythonhosted.org/packages/bf/1a/7abbe2048b594c1e9d2546768925933729c13da0e1313fe20c25ed9a8a34/rchitect-0.4.6-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7251227a2d6ee4ab53ec35dbd01aa6627e16da00c974851619246dcf65385549",
                "md5": "431eb0b1d212b10ca98b563474e88a6d",
                "sha256": "42e9642e901081fae74253841078cbaef9de067a9a41c63875eeefc86e95787d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "431eb0b1d212b10ca98b563474e88a6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 63956,
            "upload_time": "2024-01-17T18:55:23",
            "upload_time_iso_8601": "2024-01-17T18:55:23.849970Z",
            "url": "https://files.pythonhosted.org/packages/72/51/227a2d6ee4ab53ec35dbd01aa6627e16da00c974851619246dcf65385549/rchitect-0.4.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d734e9400cf5571d09830975456ee510458ef7e95648993754f6a58fd7b93787",
                "md5": "2c7175124569229ecf00754e3f898982",
                "sha256": "615d2ffa5bf6e2c3e86c16ea8ca09e0b417757e3f636c7ed0aa467f3d05c71c3"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c7175124569229ecf00754e3f898982",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 63626,
            "upload_time": "2024-01-17T18:55:25",
            "upload_time_iso_8601": "2024-01-17T18:55:25.679984Z",
            "url": "https://files.pythonhosted.org/packages/d7/34/e9400cf5571d09830975456ee510458ef7e95648993754f6a58fd7b93787/rchitect-0.4.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "812a914545a22a55a0a189c5c306ae40d96a30850665f018d5c782cc664eae00",
                "md5": "3ca8cc3d315af7f85d21eb9a0f98598e",
                "sha256": "8ab0e02b3a494cc803fc6cc809edcba7daed3e5b65488570358596d1d669cdc5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ca8cc3d315af7f85d21eb9a0f98598e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 83121,
            "upload_time": "2024-01-17T18:55:27",
            "upload_time_iso_8601": "2024-01-17T18:55:27.441269Z",
            "url": "https://files.pythonhosted.org/packages/81/2a/914545a22a55a0a189c5c306ae40d96a30850665f018d5c782cc664eae00/rchitect-0.4.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9559b570db9ad36e7d89f470cfbcec6e12dc80d2be39b3af5d6a87d34ba5afd",
                "md5": "693b94f3ea7de99afe4ece0bced42845",
                "sha256": "8631ba6c865be86614e639013f5bb43a2a27b19ec224e1c14ec8773bfae28a09"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "693b94f3ea7de99afe4ece0bced42845",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 80846,
            "upload_time": "2024-01-17T18:55:29",
            "upload_time_iso_8601": "2024-01-17T18:55:29.090093Z",
            "url": "https://files.pythonhosted.org/packages/b9/55/9b570db9ad36e7d89f470cfbcec6e12dc80d2be39b3af5d6a87d34ba5afd/rchitect-0.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f6ff8158f82be62efd1d89e3ee95b058049918f2c5f2e77543021ebcb59f8b9",
                "md5": "2e5f1811599a2d138aae121458a3af31",
                "sha256": "419b3dde18802281158bc728eb5e0b50059dfba953ad33eb384d99f8f9b9e22a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2e5f1811599a2d138aae121458a3af31",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 152935,
            "upload_time": "2024-01-17T18:55:30",
            "upload_time_iso_8601": "2024-01-17T18:55:30.740988Z",
            "url": "https://files.pythonhosted.org/packages/9f/6f/f8158f82be62efd1d89e3ee95b058049918f2c5f2e77543021ebcb59f8b9/rchitect-0.4.6-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": "93759216ee67d70155b4e773c753a29b6f291b321afc16292cb1946902815746",
                "md5": "1761011d8386f58727c9bbb5a3f1a801",
                "sha256": "560268a3609c3c12321d5bb90029543015f2b662a3c5073643b00a989547c1b4"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1761011d8386f58727c9bbb5a3f1a801",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 164516,
            "upload_time": "2024-01-17T18:55:32",
            "upload_time_iso_8601": "2024-01-17T18:55:32.117905Z",
            "url": "https://files.pythonhosted.org/packages/93/75/9216ee67d70155b4e773c753a29b6f291b321afc16292cb1946902815746/rchitect-0.4.6-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": "ce3f733bcff33adee37145e8bd1354eafd6b600b325afd90217fa60be9589e19",
                "md5": "38ba0fbf5aa56aa837660c788556886e",
                "sha256": "c5e5676da8c7e45403ce6bda9e23c9f554a6748231ab1f3aece86c8615ac70e7"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "38ba0fbf5aa56aa837660c788556886e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 170587,
            "upload_time": "2024-01-17T18:55:34",
            "upload_time_iso_8601": "2024-01-17T18:55:34.174815Z",
            "url": "https://files.pythonhosted.org/packages/ce/3f/733bcff33adee37145e8bd1354eafd6b600b325afd90217fa60be9589e19/rchitect-0.4.6-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a0ff6c9ec56dd9ac5afdffe4353ccdb933bbbb23ffbf33b2fb626ae559a546e",
                "md5": "84f68113890ce01cbf89bf20ebc33040",
                "sha256": "c537bdce6b8122f7e4a3b5efa7b3b248aa0ae7814ca6358277a0aba5afaa9dfe"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84f68113890ce01cbf89bf20ebc33040",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 184176,
            "upload_time": "2024-01-17T18:55:36",
            "upload_time_iso_8601": "2024-01-17T18:55:36.102905Z",
            "url": "https://files.pythonhosted.org/packages/6a/0f/f6c9ec56dd9ac5afdffe4353ccdb933bbbb23ffbf33b2fb626ae559a546e/rchitect-0.4.6-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed5df1960659a8357b57e90b6fd8692f08ca0d1257a73a7be23301bd4b0bb2e3",
                "md5": "458f50c7a95fd30aaee85bef69383a99",
                "sha256": "1f9561c295d10ddca5706aacb976e9fad33ac85cce706863bd1086c847b24988"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "458f50c7a95fd30aaee85bef69383a99",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63956,
            "upload_time": "2024-01-17T18:55:37",
            "upload_time_iso_8601": "2024-01-17T18:55:37.401534Z",
            "url": "https://files.pythonhosted.org/packages/ed/5d/f1960659a8357b57e90b6fd8692f08ca0d1257a73a7be23301bd4b0bb2e3/rchitect-0.4.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2923dda2e943631110f1d2427fee29dc18cf3f97787e0edeace3acfa2df29a2",
                "md5": "eb278d6eec996cd4ba22beae4bcc716b",
                "sha256": "84c63b3dc63ff81f25b94fac853e30aff7944a0080b01533f61357e28c457655"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb278d6eec996cd4ba22beae4bcc716b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63629,
            "upload_time": "2024-01-17T18:55:38",
            "upload_time_iso_8601": "2024-01-17T18:55:38.672729Z",
            "url": "https://files.pythonhosted.org/packages/f2/92/3dda2e943631110f1d2427fee29dc18cf3f97787e0edeace3acfa2df29a2/rchitect-0.4.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa5f659cab96c2b54cfbfa0360a0e0c09232b72cd365b1b3568d0e215dc49e40",
                "md5": "c3ae235b7a007ea97936c245734e57d8",
                "sha256": "cc179f013b661e3785188c923daebe12ec08a5a723b267dd6720ba44eba96106"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3ae235b7a007ea97936c245734e57d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 83155,
            "upload_time": "2024-01-17T18:55:40",
            "upload_time_iso_8601": "2024-01-17T18:55:40.444491Z",
            "url": "https://files.pythonhosted.org/packages/fa/5f/659cab96c2b54cfbfa0360a0e0c09232b72cd365b1b3568d0e215dc49e40/rchitect-0.4.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d449b939d246024051f99331bbcdf850da1a6efb38d2689cbc5c93845a65ca1",
                "md5": "7ea70d4614d6eb19f9da6e8d159d8798",
                "sha256": "3f34a5798f16834e4558fa947d8a229b1c20d58605654c987927d28afd7ef3f1"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ea70d4614d6eb19f9da6e8d159d8798",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 80890,
            "upload_time": "2024-01-17T18:55:41",
            "upload_time_iso_8601": "2024-01-17T18:55:41.655471Z",
            "url": "https://files.pythonhosted.org/packages/4d/44/9b939d246024051f99331bbcdf850da1a6efb38d2689cbc5c93845a65ca1/rchitect-0.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77f88bcb4a1004e955d2b093d0fb5dd11aed01711775fbc2a3f4edffd9ec6f63",
                "md5": "d8280e689c98f7b8c854d44c973112de",
                "sha256": "029967028761c12a5d9406b5c99c338708d2cb2ff2fcb7f29efe5951dd9750a2"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d8280e689c98f7b8c854d44c973112de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 153366,
            "upload_time": "2024-01-17T18:55:42",
            "upload_time_iso_8601": "2024-01-17T18:55:42.869847Z",
            "url": "https://files.pythonhosted.org/packages/77/f8/8bcb4a1004e955d2b093d0fb5dd11aed01711775fbc2a3f4edffd9ec6f63/rchitect-0.4.6-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": "27a9e22c5ed7ee6b1606ef479fe796cc0c0563e9a1ffd90d47e251048cc2401c",
                "md5": "c1461095db94f12d2f438f7d20f6c244",
                "sha256": "e17e6347be6bc5e76aa073ff80d229963fc5d641c7725c1aa56ddd211e15e5d5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1461095db94f12d2f438f7d20f6c244",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 165131,
            "upload_time": "2024-01-17T18:55:44",
            "upload_time_iso_8601": "2024-01-17T18:55:44.816325Z",
            "url": "https://files.pythonhosted.org/packages/27/a9/e22c5ed7ee6b1606ef479fe796cc0c0563e9a1ffd90d47e251048cc2401c/rchitect-0.4.6-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": "d5f0187fa3284735c7669218b30904084ce363e666462ee9d773e4302224b5d8",
                "md5": "582c3d86753d7fb817cdcaaab260db65",
                "sha256": "bbc4e9d7da594c5599056b0cf9043ef058c872d0758e6cfb94fa8b4d3af66a8e"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "582c3d86753d7fb817cdcaaab260db65",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 170833,
            "upload_time": "2024-01-17T18:55:46",
            "upload_time_iso_8601": "2024-01-17T18:55:46.326687Z",
            "url": "https://files.pythonhosted.org/packages/d5/f0/187fa3284735c7669218b30904084ce363e666462ee9d773e4302224b5d8/rchitect-0.4.6-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e2e7aa43675487f5238e343702c1424b81bddbf85292cfcc699ee921e0fc851",
                "md5": "bf09e0c8927e99a21f9d10999a9574b4",
                "sha256": "8b36dd7531b9b797c0550ac643bb753c5e7f4de1bd04368f1c015fb840b12e78"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf09e0c8927e99a21f9d10999a9574b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 184465,
            "upload_time": "2024-01-17T18:55:48",
            "upload_time_iso_8601": "2024-01-17T18:55:48.253796Z",
            "url": "https://files.pythonhosted.org/packages/5e/2e/7aa43675487f5238e343702c1424b81bddbf85292cfcc699ee921e0fc851/rchitect-0.4.6-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49289b27f697bce68023f15cc2695a9bd879a34dc4a0d2cb87dae576bc7bd40b",
                "md5": "d365697fc0f865e6b2212ed8cdc8ad9e",
                "sha256": "d0328cc8b61ca801fc92ff2588ebfe0159d6ee5f512c240e07fb8e42a6190c62"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d365697fc0f865e6b2212ed8cdc8ad9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 64030,
            "upload_time": "2024-01-17T18:55:49",
            "upload_time_iso_8601": "2024-01-17T18:55:49.555255Z",
            "url": "https://files.pythonhosted.org/packages/49/28/9b27f697bce68023f15cc2695a9bd879a34dc4a0d2cb87dae576bc7bd40b/rchitect-0.4.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f666a3dd5ee32c9172d512960ee9e7a82d613e7b775b29339534235240ab7c9",
                "md5": "57713d6108db6f825da8a97257104d8f",
                "sha256": "35064f51aeba7ea462a2fa12ea262d27964ecfaef93e641784d8c0e6591b150a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57713d6108db6f825da8a97257104d8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 63703,
            "upload_time": "2024-01-17T18:55:50",
            "upload_time_iso_8601": "2024-01-17T18:55:50.718854Z",
            "url": "https://files.pythonhosted.org/packages/5f/66/6a3dd5ee32c9172d512960ee9e7a82d613e7b775b29339534235240ab7c9/rchitect-0.4.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e358c6f612adf4dc1d1a5114730d7ed4e6552bfd4e53d204f4a9bce39d1d124f",
                "md5": "4c77c226b29d8a1776e164792eabfeed",
                "sha256": "f056cdfe8b762ace30a28fbfdee8f81619b0a82749ec96139960f89af94f5e04"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c77c226b29d8a1776e164792eabfeed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 83052,
            "upload_time": "2024-01-17T18:55:52",
            "upload_time_iso_8601": "2024-01-17T18:55:52.102668Z",
            "url": "https://files.pythonhosted.org/packages/e3/58/c6f612adf4dc1d1a5114730d7ed4e6552bfd4e53d204f4a9bce39d1d124f/rchitect-0.4.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7f4ce9d130fb243758b8271221ec0afeedc43eafdf56b479571f68ca7308af2",
                "md5": "d2efefd5a7518b05d3dc2af7213bd4ee",
                "sha256": "8df6d0aadd0cb519fc3173621f3f088da36bbeb302239889abde095ef2d83499"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d2efefd5a7518b05d3dc2af7213bd4ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 152687,
            "upload_time": "2024-01-17T18:55:53",
            "upload_time_iso_8601": "2024-01-17T18:55:53.963815Z",
            "url": "https://files.pythonhosted.org/packages/f7/f4/ce9d130fb243758b8271221ec0afeedc43eafdf56b479571f68ca7308af2/rchitect-0.4.6-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": "b0068449b2a3d2038c913eaaa4bbd3698b91d312d2f60bb105375143a41f3742",
                "md5": "816e87124f5bf833661e817a4db77ca2",
                "sha256": "0c793c687813a000985aaa507cc96f219a9878e34b96c6f02e90398a03932033"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "816e87124f5bf833661e817a4db77ca2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 164193,
            "upload_time": "2024-01-17T18:55:56",
            "upload_time_iso_8601": "2024-01-17T18:55:56.094539Z",
            "url": "https://files.pythonhosted.org/packages/b0/06/8449b2a3d2038c913eaaa4bbd3698b91d312d2f60bb105375143a41f3742/rchitect-0.4.6-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": "d095f937ea27eb7d911cf7bff2e0e3761faae3c885827af61ef2b47397c54818",
                "md5": "a0b5ba1c2b36f39a5c20ad4e041e83f6",
                "sha256": "0a9a9c41710623da3d96467a684d1312a7d6b23992145b76e4af6742ab6b120f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a0b5ba1c2b36f39a5c20ad4e041e83f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 170414,
            "upload_time": "2024-01-17T18:55:57",
            "upload_time_iso_8601": "2024-01-17T18:55:57.976851Z",
            "url": "https://files.pythonhosted.org/packages/d0/95/f937ea27eb7d911cf7bff2e0e3761faae3c885827af61ef2b47397c54818/rchitect-0.4.6-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "021c8e4105f73e41d84821938441b7b294e459264a7cf32f3a28c6cd20045357",
                "md5": "2de8b2e48c862484432cda07464d022e",
                "sha256": "cb94afb4f2a42d2aebd74766c5f2aa6f4138b2de0160c076869ebb0ba9812748"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2de8b2e48c862484432cda07464d022e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 183993,
            "upload_time": "2024-01-17T18:55:59",
            "upload_time_iso_8601": "2024-01-17T18:55:59.674563Z",
            "url": "https://files.pythonhosted.org/packages/02/1c/8e4105f73e41d84821938441b7b294e459264a7cf32f3a28c6cd20045357/rchitect-0.4.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c3137e1711e904009eb9ced804a3141762416fac0b72c9ed6f20c2ebef16bb",
                "md5": "70e29f5d540e34c75eccb058545ab903",
                "sha256": "e7cf796a10e602a036407f6f0ce1327ae046b9a17723cae9d11138e0558ff00a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "70e29f5d540e34c75eccb058545ab903",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 63958,
            "upload_time": "2024-01-17T18:56:01",
            "upload_time_iso_8601": "2024-01-17T18:56:01.827480Z",
            "url": "https://files.pythonhosted.org/packages/03/c3/137e1711e904009eb9ced804a3141762416fac0b72c9ed6f20c2ebef16bb/rchitect-0.4.6-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e01c54a5bdbf5e646de726d06a0850bd11a56925074e6d58cafef99b49d574dd",
                "md5": "37c4553f1c405125a66185e9f2776868",
                "sha256": "eeaa3af67676f20601a4fede3e05d6c95e84e698970bd920610e40cd67e81f1d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "37c4553f1c405125a66185e9f2776868",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 63624,
            "upload_time": "2024-01-17T18:56:03",
            "upload_time_iso_8601": "2024-01-17T18:56:03.127520Z",
            "url": "https://files.pythonhosted.org/packages/e0/1c/54a5bdbf5e646de726d06a0850bd11a56925074e6d58cafef99b49d574dd/rchitect-0.4.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de294d74f5cf9f907b54fc2120cacef6afff8604c2bdbacba346fe79946522f4",
                "md5": "7506ff36e788e25f22aaf59aa19d5a30",
                "sha256": "a176f3ebbf8d2e87de0b47c46d3d52db52abec8909741c3eed1cbcd0c99fbc0a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7506ff36e788e25f22aaf59aa19d5a30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 83118,
            "upload_time": "2024-01-17T18:56:04",
            "upload_time_iso_8601": "2024-01-17T18:56:04.435123Z",
            "url": "https://files.pythonhosted.org/packages/de/29/4d74f5cf9f907b54fc2120cacef6afff8604c2bdbacba346fe79946522f4/rchitect-0.4.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b90995cf1746abf90d6cb0811bbc832d8960c8287570b9ca131bb4b1d95644dc",
                "md5": "884ce0c68df999ef620d98776453a198",
                "sha256": "3e58d6cfd909c7ba8c6a28648d64fcba2874789b8274474dd8d9e88f32e0d58d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "884ce0c68df999ef620d98776453a198",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 80839,
            "upload_time": "2024-01-17T18:56:05",
            "upload_time_iso_8601": "2024-01-17T18:56:05.702471Z",
            "url": "https://files.pythonhosted.org/packages/b9/09/95cf1746abf90d6cb0811bbc832d8960c8287570b9ca131bb4b1d95644dc/rchitect-0.4.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bba39435d9fd86e0d4c28c9ca7905cbec9dca7f906a97fc3e0567b38fddd85c5",
                "md5": "6422200133f2acf60b7418bb99c0e632",
                "sha256": "6c7cdd313031b67a691cc699e1eae6dd079c6abd7adeb28a0d61d39e64d984ac"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6422200133f2acf60b7418bb99c0e632",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 153153,
            "upload_time": "2024-01-17T18:56:07",
            "upload_time_iso_8601": "2024-01-17T18:56:07.017201Z",
            "url": "https://files.pythonhosted.org/packages/bb/a3/9435d9fd86e0d4c28c9ca7905cbec9dca7f906a97fc3e0567b38fddd85c5/rchitect-0.4.6-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": "ccbccea6361fc88555f6cb4b784050651e32a262df57855f200cb3965c676a75",
                "md5": "3665d0ac2fe1c5c3e34ee186a5addcbe",
                "sha256": "db5d4f781e89af8e8a566d67f7d12cd5f3cbdd81eb2c535f848436cfac10a3d7"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3665d0ac2fe1c5c3e34ee186a5addcbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 164742,
            "upload_time": "2024-01-17T18:56:08",
            "upload_time_iso_8601": "2024-01-17T18:56:08.466856Z",
            "url": "https://files.pythonhosted.org/packages/cc/bc/cea6361fc88555f6cb4b784050651e32a262df57855f200cb3965c676a75/rchitect-0.4.6-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": "661a184786dca70fc0acb57d9dc286908efd0c42988594300ca5c862a3c2d896",
                "md5": "aa66f55d830d275d80eadc603b242f4b",
                "sha256": "ae1f932be7bdd21fa8553ab62823c4ef54ed50efa4cb3433ea3e621e07c5a20a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "aa66f55d830d275d80eadc603b242f4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 170198,
            "upload_time": "2024-01-17T18:56:09",
            "upload_time_iso_8601": "2024-01-17T18:56:09.901821Z",
            "url": "https://files.pythonhosted.org/packages/66/1a/184786dca70fc0acb57d9dc286908efd0c42988594300ca5c862a3c2d896/rchitect-0.4.6-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab847abda455cfc5f10a82d9077cfac5fb9ae2874600ce8682125cfb2102e745",
                "md5": "a3fa3268043b268f8488218de390d322",
                "sha256": "7b96b2cf983176e4cfd7b327b8c222634a1429557cff17c3d1fcecd3eff66246"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3fa3268043b268f8488218de390d322",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 183633,
            "upload_time": "2024-01-17T18:56:11",
            "upload_time_iso_8601": "2024-01-17T18:56:11.801202Z",
            "url": "https://files.pythonhosted.org/packages/ab/84/7abda455cfc5f10a82d9077cfac5fb9ae2874600ce8682125cfb2102e745/rchitect-0.4.6-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b1ccf68e726fe8f25a9247fc502cbc70c17e3de9a5417c43dc919efaf9ab4a6",
                "md5": "54bbca20ba11ff675f1d8709527e3742",
                "sha256": "c0a8e57041a6560799b303c176df66197bbcda1eff2763103ed43d1ebcacd3e5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "54bbca20ba11ff675f1d8709527e3742",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63953,
            "upload_time": "2024-01-17T18:56:13",
            "upload_time_iso_8601": "2024-01-17T18:56:13.147718Z",
            "url": "https://files.pythonhosted.org/packages/8b/1c/cf68e726fe8f25a9247fc502cbc70c17e3de9a5417c43dc919efaf9ab4a6/rchitect-0.4.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8f0d8f5f157cd80152b5c93a31d41d450cf10709f528ce2a2c465a49cc56b60",
                "md5": "59a0e51fe338da06761eab4ba93e33cd",
                "sha256": "7b0544dcceea634fcc949825890294947d04ca1c7ff990ac559804154342c9bb"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59a0e51fe338da06761eab4ba93e33cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63627,
            "upload_time": "2024-01-17T18:56:14",
            "upload_time_iso_8601": "2024-01-17T18:56:14.983416Z",
            "url": "https://files.pythonhosted.org/packages/c8/f0/d8f5f157cd80152b5c93a31d41d450cf10709f528ce2a2c465a49cc56b60/rchitect-0.4.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c642cc9b91c0b892741170b8f9154f654adad945e6e24cb9992db78eba40f50",
                "md5": "63f61b0836806618783c300e98158843",
                "sha256": "7f5c07c165cbe8004ed710eafa5d544f6f86c73a07869d50994caead4c4cd387"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63f61b0836806618783c300e98158843",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 83112,
            "upload_time": "2024-01-17T18:56:16",
            "upload_time_iso_8601": "2024-01-17T18:56:16.854771Z",
            "url": "https://files.pythonhosted.org/packages/6c/64/2cc9b91c0b892741170b8f9154f654adad945e6e24cb9992db78eba40f50/rchitect-0.4.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c187b14c5b265ddf34821178bb08707792e38ff66bc1de63aae80648ceaa4ae",
                "md5": "276ae69f3462a4892acb0d9078b5aec5",
                "sha256": "12cffd40e98bf364fca05b7a878d92332b274c5af83b264ca906cab134d84057"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "276ae69f3462a4892acb0d9078b5aec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 80840,
            "upload_time": "2024-01-17T18:56:18",
            "upload_time_iso_8601": "2024-01-17T18:56:18.057154Z",
            "url": "https://files.pythonhosted.org/packages/0c/18/7b14c5b265ddf34821178bb08707792e38ff66bc1de63aae80648ceaa4ae/rchitect-0.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3937572bc85ddf7dac8c469f83106db5abc0784e1606112e3e5bc0cda77c5629",
                "md5": "474a5e6dcb371bbf459bb480afc01541",
                "sha256": "45fbc6798598f1432dedcafc6b84bbc91c182e9b5e3e7816c597bdee30d041eb"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "474a5e6dcb371bbf459bb480afc01541",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 152918,
            "upload_time": "2024-01-17T18:56:19",
            "upload_time_iso_8601": "2024-01-17T18:56:19.333532Z",
            "url": "https://files.pythonhosted.org/packages/39/37/572bc85ddf7dac8c469f83106db5abc0784e1606112e3e5bc0cda77c5629/rchitect-0.4.6-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": "55c17bfbe72601f12c5e0ab8eac05e884ecd66d3b9dd44e2167563f78e01397b",
                "md5": "748eec47b1e890fee38495b120cb31c2",
                "sha256": "4e7337de264653f01269d27ee0092f93e6ca6d25805154b16e99276c2e391ba5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "748eec47b1e890fee38495b120cb31c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 164527,
            "upload_time": "2024-01-17T18:56:20",
            "upload_time_iso_8601": "2024-01-17T18:56:20.715625Z",
            "url": "https://files.pythonhosted.org/packages/55/c1/7bfbe72601f12c5e0ab8eac05e884ecd66d3b9dd44e2167563f78e01397b/rchitect-0.4.6-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": "f04046cb64d3648061e932fb539a85bb79b76398bef9e888bd6e7ae90f0e74b1",
                "md5": "13c53cb72c1a1d6bb16bf4d2db8609b9",
                "sha256": "75e3998436a33eebe444dc12644ec637295c57c79d625a84395f2a1de28e6f6d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "13c53cb72c1a1d6bb16bf4d2db8609b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 169631,
            "upload_time": "2024-01-17T18:56:22",
            "upload_time_iso_8601": "2024-01-17T18:56:22.050617Z",
            "url": "https://files.pythonhosted.org/packages/f0/40/46cb64d3648061e932fb539a85bb79b76398bef9e888bd6e7ae90f0e74b1/rchitect-0.4.6-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ab84ccc1dbbce26773f9f2d50e21fe505f5fc52962971caa352e2007822181",
                "md5": "0556a8327db7b4b60b7ad2cce312aab3",
                "sha256": "0be0300ebb558f3fd29e14ef82904b555d1b606098b758b0a81479a8da9ffe9a"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0556a8327db7b4b60b7ad2cce312aab3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 183082,
            "upload_time": "2024-01-17T18:56:24",
            "upload_time_iso_8601": "2024-01-17T18:56:24.045737Z",
            "url": "https://files.pythonhosted.org/packages/f0/ab/84ccc1dbbce26773f9f2d50e21fe505f5fc52962971caa352e2007822181/rchitect-0.4.6-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13f923eaf3d708b9247e06f6a0adeaea0487670ec3d04f834fbf1adb077d1bff",
                "md5": "ab9435f0cf8e4343900d62b18783f49d",
                "sha256": "8b5629ccf0756758550a5916a456581b30e35605b11b7a10d9b9e2e6c7c2e055"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ab9435f0cf8e4343900d62b18783f49d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 63955,
            "upload_time": "2024-01-17T18:56:26",
            "upload_time_iso_8601": "2024-01-17T18:56:26.128971Z",
            "url": "https://files.pythonhosted.org/packages/13/f9/23eaf3d708b9247e06f6a0adeaea0487670ec3d04f834fbf1adb077d1bff/rchitect-0.4.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2d5da5b2764ec9f8289c30f3712b8cef3ed614f4bcb2fad44e3623873e01253",
                "md5": "3550a9e702a2748a9bc1220a2918b515",
                "sha256": "4134e2a8e5095fb5f5ce4cf45a32550eec1e996dfe0703bb845358aec14a12bd"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3550a9e702a2748a9bc1220a2918b515",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 63623,
            "upload_time": "2024-01-17T18:56:28",
            "upload_time_iso_8601": "2024-01-17T18:56:28.020306Z",
            "url": "https://files.pythonhosted.org/packages/a2/d5/da5b2764ec9f8289c30f3712b8cef3ed614f4bcb2fad44e3623873e01253/rchitect-0.4.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43eed2a8bdaa32309c76851c7ea4b3960fa6048434288e1bca79bc621dfc4fc5",
                "md5": "92d51c0deb1f167a322bad9604b6cd65",
                "sha256": "5ac680496d29788c454a82417769359eb6d0ace21a18c8cbe293adff83c6d781"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92d51c0deb1f167a322bad9604b6cd65",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 71260,
            "upload_time": "2024-01-17T18:56:29",
            "upload_time_iso_8601": "2024-01-17T18:56:29.798767Z",
            "url": "https://files.pythonhosted.org/packages/43/ee/d2a8bdaa32309c76851c7ea4b3960fa6048434288e1bca79bc621dfc4fc5/rchitect-0.4.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd02408b20b7d353c25d4aafeb9775f925bcc73eda8091eed78a0e51fdc5d0e6",
                "md5": "e9281b155005043773145e8b47635cbc",
                "sha256": "5597d8bcb5b39889c33f7f57088482a1bdf76c1fa53f24ae4b9c971e73b1fd92"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9281b155005043773145e8b47635cbc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 80961,
            "upload_time": "2024-01-17T18:56:31",
            "upload_time_iso_8601": "2024-01-17T18:56:31.685799Z",
            "url": "https://files.pythonhosted.org/packages/bd/02/408b20b7d353c25d4aafeb9775f925bcc73eda8091eed78a0e51fdc5d0e6/rchitect-0.4.6-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": "324a606e1e80ff35dffcdf847dfccb63f37224b8b46cd9894b01312ab16acf14",
                "md5": "8baa31d473e08c74aee8cee13a98fca7",
                "sha256": "ae50acffd4d7f88a203da734865e627ebe731a5e5e1d7d8f277cfb6e6d047dda"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-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": "8baa31d473e08c74aee8cee13a98fca7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 81668,
            "upload_time": "2024-01-17T18:56:32",
            "upload_time_iso_8601": "2024-01-17T18:56:32.974605Z",
            "url": "https://files.pythonhosted.org/packages/32/4a/606e1e80ff35dffcdf847dfccb63f37224b8b46cd9894b01312ab16acf14/rchitect-0.4.6-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": "df5a393dfbfbea105e089ff50b12771b3f24526b642bc4ccfc3684b7e50a7aa7",
                "md5": "4944762a69952879c1b8c763189b73a6",
                "sha256": "c315755863623710d6ae3fd94059287c7a1c2d94795782a06aadcffb5db502b6"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4944762a69952879c1b8c763189b73a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 60380,
            "upload_time": "2024-01-17T18:56:34",
            "upload_time_iso_8601": "2024-01-17T18:56:34.309876Z",
            "url": "https://files.pythonhosted.org/packages/df/5a/393dfbfbea105e089ff50b12771b3f24526b642bc4ccfc3684b7e50a7aa7/rchitect-0.4.6-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "499f799f1acaaf3b4d75412cda32a9d9d09b28b64ed95c7be112a2e5dcb1ad32",
                "md5": "2a775628a547576486c0d35c78102ce1",
                "sha256": "6843b7c8b52f3af7895e412576277aea17aa54d66b4770980684a4c46d60885e"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a775628a547576486c0d35c78102ce1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 71254,
            "upload_time": "2024-01-17T18:56:35",
            "upload_time_iso_8601": "2024-01-17T18:56:35.548261Z",
            "url": "https://files.pythonhosted.org/packages/49/9f/799f1acaaf3b4d75412cda32a9d9d09b28b64ed95c7be112a2e5dcb1ad32/rchitect-0.4.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed7f0858b901ba0eb32c234e828b47e965160ec050d03c8e53e4d22c6010ecc3",
                "md5": "4c6fad89c57c419f1e6b131fba77c675",
                "sha256": "b34c42d425fe675e29e50ba5b2fbc8694b8a590ff77a332bc29aa8844ddf887f"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4c6fad89c57c419f1e6b131fba77c675",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 81275,
            "upload_time": "2024-01-17T18:56:36",
            "upload_time_iso_8601": "2024-01-17T18:56:36.815422Z",
            "url": "https://files.pythonhosted.org/packages/ed/7f/0858b901ba0eb32c234e828b47e965160ec050d03c8e53e4d22c6010ecc3/rchitect-0.4.6-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": "471468845bed7bf46e276ab34ac7710a0a231ebb45dd276d166a13e4b2fd35d4",
                "md5": "93bc73c7e925fd07e7d94867e7760e33",
                "sha256": "871db672755db3be33a2776d63512b4bf28fefafbe62e058b6bae89397022911"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-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": "93bc73c7e925fd07e7d94867e7760e33",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 81988,
            "upload_time": "2024-01-17T18:56:38",
            "upload_time_iso_8601": "2024-01-17T18:56:38.672575Z",
            "url": "https://files.pythonhosted.org/packages/47/14/68845bed7bf46e276ab34ac7710a0a231ebb45dd276d166a13e4b2fd35d4/rchitect-0.4.6-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": "11b6de6bbe70ea473b609c5a2f593253ef3c5185177f68ee8fe35dcd34d2ade2",
                "md5": "1bf93956b57c0031aa7a39cc9ccd9e39",
                "sha256": "3e1066b1d8438c02a83c1629fc42c9437011ca5ff3fb1d665b43b8fe078252f5"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1bf93956b57c0031aa7a39cc9ccd9e39",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 60376,
            "upload_time": "2024-01-17T18:56:39",
            "upload_time_iso_8601": "2024-01-17T18:56:39.888832Z",
            "url": "https://files.pythonhosted.org/packages/11/b6/de6bbe70ea473b609c5a2f593253ef3c5185177f68ee8fe35dcd34d2ade2/rchitect-0.4.6-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9833d5f4864552104a805ac7e89294fa6bcd274cd4bc6b48cb6cab5ab47a6b17",
                "md5": "7e7c04e16fcbf7e3669461f581dcc172",
                "sha256": "7f46e553a5d4fecc445b5c2852707526d474e65d5ae282acdaa8c2af72a17d14"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e7c04e16fcbf7e3669461f581dcc172",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 71254,
            "upload_time": "2024-01-17T18:56:41",
            "upload_time_iso_8601": "2024-01-17T18:56:41.711468Z",
            "url": "https://files.pythonhosted.org/packages/98/33/d5f4864552104a805ac7e89294fa6bcd274cd4bc6b48cb6cab5ab47a6b17/rchitect-0.4.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80d222a264934b074dcaedc3b441efbf9089066f7c8fa9a439a904c5c3ee8338",
                "md5": "7fd0c276f98743b9d5fc61192acb490c",
                "sha256": "0f86050ec5ffa393e051c11ef227e3f409528734df295a099557c9e07656d46d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7fd0c276f98743b9d5fc61192acb490c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 80955,
            "upload_time": "2024-01-17T18:56:43",
            "upload_time_iso_8601": "2024-01-17T18:56:43.102595Z",
            "url": "https://files.pythonhosted.org/packages/80/d2/22a264934b074dcaedc3b441efbf9089066f7c8fa9a439a904c5c3ee8338/rchitect-0.4.6-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": "2ce6a82d5225c616302b284816383a0986d6f9eda30a5feeb5fcc0b9ace633f5",
                "md5": "e30b5635253e4fd7ddad5d2be1f8690a",
                "sha256": "fb0f5ed548f4c636187bdd2edcc43b843cf75067ac8fc57324012804cee9ae28"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-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": "e30b5635253e4fd7ddad5d2be1f8690a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 81665,
            "upload_time": "2024-01-17T18:56:44",
            "upload_time_iso_8601": "2024-01-17T18:56:44.378884Z",
            "url": "https://files.pythonhosted.org/packages/2c/e6/a82d5225c616302b284816383a0986d6f9eda30a5feeb5fcc0b9ace633f5/rchitect-0.4.6-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": "35bb2f706dac5f8d0379d60d86361f4079deb408a148008302a40f38580d5c99",
                "md5": "8517b7ff94255f180f5fb12230d6e8ae",
                "sha256": "193914d111dd69b79990849372951d93db341cfd37a1ac793e27ffef44347f7d"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8517b7ff94255f180f5fb12230d6e8ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 60373,
            "upload_time": "2024-01-17T18:56:45",
            "upload_time_iso_8601": "2024-01-17T18:56:45.740101Z",
            "url": "https://files.pythonhosted.org/packages/35/bb/2f706dac5f8d0379d60d86361f4079deb408a148008302a40f38580d5c99/rchitect-0.4.6-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02dc346998b2a68047c24dbbe74c422e97faf305724a6fa4e598dafde4593196",
                "md5": "da966205ccd754aa23d0536ef7614b73",
                "sha256": "93974d8d46bf33e088786828e1a10faaefaf30aee8b3e7aeb3468700ca55ba7b"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da966205ccd754aa23d0536ef7614b73",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 71251,
            "upload_time": "2024-01-17T18:56:46",
            "upload_time_iso_8601": "2024-01-17T18:56:46.993762Z",
            "url": "https://files.pythonhosted.org/packages/02/dc/346998b2a68047c24dbbe74c422e97faf305724a6fa4e598dafde4593196/rchitect-0.4.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "489fb0478c713dff89b4f0424a81007e2698b313ae05c0923837ac78b7a36336",
                "md5": "241e12095e3b17dff9b27513101e23ee",
                "sha256": "e976975dd5316eb4a03cd45cb5c9bedafe538c67e487b2387d0fa04b601ccddf"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "241e12095e3b17dff9b27513101e23ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 80956,
            "upload_time": "2024-01-17T18:56:48",
            "upload_time_iso_8601": "2024-01-17T18:56:48.294339Z",
            "url": "https://files.pythonhosted.org/packages/48/9f/b0478c713dff89b4f0424a81007e2698b313ae05c0923837ac78b7a36336/rchitect-0.4.6-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": "c309af682ffb6fe8099576a0aa01b51390374a1c9e6eab9cc9b0a0c7e85dfff1",
                "md5": "216b7712596d29663f46125f6252bc74",
                "sha256": "b9a8a03e9296bf96afc0fc3f87b7ab60da477019989acde403768d049da226f0"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-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": "216b7712596d29663f46125f6252bc74",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 81666,
            "upload_time": "2024-01-17T18:56:49",
            "upload_time_iso_8601": "2024-01-17T18:56:49.528303Z",
            "url": "https://files.pythonhosted.org/packages/c3/09/af682ffb6fe8099576a0aa01b51390374a1c9e6eab9cc9b0a0c7e85dfff1/rchitect-0.4.6-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": "8f18c40a02e21c6f498f2de0e212ec5487d59c25fe7c5288a2eeb5f9574d7136",
                "md5": "3b54ac9cd2f0d0ddbb443494917a2ae8",
                "sha256": "b58d6ff71de060d6b0bb4c38df0d70c25b3f6cad8fbd7aa11b280c18c5f2ee26"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b54ac9cd2f0d0ddbb443494917a2ae8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 60375,
            "upload_time": "2024-01-17T18:56:50",
            "upload_time_iso_8601": "2024-01-17T18:56:50.857900Z",
            "url": "https://files.pythonhosted.org/packages/8f/18/c40a02e21c6f498f2de0e212ec5487d59c25fe7c5288a2eeb5f9574d7136/rchitect-0.4.6-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ba25f476fa801d44050ac04caae731b5470a6461c639a7d5937a9e9e6559c22",
                "md5": "a4b3a783096778d6c34a4e26068417fe",
                "sha256": "82858949fddb86678ff0fc41ca36fb18dc570d2472239786ec6caac4102344b9"
            },
            "downloads": -1,
            "filename": "rchitect-0.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "a4b3a783096778d6c34a4e26068417fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 32693,
            "upload_time": "2024-01-17T18:54:59",
            "upload_time_iso_8601": "2024-01-17T18:54:59.090161Z",
            "url": "https://files.pythonhosted.org/packages/5b/a2/5f476fa801d44050ac04caae731b5470a6461c639a7d5937a9e9e6559c22/rchitect-0.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-17 18:54:59",
    "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.17045s