Name | RTModel JSON |
Version |
2.3
JSON |
| download |
home_page | None |
Summary | RTModel is a tool for microlensing event interpretation. |
upload_time | 2024-12-09 16:42:32 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <4,>=3.7 |
license | GPL-3.0 |
keywords |
microlensing
analysis
and
fitting
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# RTModel
`RTModel` is a package for modeling and interpretation of microlensing events. It uses photometric time series collected from ground and/or space telescopes to propose one or more possible models among the following:
- Single-lens-single-source microlensing (i.e. Paczynski)
- Single-lens-binary-source microlensing (with or without xallarap)
- Binary-lens-single-source microlensing (including planetary microlensing, parallax and orbital motion)
All models include the finite-size of the source(s).
The modeling strategy is based on a grid search in the parameter space for single-lens models, whereas a **template library** for binary-lens models is used including all possible geometries of the source trajectory with respect to the caustics. In addition to this global search, planets are searched where maximal deviations from a Paczynski model occurs.
The library is in the form of a standard Python package that launches specific subprocesses for different tasks. Model fitting is executed in **parallel** exploiting available processors in the machine. The full modeling may take from one to three hours depending on the event and on the machine speed. The results of modeling are given in the form of a text **assessment file**; in addition, **final models** are made available with their parameters and covariance matrices.
`RTModel` also includes a subpackage **`RTModel.plotmodel`** that allows an immediate visualization of models and the possibility to review each individual fitting process as an animated gif.
A second subpackage **`RTModel.templates`** helps the user in the visualization and customization of the template library.
## Attribution
`RTModel` has been created by Valerio Bozza (University of Salerno) as a product of many years of direct experience on microlensing modeling (see [RTModel webpage](http://www.fisica.unisa.it/GravitationAstrophysics/RTModel.htm)).
Any scientific use of `RTModel` should be acknowledged by citing the paper [V.Bozza, A&A 688 (2024) 83](https://ui.adsabs.harvard.edu/abs/2024A%26A...688A..83B/abstract), describing all the algorithms behind the code.
We are grateful to Greg Olmschenk, who revised the package installation in order to make it as cross-platform as possible. We also thank all the users who are providing suggestions, reporting bugs or failures: Etienne Bachelet, David Bennett, Jonathan Brashear, Stela Ishitani Silva, Yiannis Tsapras, Keto Zhang.
## Installation
The easiest way to install `RTModel` is through `pip`.
First clone this repository.
Then go to the repository directory and type
```
pip install .
```
In alternative, you may directly install it from PyPI without cloning this repository:
```
pip install RTModel
```
Currently, `RTModel` works on Linux, Windows and MacOS, requiring Python >= 3.6.
A C++ compiler compatible with C++17 standard is needed for installation.
`RTModel` also incorporates version 4.1 of [`VBMicrolensing`](https://github.com/valboz/VBMicrolensing). You are encouraged to cite the relevant papers listed in that repository as well.
## Documentation
Full [documentation for the use of RTModel](docs/README.md) is available.
In the directory [events](events) we provide some microlensing data on which you may practise with `RTModel`.
A Jupyter notebook for quick start-up is also available in the [jupyter](jupyter) folder.
## License
`RTModel` is freely available to the community under the
GNU Lesser General Public License Version 3 included in this repository.
Raw data
{
"_id": null,
"home_page": null,
"name": "RTModel",
"maintainer": null,
"docs_url": null,
"requires_python": "<4,>=3.7",
"maintainer_email": null,
"keywords": "Microlensing analysis and fitting",
"author": null,
"author_email": "Valerio Bozza <valboz@sa.infn.it>",
"download_url": "https://files.pythonhosted.org/packages/1a/dc/f22a950c00d66a13d4b3ff9cb01e7ff8cf4ba7c666b614e76ba2381f255f/rtmodel-2.3.tar.gz",
"platform": null,
"description": "# RTModel\n`RTModel` is a package for modeling and interpretation of microlensing events. It uses photometric time series collected from ground and/or space telescopes to propose one or more possible models among the following:\n- Single-lens-single-source microlensing (i.e. Paczynski)\n- Single-lens-binary-source microlensing (with or without xallarap)\n- Binary-lens-single-source microlensing (including planetary microlensing, parallax and orbital motion)\n\nAll models include the finite-size of the source(s).\n\nThe modeling strategy is based on a grid search in the parameter space for single-lens models, whereas a **template library** for binary-lens models is used including all possible geometries of the source trajectory with respect to the caustics. In addition to this global search, planets are searched where maximal deviations from a Paczynski model occurs. \n\nThe library is in the form of a standard Python package that launches specific subprocesses for different tasks. Model fitting is executed in **parallel** exploiting available processors in the machine. The full modeling may take from one to three hours depending on the event and on the machine speed. The results of modeling are given in the form of a text **assessment file**; in addition, **final models** are made available with their parameters and covariance matrices.\n\n`RTModel` also includes a subpackage **`RTModel.plotmodel`** that allows an immediate visualization of models and the possibility to review each individual fitting process as an animated gif.\n\nA second subpackage **`RTModel.templates`** helps the user in the visualization and customization of the template library.\n\n## Attribution\n\n`RTModel` has been created by Valerio Bozza (University of Salerno) as a product of many years of direct experience on microlensing modeling (see [RTModel webpage](http://www.fisica.unisa.it/GravitationAstrophysics/RTModel.htm)). \n\nAny scientific use of `RTModel` should be acknowledged by citing the paper [V.Bozza, A&A 688 (2024) 83](https://ui.adsabs.harvard.edu/abs/2024A%26A...688A..83B/abstract), describing all the algorithms behind the code.\n\nWe are grateful to Greg Olmschenk, who revised the package installation in order to make it as cross-platform as possible. We also thank all the users who are providing suggestions, reporting bugs or failures: Etienne Bachelet, David Bennett, Jonathan Brashear, Stela Ishitani Silva, Yiannis Tsapras, Keto Zhang.\n\n## Installation\n\nThe easiest way to install `RTModel` is through `pip`. \n\nFirst clone this repository.\n\nThen go to the repository directory and type\n\n```\npip install .\n```\n\nIn alternative, you may directly install it from PyPI without cloning this repository:\n\n```\npip install RTModel\n```\n\nCurrently, `RTModel` works on Linux, Windows and MacOS, requiring Python >= 3.6. \nA C++ compiler compatible with C++17 standard is needed for installation.\n`RTModel` also incorporates version 4.1 of [`VBMicrolensing`](https://github.com/valboz/VBMicrolensing). You are encouraged to cite the relevant papers listed in that repository as well.\n\n## Documentation\nFull [documentation for the use of RTModel](docs/README.md) is available.\n\nIn the directory [events](events) we provide some microlensing data on which you may practise with `RTModel`.\n\nA Jupyter notebook for quick start-up is also available in the [jupyter](jupyter) folder.\n\n## License\n`RTModel` is freely available to the community under the \nGNU Lesser General Public License Version 3 included in this repository.\n\n\n",
"bugtrack_url": null,
"license": "GPL-3.0",
"summary": "RTModel is a tool for microlensing event interpretation.",
"version": "2.3",
"project_urls": {
"Homepage": "https://github.com/valboz/RTModel"
},
"split_keywords": [
"microlensing",
"analysis",
"and",
"fitting"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c5a0a6667502bec802e33c57208c4c19dad21912d7d390dcaad766d06d5c9cdf",
"md5": "f40d7f378a2e0425693e276e69fa46df",
"sha256": "b692765edb1b8706cc3827ef93a9e881d8ab9dc97281202fd15ab9159f0aaf7e"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f40d7f378a2e0425693e276e69fa46df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 787054,
"upload_time": "2024-12-09T16:34:58",
"upload_time_iso_8601": "2024-12-09T16:34:58.303461Z",
"url": "https://files.pythonhosted.org/packages/c5/a0/a6667502bec802e33c57208c4c19dad21912d7d390dcaad766d06d5c9cdf/rtmodel-2.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bb44b58af9a1b520f99b8a098dd4b0d8f5a8e7da4c584b528afc9fc3706a627",
"md5": "bc015294d6b3f80a0b034a9d1d514c0b",
"sha256": "9e56696e63ffe88f52956cf68c01de766f1666b00049917de68e9734061c09d0"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bc015294d6b3f80a0b034a9d1d514c0b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1646987,
"upload_time": "2024-12-09T16:35:01",
"upload_time_iso_8601": "2024-12-09T16:35:01.227939Z",
"url": "https://files.pythonhosted.org/packages/6b/b4/4b58af9a1b520f99b8a098dd4b0d8f5a8e7da4c584b528afc9fc3706a627/rtmodel-2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c00ea66250f74d267d38bfad77c5886f9d49670b4c0d8b2240556e3bc3db908",
"md5": "0bdcda924132317d2ab28337d3cbd605",
"sha256": "59e62f348af07daa5616e03b6720b1c28a81c5c8f4b7952805ceb8bf69e88d8a"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0bdcda924132317d2ab28337d3cbd605",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1568069,
"upload_time": "2024-12-09T16:35:03",
"upload_time_iso_8601": "2024-12-09T16:35:03.418030Z",
"url": "https://files.pythonhosted.org/packages/8c/00/ea66250f74d267d38bfad77c5886f9d49670b4c0d8b2240556e3bc3db908/rtmodel-2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46a929e0846170b63aa34dd9fdec54dab48e211e356a13ee605a2acaf6dc1c48",
"md5": "8f1d271ccd71a881b0e99932e75fc9d5",
"sha256": "fcc90b5f00301dfb565cfdfb2b2d7c170e29538efadcb20354d725f8209deac2"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8f1d271ccd71a881b0e99932e75fc9d5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 2078003,
"upload_time": "2024-12-09T16:35:08",
"upload_time_iso_8601": "2024-12-09T16:35:08.680225Z",
"url": "https://files.pythonhosted.org/packages/46/a9/29e0846170b63aa34dd9fdec54dab48e211e356a13ee605a2acaf6dc1c48/rtmodel-2.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba1c1042a98130b60e84fae386c0bed4bad70d6f83af58a6c3a466de010f0003",
"md5": "182917be932c7c938574f289a0e71321",
"sha256": "8e65b213bba7348c9176096239e89cd36864bac09994d8dc116aab2c40ad842e"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "182917be932c7c938574f289a0e71321",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1945246,
"upload_time": "2024-12-09T16:35:11",
"upload_time_iso_8601": "2024-12-09T16:35:11.301568Z",
"url": "https://files.pythonhosted.org/packages/ba/1c/1042a98130b60e84fae386c0bed4bad70d6f83af58a6c3a466de010f0003/rtmodel-2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e16f801874049267037ea2d5760b7b35d5c2328886f0c2b64558366fa02c939e",
"md5": "0d990c4a1c29112a579d38b93cc911a3",
"sha256": "ffb3f7faf07e7a8a1dd518df10165cb662162f64773d4ac5f4ed17fa720ac7aa"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "0d990c4a1c29112a579d38b93cc911a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 778211,
"upload_time": "2024-12-09T16:35:13",
"upload_time_iso_8601": "2024-12-09T16:35:13.628405Z",
"url": "https://files.pythonhosted.org/packages/e1/6f/801874049267037ea2d5760b7b35d5c2328886f0c2b64558366fa02c939e/rtmodel-2.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd58b7d48eafd142e0c381000fbbe5f3d43cbec1cfb4612c1983d1adcd3da529",
"md5": "531955585149d94e27cd618a1e952c96",
"sha256": "a1fe4e8f854f8feaafde492954104ae3df1e66023c5ae69a9f5b8bf39fad7c34"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "531955585149d94e27cd618a1e952c96",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 824728,
"upload_time": "2024-12-09T16:35:15",
"upload_time_iso_8601": "2024-12-09T16:35:15.243176Z",
"url": "https://files.pythonhosted.org/packages/dd/58/b7d48eafd142e0c381000fbbe5f3d43cbec1cfb4612c1983d1adcd3da529/rtmodel-2.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81159fb4690e689298ea0c84905147c1f2aaf5f108e9cf8a08fff3f2d16eda9a",
"md5": "55b91ef1337ca0275039f7351c8c65a4",
"sha256": "b948990468c1206d2c1469540d476a707caf2901a4c8ccf38f2ef18835c37459"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "55b91ef1337ca0275039f7351c8c65a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 787056,
"upload_time": "2024-12-09T16:35:16",
"upload_time_iso_8601": "2024-12-09T16:35:16.878306Z",
"url": "https://files.pythonhosted.org/packages/81/15/9fb4690e689298ea0c84905147c1f2aaf5f108e9cf8a08fff3f2d16eda9a/rtmodel-2.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f8fb8e7fb1b1a94374985b37e28f0fa97d81f289081544a90f7c2957483f495",
"md5": "1bfed14e0b8ae6bed93d6e66b076c686",
"sha256": "a06c499f98e16f030d80b00bfe98ea57eb0b904501876c67bad95944037ee342"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1bfed14e0b8ae6bed93d6e66b076c686",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1646985,
"upload_time": "2024-12-09T16:35:18",
"upload_time_iso_8601": "2024-12-09T16:35:18.778801Z",
"url": "https://files.pythonhosted.org/packages/7f/8f/b8e7fb1b1a94374985b37e28f0fa97d81f289081544a90f7c2957483f495/rtmodel-2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc93117ce2e95d332860e1f6ed85f9ca9ac22bbcc75002d6a2f8ed610d29b965",
"md5": "bb590fcc69c1e9523ca8ec52d852b5cd",
"sha256": "649fefcf9c0e466a0db80d7d610eb27f1f7527c98158900f6b6dbe3ba8d421c4"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bb590fcc69c1e9523ca8ec52d852b5cd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1568069,
"upload_time": "2024-12-09T16:35:21",
"upload_time_iso_8601": "2024-12-09T16:35:21.488227Z",
"url": "https://files.pythonhosted.org/packages/dc/93/117ce2e95d332860e1f6ed85f9ca9ac22bbcc75002d6a2f8ed610d29b965/rtmodel-2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77cd21a0bb9cb3f33b05d05ddacb52f7aa918eae0727d2b99e54773f376c4fb7",
"md5": "5cb9a63eeba921a2301c94849cffaedb",
"sha256": "56b509d9ab2596cfe57c688957764513ef56f00a87a0afa603f839a6fb443bff"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5cb9a63eeba921a2301c94849cffaedb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 2078002,
"upload_time": "2024-12-09T16:35:23",
"upload_time_iso_8601": "2024-12-09T16:35:23.683198Z",
"url": "https://files.pythonhosted.org/packages/77/cd/21a0bb9cb3f33b05d05ddacb52f7aa918eae0727d2b99e54773f376c4fb7/rtmodel-2.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5ef8f8ab7b5c63f31a3a560aaf74929941e54db0d7be124fc4ac08adcce16b5",
"md5": "76470f4b1ee7e70d5842f6f4bce76928",
"sha256": "c31d7002528478c5c3920daae7ccb94c0c48445c5c91a8722c7efef9e131f5fc"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "76470f4b1ee7e70d5842f6f4bce76928",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1945246,
"upload_time": "2024-12-09T16:35:29",
"upload_time_iso_8601": "2024-12-09T16:35:29.173898Z",
"url": "https://files.pythonhosted.org/packages/b5/ef/8f8ab7b5c63f31a3a560aaf74929941e54db0d7be124fc4ac08adcce16b5/rtmodel-2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c5d393d9d7d07f9e43bc5420221c15f4c4284137c260aa370fa6f6f97d042ba",
"md5": "4e4a7641db835fc606907a7e1e0dafa7",
"sha256": "1189ef57349495bbcf85a6c54b93ec144c89da796557ca6dbbca90d3b98cec1a"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "4e4a7641db835fc606907a7e1e0dafa7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 778213,
"upload_time": "2024-12-09T16:35:32",
"upload_time_iso_8601": "2024-12-09T16:35:32.041414Z",
"url": "https://files.pythonhosted.org/packages/8c/5d/393d9d7d07f9e43bc5420221c15f4c4284137c260aa370fa6f6f97d042ba/rtmodel-2.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5dbd98d1b6f7f8be092bd9973c7022fefc6f854f83ca4373fad7e7ae015d69ab",
"md5": "db8226682dd7c026fa14259b9ed92b11",
"sha256": "ba163e69fc370082ce0346c0ba182f3d1cea1366158c4aeaa9c3b83b11abcda8"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "db8226682dd7c026fa14259b9ed92b11",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 821429,
"upload_time": "2024-12-09T16:35:33",
"upload_time_iso_8601": "2024-12-09T16:35:33.601825Z",
"url": "https://files.pythonhosted.org/packages/5d/bd/98d1b6f7f8be092bd9973c7022fefc6f854f83ca4373fad7e7ae015d69ab/rtmodel-2.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01a9d5126d9d9f8446361a6769167072ac88d3bcfdd2e4ee3e1a49a0a5f9817b",
"md5": "b634f2b8a913af569779a045a9d9aef1",
"sha256": "b87dba25ed84c97faed17664b7f81f5bdf9a9f3fab1d53f651483b3f275c6120"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b634f2b8a913af569779a045a9d9aef1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 787055,
"upload_time": "2024-12-09T16:35:35",
"upload_time_iso_8601": "2024-12-09T16:35:35.266449Z",
"url": "https://files.pythonhosted.org/packages/01/a9/d5126d9d9f8446361a6769167072ac88d3bcfdd2e4ee3e1a49a0a5f9817b/rtmodel-2.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba45ea55d23a402f293ef783534df89d1f9e6820e0d018b406aeca7c745f6368",
"md5": "8a9ca6a1034b8fd640ae2d01a22e3d9b",
"sha256": "e0cfd0a59f78ce0e46d10826e8cf15bd43a90632d6b111facce37cc31be65346"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8a9ca6a1034b8fd640ae2d01a22e3d9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1646986,
"upload_time": "2024-12-09T16:35:37",
"upload_time_iso_8601": "2024-12-09T16:35:37.463514Z",
"url": "https://files.pythonhosted.org/packages/ba/45/ea55d23a402f293ef783534df89d1f9e6820e0d018b406aeca7c745f6368/rtmodel-2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2ac44a6b022cc1cec856e224b212d71a594c79d1248bf5ad51933f0c21fc442",
"md5": "6625051cd17020ce3056a83c26efaf76",
"sha256": "0ca32813b05e4af4486c27eefd82d4b5fd4afe94dd1eeead6bb34fd09deea447"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6625051cd17020ce3056a83c26efaf76",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1568071,
"upload_time": "2024-12-09T16:35:41",
"upload_time_iso_8601": "2024-12-09T16:35:41.258600Z",
"url": "https://files.pythonhosted.org/packages/b2/ac/44a6b022cc1cec856e224b212d71a594c79d1248bf5ad51933f0c21fc442/rtmodel-2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abb929343b33da98d152d32d9f35bf00c505c5676f3326c02170ca5bd4b47920",
"md5": "cba2b9f3ab7e7ca67239b5f983628d11",
"sha256": "973ecff4d4ea3a2f7dd75279b1fe88d4c47f43da5ac2e6f835184627326ff20b"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "cba2b9f3ab7e7ca67239b5f983628d11",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 2078003,
"upload_time": "2024-12-09T16:35:43",
"upload_time_iso_8601": "2024-12-09T16:35:43.210342Z",
"url": "https://files.pythonhosted.org/packages/ab/b9/29343b33da98d152d32d9f35bf00c505c5676f3326c02170ca5bd4b47920/rtmodel-2.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5991a9905988a2fc595b5a0a982a055eb31aa33214d42545ff4a0414cdc95c73",
"md5": "030e6fe8c6186acdd82d13fa910a996f",
"sha256": "76162ff5ea62e99a329a4006370268c7ac5296596b4f94cfbcae16917113a8ab"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "030e6fe8c6186acdd82d13fa910a996f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1945246,
"upload_time": "2024-12-09T16:35:45",
"upload_time_iso_8601": "2024-12-09T16:35:45.072750Z",
"url": "https://files.pythonhosted.org/packages/59/91/a9905988a2fc595b5a0a982a055eb31aa33214d42545ff4a0414cdc95c73/rtmodel-2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf906e244f175744c6b081c5626f421e84729ccfb1208900f37ad1f95189c722",
"md5": "34b79b27889695d80609021659fd22f7",
"sha256": "3843c00f3536f4f1163ae4c3a56f96e400eb2c31ca83459c64f4cc6b5e045937"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "34b79b27889695d80609021659fd22f7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 778214,
"upload_time": "2024-12-09T16:35:47",
"upload_time_iso_8601": "2024-12-09T16:35:47.131987Z",
"url": "https://files.pythonhosted.org/packages/cf/90/6e244f175744c6b081c5626f421e84729ccfb1208900f37ad1f95189c722/rtmodel-2.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffdfd9bc843684fa49828a3abf90261b2f5e79288852a06660ea254557eecc57",
"md5": "2911c68f81993b02e1ad01fd41267e35",
"sha256": "cabe2ed49b14e107f8d002a18abb1655577a58c754ec795dff594db6fa0dedc1"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "2911c68f81993b02e1ad01fd41267e35",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 824725,
"upload_time": "2024-12-09T16:35:49",
"upload_time_iso_8601": "2024-12-09T16:35:49.372699Z",
"url": "https://files.pythonhosted.org/packages/ff/df/d9bc843684fa49828a3abf90261b2f5e79288852a06660ea254557eecc57/rtmodel-2.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "483ec7966aa192dbc15c55004881ddc52fb5368593638cc116507f2f024c4ca4",
"md5": "e8c37c16f2d74ca85da67f4fd14a3cb0",
"sha256": "69836cc5cef8c5709e67624b22bf8b6d66aaf1403053f2301895cd57c1e63089"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e8c37c16f2d74ca85da67f4fd14a3cb0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 787055,
"upload_time": "2024-12-09T16:35:50",
"upload_time_iso_8601": "2024-12-09T16:35:50.959453Z",
"url": "https://files.pythonhosted.org/packages/48/3e/c7966aa192dbc15c55004881ddc52fb5368593638cc116507f2f024c4ca4/rtmodel-2.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0256d0b24832c962274d562392a24725f35441dacfc25c7cfdd3372d7258674",
"md5": "895a33639f091789dd823784d47394db",
"sha256": "6d3ef9fd66051559e3ffafdcfd78b07f96af1dbfbe5c19cd12c2fd6136a803a9"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "895a33639f091789dd823784d47394db",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1646987,
"upload_time": "2024-12-09T16:35:52",
"upload_time_iso_8601": "2024-12-09T16:35:52.845379Z",
"url": "https://files.pythonhosted.org/packages/a0/25/6d0b24832c962274d562392a24725f35441dacfc25c7cfdd3372d7258674/rtmodel-2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "752faaca6d49932060932e914f649ed9ec43541f1e8b8378a429ec21b7ea5f90",
"md5": "23d7ec4aee574e8d763738857419d115",
"sha256": "8668bc472807387d2c0c1bfa519e902f8b4f13f7437517266f038554f57367ae"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "23d7ec4aee574e8d763738857419d115",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1568068,
"upload_time": "2024-12-09T16:35:54",
"upload_time_iso_8601": "2024-12-09T16:35:54.427307Z",
"url": "https://files.pythonhosted.org/packages/75/2f/aaca6d49932060932e914f649ed9ec43541f1e8b8378a429ec21b7ea5f90/rtmodel-2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72f1a598a1e044e00fc80b981b2252419b11666a793181cafadbb1bea44f8d53",
"md5": "7be7b34b420bda77cfafb64de5efa158",
"sha256": "7b7c60079e742fbb0d4c486f25273a7022ebdd90e968fa3bf50d0d8d13a3fe15"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7be7b34b420bda77cfafb64de5efa158",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 2078002,
"upload_time": "2024-12-09T16:35:56",
"upload_time_iso_8601": "2024-12-09T16:35:56.788502Z",
"url": "https://files.pythonhosted.org/packages/72/f1/a598a1e044e00fc80b981b2252419b11666a793181cafadbb1bea44f8d53/rtmodel-2.3-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d2664d667190def28bd55016da38bf76b2edc42e717b7403e4ff34aade27637",
"md5": "c1db3c73b965cf9b745de7df7d62642c",
"sha256": "ffd57ce95fd9588a5c35df00f42949c248f5c69ba813dfe4ddf3f7dc1587df65"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c1db3c73b965cf9b745de7df7d62642c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1945247,
"upload_time": "2024-12-09T16:35:58",
"upload_time_iso_8601": "2024-12-09T16:35:58.730159Z",
"url": "https://files.pythonhosted.org/packages/7d/26/64d667190def28bd55016da38bf76b2edc42e717b7403e4ff34aade27637/rtmodel-2.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7c55aba17d0cf56dfa17b7aee29c5213a61d9650e732e7a5a9ddf8e9e6ec302",
"md5": "c4265f9d8ee7357e088e7a1acec37256",
"sha256": "74fdf7dad95b541d3dda4ece899f0028625e0e29a892ad11e15991c5ad9a04c9"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "c4265f9d8ee7357e088e7a1acec37256",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 778210,
"upload_time": "2024-12-09T16:36:00",
"upload_time_iso_8601": "2024-12-09T16:36:00.311706Z",
"url": "https://files.pythonhosted.org/packages/c7/c5/5aba17d0cf56dfa17b7aee29c5213a61d9650e732e7a5a9ddf8e9e6ec302/rtmodel-2.3-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4aed16bd4e0f142e35be04be800fbe7a9159447b2b27029c1487eba2e25b908",
"md5": "977cb259ee73e1db01d3a2b062db8d53",
"sha256": "9210d38da421618e18ea8555ab3ea0f74be832f38591033858b2f7583374a404"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "977cb259ee73e1db01d3a2b062db8d53",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 824727,
"upload_time": "2024-12-09T16:36:01",
"upload_time_iso_8601": "2024-12-09T16:36:01.923776Z",
"url": "https://files.pythonhosted.org/packages/a4/ae/d16bd4e0f142e35be04be800fbe7a9159447b2b27029c1487eba2e25b908/rtmodel-2.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e13c4937d9530ddd2b22599788df626cbb9525442148303e25041ede4b2128f",
"md5": "dcc3104b459d9b66127dbe0230b2115d",
"sha256": "1155978b4f53310ebfc8f8bd267a036c6c86a392351dfcd04adcd16312b0e5bb"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dcc3104b459d9b66127dbe0230b2115d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1646988,
"upload_time": "2024-12-09T16:36:03",
"upload_time_iso_8601": "2024-12-09T16:36:03.967384Z",
"url": "https://files.pythonhosted.org/packages/4e/13/c4937d9530ddd2b22599788df626cbb9525442148303e25041ede4b2128f/rtmodel-2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b37a6e47f0d29b35a0aa4869f229aef21c8e650565e2cc22cf18fb1809bbaed1",
"md5": "5e4c38fa54bc42f7cd32b8a91705d5f4",
"sha256": "b283fdcbda56eb85e597113cb6839ac3f1889d54d1d34ecd9110ed2edfbac37f"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5e4c38fa54bc42f7cd32b8a91705d5f4",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1568069,
"upload_time": "2024-12-09T16:36:06",
"upload_time_iso_8601": "2024-12-09T16:36:06.007578Z",
"url": "https://files.pythonhosted.org/packages/b3/7a/6e47f0d29b35a0aa4869f229aef21c8e650565e2cc22cf18fb1809bbaed1/rtmodel-2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a29a05dce5755de56cfd3926ac1f72ef94f85ba49265e7c61fc546f73f8d8e4",
"md5": "e232bd2f8775463c974bea2dfafe46ab",
"sha256": "5de34a480b75e5937198bbb8d9a9a3616e10952fb3b1984b13590dbba36935b0"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e232bd2f8775463c974bea2dfafe46ab",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 2078003,
"upload_time": "2024-12-09T16:36:08",
"upload_time_iso_8601": "2024-12-09T16:36:08.568523Z",
"url": "https://files.pythonhosted.org/packages/9a/29/a05dce5755de56cfd3926ac1f72ef94f85ba49265e7c61fc546f73f8d8e4/rtmodel-2.3-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46705b0dcb7826414785aa0648430573ae68b274a2d2ce454c17424d3d563f13",
"md5": "199997e6336ef7009dfcc69378e7f8bb",
"sha256": "1aa97031321af7667bf3f782ce8d9dbc3a2d69049bffa0f908525f0a34ff01cc"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "199997e6336ef7009dfcc69378e7f8bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1945246,
"upload_time": "2024-12-09T16:36:11",
"upload_time_iso_8601": "2024-12-09T16:36:11.111505Z",
"url": "https://files.pythonhosted.org/packages/46/70/5b0dcb7826414785aa0648430573ae68b274a2d2ce454c17424d3d563f13/rtmodel-2.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b27032390c00622645ab095d95559c4a2575a87eceb267f995f00f261092865",
"md5": "b5196344dfc117794d20271efd1f4fb2",
"sha256": "83659a944fda5c40773c54506a2e414f1ef581c4aedc7b3ed1ae2a5e01370b4c"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "b5196344dfc117794d20271efd1f4fb2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 778217,
"upload_time": "2024-12-09T16:36:12",
"upload_time_iso_8601": "2024-12-09T16:36:12.953215Z",
"url": "https://files.pythonhosted.org/packages/5b/27/032390c00622645ab095d95559c4a2575a87eceb267f995f00f261092865/rtmodel-2.3-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eccea0eaeb36c29a927686a489e12690c510e2b4a3c6c4ce181265aef4403399",
"md5": "afe0095b9122efbe7db1308bb47134a7",
"sha256": "edc53589a949bb305a020474000129f21df9ff48ef209dfab4d54c2622dad556"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "afe0095b9122efbe7db1308bb47134a7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 824725,
"upload_time": "2024-12-09T16:36:15",
"upload_time_iso_8601": "2024-12-09T16:36:15.187936Z",
"url": "https://files.pythonhosted.org/packages/ec/ce/a0eaeb36c29a927686a489e12690c510e2b4a3c6c4ce181265aef4403399/rtmodel-2.3-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13f8a9d21ea7d977d3613c6c9acb39b74ff4ebd0ecb70affe66382697d2e136d",
"md5": "ad08771b128a6641f537f4ae3867c862",
"sha256": "8155c5cdf96fb81a3deba79fbd91420a91c01fe8a250f4277881b888c781d13c"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ad08771b128a6641f537f4ae3867c862",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 787054,
"upload_time": "2024-12-09T16:36:16",
"upload_time_iso_8601": "2024-12-09T16:36:16.882210Z",
"url": "https://files.pythonhosted.org/packages/13/f8/a9d21ea7d977d3613c6c9acb39b74ff4ebd0ecb70affe66382697d2e136d/rtmodel-2.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09578904d7d93c7b6890cd2f8f765d3104d06120c5cfe42c07585a32560a11b8",
"md5": "a2849c52b85e6b4302593f21241bd89c",
"sha256": "7dd2d06adf8c126661657d041ca2b47513710394ea9f0265c510e6afe9abb5a9"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a2849c52b85e6b4302593f21241bd89c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1646987,
"upload_time": "2024-12-09T16:36:18",
"upload_time_iso_8601": "2024-12-09T16:36:18.748122Z",
"url": "https://files.pythonhosted.org/packages/09/57/8904d7d93c7b6890cd2f8f765d3104d06120c5cfe42c07585a32560a11b8/rtmodel-2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0884f72f8cf9c522b4008714cd2eb220b0b549add0f3312d82506c56f3b9c380",
"md5": "e308540803a90ae1b08b41badd9d3a2c",
"sha256": "0e4ed9bb6879917c5c77aa1eecd8c04a5de2570aac29b09918b9a3bf853f9a51"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e308540803a90ae1b08b41badd9d3a2c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1568068,
"upload_time": "2024-12-09T16:36:20",
"upload_time_iso_8601": "2024-12-09T16:36:20.537765Z",
"url": "https://files.pythonhosted.org/packages/08/84/f72f8cf9c522b4008714cd2eb220b0b549add0f3312d82506c56f3b9c380/rtmodel-2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "100d3cfea480d162e660d92896ce28cd7595816f0d4b6aac59b19335cb634a83",
"md5": "814f52965fd7df7dbf9d602f864259ce",
"sha256": "4a90b5c965a258e68c86e11b957e6be67829799241201ea28381f2456a700b00"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "814f52965fd7df7dbf9d602f864259ce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 2078001,
"upload_time": "2024-12-09T16:36:22",
"upload_time_iso_8601": "2024-12-09T16:36:22.510035Z",
"url": "https://files.pythonhosted.org/packages/10/0d/3cfea480d162e660d92896ce28cd7595816f0d4b6aac59b19335cb634a83/rtmodel-2.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b4dc67ef9f81192f010e635f5bdcb7953e36629ce8dfcf0d1bb17743ae10bca",
"md5": "84163596fad24ed63cead6d1f8699dad",
"sha256": "a8c59813cc2b7bacd3160c6b8abfcb26ac16b2348f655f302567043182ff5393"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "84163596fad24ed63cead6d1f8699dad",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1945245,
"upload_time": "2024-12-09T16:36:24",
"upload_time_iso_8601": "2024-12-09T16:36:24.423141Z",
"url": "https://files.pythonhosted.org/packages/3b/4d/c67ef9f81192f010e635f5bdcb7953e36629ce8dfcf0d1bb17743ae10bca/rtmodel-2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e7db309b7ccfc1cffb894d6450f5a420bf33a7fcfc26cd0d271e79033527559",
"md5": "6a7e595c0391243f39be529503744af4",
"sha256": "22701d25b0b879fea3141a661f570abd58a8c0d7b19a87bbc16e594108cea442"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "6a7e595c0391243f39be529503744af4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 778215,
"upload_time": "2024-12-09T16:36:27",
"upload_time_iso_8601": "2024-12-09T16:36:27.347493Z",
"url": "https://files.pythonhosted.org/packages/8e/7d/b309b7ccfc1cffb894d6450f5a420bf33a7fcfc26cd0d271e79033527559/rtmodel-2.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68ede1dec74f97d06c44c61021bfa89879d57c186aa8542116afd817c2b4e446",
"md5": "1f6826f9083795cee50fca296997be29",
"sha256": "2c7768fc0a6dc5c38a4ef7cf01da7498e601290819fe38364e6134cf18c037fe"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "1f6826f9083795cee50fca296997be29",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 824729,
"upload_time": "2024-12-09T16:36:29",
"upload_time_iso_8601": "2024-12-09T16:36:29.762963Z",
"url": "https://files.pythonhosted.org/packages/68/ed/e1dec74f97d06c44c61021bfa89879d57c186aa8542116afd817c2b4e446/rtmodel-2.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1177175baa6c27d66b0363a7d4ab7112d8f0ab6d28068fb99497d90d8c3959ab",
"md5": "5ae5148e0fb7530970caa54ce7a4bf6c",
"sha256": "debdd29ad97bd27b863bc8c94bb2327d4c2c17fe66b8521e08cf62783a7b79af"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5ae5148e0fb7530970caa54ce7a4bf6c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 787054,
"upload_time": "2024-12-09T16:36:32",
"upload_time_iso_8601": "2024-12-09T16:36:32.006124Z",
"url": "https://files.pythonhosted.org/packages/11/77/175baa6c27d66b0363a7d4ab7112d8f0ab6d28068fb99497d90d8c3959ab/rtmodel-2.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02bd89e895b06cada3276bcea66da7f162ddea682e21dc6f2ba7618b9d71ad58",
"md5": "32c731b5aba2ef2035fb917e0e07ee94",
"sha256": "8cde96a95ab0943c021705ad98c427549f8e3ec77ad8f63c7a5d0964336f1cbf"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "32c731b5aba2ef2035fb917e0e07ee94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1646987,
"upload_time": "2024-12-09T16:36:33",
"upload_time_iso_8601": "2024-12-09T16:36:33.722475Z",
"url": "https://files.pythonhosted.org/packages/02/bd/89e895b06cada3276bcea66da7f162ddea682e21dc6f2ba7618b9d71ad58/rtmodel-2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db6a96d3b39f89ed544c622c4d7ebf3ec3d2781ae3006617f628a0012a9c34ba",
"md5": "698b2c506c9d04618b4c4e6ac3e479a6",
"sha256": "9bc5a5358b334ba1f1f3989da6d6130917532c59a8dd5028710c4df53cfe627a"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "698b2c506c9d04618b4c4e6ac3e479a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1568068,
"upload_time": "2024-12-09T16:36:36",
"upload_time_iso_8601": "2024-12-09T16:36:36.198244Z",
"url": "https://files.pythonhosted.org/packages/db/6a/96d3b39f89ed544c622c4d7ebf3ec3d2781ae3006617f628a0012a9c34ba/rtmodel-2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5f315f54307cda714380d56892211979b0c4e5aba746f9f4060ffc8a6a28258",
"md5": "afc551f6b03a1b49b18db3531552ed43",
"sha256": "85c7fcb4adc2fdafb0250ff81c8034758bb737e83a029ab3e1eaf11f1070cee7"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "afc551f6b03a1b49b18db3531552ed43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 2078003,
"upload_time": "2024-12-09T16:36:38",
"upload_time_iso_8601": "2024-12-09T16:36:38.015557Z",
"url": "https://files.pythonhosted.org/packages/c5/f3/15f54307cda714380d56892211979b0c4e5aba746f9f4060ffc8a6a28258/rtmodel-2.3-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1808a50537363a1e435571526b525cfd77a8608c9962433bf410ef7a12cd1145",
"md5": "33060ca2dcdfaefa566ed0f6fd0ab0aa",
"sha256": "d2588a87038f3080b66018726aafd688d3b128e64ddbc0a84e0cd24c50d090c7"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "33060ca2dcdfaefa566ed0f6fd0ab0aa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1945243,
"upload_time": "2024-12-09T16:36:39",
"upload_time_iso_8601": "2024-12-09T16:36:39.890108Z",
"url": "https://files.pythonhosted.org/packages/18/08/a50537363a1e435571526b525cfd77a8608c9962433bf410ef7a12cd1145/rtmodel-2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbf7b7a2788fb5f6cc4b909007779382bd88d8fcfa02f19480fb444fb5f1de10",
"md5": "6ecf7b2700d37bdc7652dbae250b9744",
"sha256": "d43bb52b3e3bfd2cc4cb7dfcb1ab287691d1ec1ca64d8adcd4a42af12c086c90"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6ecf7b2700d37bdc7652dbae250b9744",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 778214,
"upload_time": "2024-12-09T16:36:41",
"upload_time_iso_8601": "2024-12-09T16:36:41.464963Z",
"url": "https://files.pythonhosted.org/packages/fb/f7/b7a2788fb5f6cc4b909007779382bd88d8fcfa02f19480fb444fb5f1de10/rtmodel-2.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6aef4391a25edc5926e08aa22076bfab300f4b5f1191221a2bda46ccb4f972d0",
"md5": "4f71b2ea7716ca1ba8ff539529bd9c57",
"sha256": "0cd6ef641aa921fa5e8aed7f39f940b5dff755fcf74a52bafa9905ef96d35874"
},
"downloads": -1,
"filename": "rtmodel-2.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f71b2ea7716ca1ba8ff539529bd9c57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 824730,
"upload_time": "2024-12-09T16:36:43",
"upload_time_iso_8601": "2024-12-09T16:36:43.639720Z",
"url": "https://files.pythonhosted.org/packages/6a/ef/4391a25edc5926e08aa22076bfab300f4b5f1191221a2bda46ccb4f972d0/rtmodel-2.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86d5e23290d88d762a95bc6a361c37947c687fbb7cd62e9f235c2de5ad040cdb",
"md5": "be6783ccc9ca8ea072fbc0afba16162f",
"sha256": "8155f840f8fa04cd2f0e7930dce1da9bb1082c0ee5fd68cf47357dcea9da3635"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "be6783ccc9ca8ea072fbc0afba16162f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 787061,
"upload_time": "2024-12-09T16:36:45",
"upload_time_iso_8601": "2024-12-09T16:36:45.728180Z",
"url": "https://files.pythonhosted.org/packages/86/d5/e23290d88d762a95bc6a361c37947c687fbb7cd62e9f235c2de5ad040cdb/rtmodel-2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "661fa3f564faeec7a3f4fe320ca36aaa205b4a3872045d90c37c92cd8e7ca536",
"md5": "a88d925ad5dca7b6e2529d1eafc8002b",
"sha256": "91ac7ec5f554c969000d5507fa82ed310feb174e2d3771f95f46dd948bfbd3a9"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a88d925ad5dca7b6e2529d1eafc8002b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 1646995,
"upload_time": "2024-12-09T16:36:47",
"upload_time_iso_8601": "2024-12-09T16:36:47.496751Z",
"url": "https://files.pythonhosted.org/packages/66/1f/a3f564faeec7a3f4fe320ca36aaa205b4a3872045d90c37c92cd8e7ca536/rtmodel-2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27e325b9e70c59cd6471d670d1df38cc3c952b1e254d44fd68176e3b8014faa2",
"md5": "0f2c2d019d2e9cd5fb034ff2b4305305",
"sha256": "bdb45e070a914ac16622f2dcdd0929f75b3073d6cd5e94f01d7c93c665aadb2b"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0f2c2d019d2e9cd5fb034ff2b4305305",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 1568075,
"upload_time": "2024-12-09T16:36:49",
"upload_time_iso_8601": "2024-12-09T16:36:49.081618Z",
"url": "https://files.pythonhosted.org/packages/27/e3/25b9e70c59cd6471d670d1df38cc3c952b1e254d44fd68176e3b8014faa2/rtmodel-2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f4536660f2c0f71770c3e5c3dbcaa3cab91444a42c5d90f0b6b821a9a9f99d9",
"md5": "9cdf24f99dc6a25700aa664ccbb82bc9",
"sha256": "b474efb56f899a29f2e566388c2e3a7b0709029990be6361bd9ae04759d45cc7"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "9cdf24f99dc6a25700aa664ccbb82bc9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4,>=3.7",
"size": 824734,
"upload_time": "2024-12-09T16:36:51",
"upload_time_iso_8601": "2024-12-09T16:36:51.201764Z",
"url": "https://files.pythonhosted.org/packages/8f/45/36660f2c0f71770c3e5c3dbcaa3cab91444a42c5d90f0b6b821a9a9f99d9/rtmodel-2.3-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83b5823bab0956f6f28a6cd45132deb60d185c2364b345c29dcf9766ee48789c",
"md5": "0acafce38d875b8ed5509dce50302a76",
"sha256": "d1c59901db3b02d6da49cb2e7e62bed9f1d323538593037dcb6422750037e6d3"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0acafce38d875b8ed5509dce50302a76",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 1646993,
"upload_time": "2024-12-09T16:36:52",
"upload_time_iso_8601": "2024-12-09T16:36:52.787264Z",
"url": "https://files.pythonhosted.org/packages/83/b5/823bab0956f6f28a6cd45132deb60d185c2364b345c29dcf9766ee48789c/rtmodel-2.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1c685fe40c592f3a530299c57836b860cf4c61428dc60d6b22ab93eb8d4b8ed",
"md5": "1a571f9c0b838218f331e2db35198af7",
"sha256": "8b9ec072f7c6e24a60ea35d0ffb5cf262c37ab27d784ec5e774e73e98f9b275a"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1a571f9c0b838218f331e2db35198af7",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 1568072,
"upload_time": "2024-12-09T16:36:54",
"upload_time_iso_8601": "2024-12-09T16:36:54.648724Z",
"url": "https://files.pythonhosted.org/packages/a1/c6/85fe40c592f3a530299c57836b860cf4c61428dc60d6b22ab93eb8d4b8ed/rtmodel-2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1aff9eb8bbccced50f97dac38aa1ed943d49ad47ac1e367e5d3914dcb93d6ba",
"md5": "90a61253be3fc19e3bbe3863c931e602",
"sha256": "77f3e4f1c8a293426b919b4f43c7c6252b70b937feaf07793179bd7e97cfaaa7"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "90a61253be3fc19e3bbe3863c931e602",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": "<4,>=3.7",
"size": 824732,
"upload_time": "2024-12-09T16:36:56",
"upload_time_iso_8601": "2024-12-09T16:36:56.942984Z",
"url": "https://files.pythonhosted.org/packages/c1/af/f9eb8bbccced50f97dac38aa1ed943d49ad47ac1e367e5d3914dcb93d6ba/rtmodel-2.3-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3506ab94d7f7de42f05cafba6027a0b54dbab749b7974268a4f0716fa0a465b5",
"md5": "c12e4f23b3860b62ea5d83d0a9eb5eb3",
"sha256": "a9d091814a3babdb43619a9e7d8df7a0707527df2c6835ab8632fdc0532c5429"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c12e4f23b3860b62ea5d83d0a9eb5eb3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 787062,
"upload_time": "2024-12-09T16:36:58",
"upload_time_iso_8601": "2024-12-09T16:36:58.573238Z",
"url": "https://files.pythonhosted.org/packages/35/06/ab94d7f7de42f05cafba6027a0b54dbab749b7974268a4f0716fa0a465b5/rtmodel-2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47941d22097c11e38a58a89c9d6383a4fd6bacebb0f2e7d60f0b07db3e8df3ff",
"md5": "8cab05bf329a025d6b3614dd3f5e7377",
"sha256": "0784c8d9cf6787655c402e2f72a767645281d285acea946e79db8f4bb612fa97"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8cab05bf329a025d6b3614dd3f5e7377",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 1646995,
"upload_time": "2024-12-09T16:37:00",
"upload_time_iso_8601": "2024-12-09T16:37:00.330492Z",
"url": "https://files.pythonhosted.org/packages/47/94/1d22097c11e38a58a89c9d6383a4fd6bacebb0f2e7d60f0b07db3e8df3ff/rtmodel-2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7021b06f5de066e02a2ca2c3b94ee3f496b89e47ef337f4c368e70371eda68f6",
"md5": "0559a75eb64bd5d22e5b2e047f9a9a7a",
"sha256": "8da21461ababc5e140d7a7ef3116df2b98ed21809e48295e926fb53cf5c0f1a9"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0559a75eb64bd5d22e5b2e047f9a9a7a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 1568076,
"upload_time": "2024-12-09T16:37:02",
"upload_time_iso_8601": "2024-12-09T16:37:02.011896Z",
"url": "https://files.pythonhosted.org/packages/70/21/b06f5de066e02a2ca2c3b94ee3f496b89e47ef337f4c368e70371eda68f6/rtmodel-2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7231932755acc4e22006c00560b8408135fa5b93633d148527e4e0d145c98484",
"md5": "d23f33813acd3eb8901ce28ab7987e93",
"sha256": "b0c022837459ed122e2bd9bbb794e242badffa7ee335bdd2553c9910f3c7eafb"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "d23f33813acd3eb8901ce28ab7987e93",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": "<4,>=3.7",
"size": 824733,
"upload_time": "2024-12-09T16:37:03",
"upload_time_iso_8601": "2024-12-09T16:37:03.675436Z",
"url": "https://files.pythonhosted.org/packages/72/31/932755acc4e22006c00560b8408135fa5b93633d148527e4e0d145c98484/rtmodel-2.3-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "feb03db794b97b93e6ee3d5bfab7c14e36955015344f56ad9ca71d13a65d789f",
"md5": "18f81b7d2d7a1790c1f8b48ec94b7c28",
"sha256": "be8a4a2083083b7f7d576fe95294585f82793bb00e14eb956d47575a352db4a1"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "18f81b7d2d7a1790c1f8b48ec94b7c28",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 787063,
"upload_time": "2024-12-09T16:37:05",
"upload_time_iso_8601": "2024-12-09T16:37:05.320737Z",
"url": "https://files.pythonhosted.org/packages/fe/b0/3db794b97b93e6ee3d5bfab7c14e36955015344f56ad9ca71d13a65d789f/rtmodel-2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd8666cfa5ee9c986ec21011c768bce1c33382d4c73028c0c45f0333a27aa9f5",
"md5": "7848f1d865c3fa1201d8f71f00484687",
"sha256": "ff45494bd56fe327b14e6b855b26ea01104e21d0baf6d4df29172df61530f29e"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7848f1d865c3fa1201d8f71f00484687",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 1646994,
"upload_time": "2024-12-09T16:37:06",
"upload_time_iso_8601": "2024-12-09T16:37:06.917279Z",
"url": "https://files.pythonhosted.org/packages/dd/86/66cfa5ee9c986ec21011c768bce1c33382d4c73028c0c45f0333a27aa9f5/rtmodel-2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00aa32831e17840d33f12a3c141c1ee66d87ce15d393b9b0fc6718a7de13ea12",
"md5": "58abe506eaaf6a90533c6a3a391dc382",
"sha256": "e965cbd9eed8a90c81c2c3367a1b186e86cd1b06c6d52b68c91a9803307d775f"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "58abe506eaaf6a90533c6a3a391dc382",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 1568075,
"upload_time": "2024-12-09T16:37:08",
"upload_time_iso_8601": "2024-12-09T16:37:08.791592Z",
"url": "https://files.pythonhosted.org/packages/00/aa/32831e17840d33f12a3c141c1ee66d87ce15d393b9b0fc6718a7de13ea12/rtmodel-2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e078aa2177e21cc2bc2359e83dc8a903cce28b6bba52ba1faf99681f17617b8c",
"md5": "a62c6ea32b702d501d5ecbe867602443",
"sha256": "cd47398cfd3e3df046eae49d0c200a0f469e19c425dfa398f93b4b54d8856633"
},
"downloads": -1,
"filename": "rtmodel-2.3-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "a62c6ea32b702d501d5ecbe867602443",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4,>=3.7",
"size": 824733,
"upload_time": "2024-12-09T16:37:10",
"upload_time_iso_8601": "2024-12-09T16:37:10.662309Z",
"url": "https://files.pythonhosted.org/packages/e0/78/aa2177e21cc2bc2359e83dc8a903cce28b6bba52ba1faf99681f17617b8c/rtmodel-2.3-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1adcf22a950c00d66a13d4b3ff9cb01e7ff8cf4ba7c666b614e76ba2381f255f",
"md5": "5aa6dca6c62549cad8ffbcfc74d1174b",
"sha256": "af8b4f1ad472eff50c2cf803d6aecc8e3efa9ece3389c0ea0b96ea05584fd34c"
},
"downloads": -1,
"filename": "rtmodel-2.3.tar.gz",
"has_sig": false,
"md5_digest": "5aa6dca6c62549cad8ffbcfc74d1174b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.7",
"size": 8165909,
"upload_time": "2024-12-09T16:42:32",
"upload_time_iso_8601": "2024-12-09T16:42:32.348646Z",
"url": "https://files.pythonhosted.org/packages/1a/dc/f22a950c00d66a13d4b3ff9cb01e7ff8cf4ba7c666b614e76ba2381f255f/rtmodel-2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 16:42:32",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "valboz",
"github_project": "RTModel",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "rtmodel"
}