Name | RTModel JSON |
Version |
3.1
JSON |
| download |
home_page | None |
Summary | RTModel is a tool for microlensing event interpretation. |
upload_time | 2025-08-22 10:33:41 |
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 and/or astrometric 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](https://projects.phys.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, Laura Salmeri, Stela Ishitani Silva, Yiannis Tsapras, Sigfried Vanaverbeke, 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.7.
A C++ compiler compatible with C++17 standard is needed for installation.
`RTModel` uses [`VBMicrolensing`](https://github.com/valboz/VBMicrolensing) for all calculations. 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/f9/dd/408614abdf22a28d2e4b0bca229ad81ada9c0cbb96bf4b43f548fd22050f/rtmodel-3.1.tar.gz",
"platform": null,
"description": "# RTModel\n`RTModel` is a package for modeling and interpretation of microlensing events. It uses photometric and/or astrometric 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](https://projects.phys.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, Laura Salmeri, Stela Ishitani Silva, Yiannis Tsapras, Sigfried Vanaverbeke, 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.7. \nA C++ compiler compatible with C++17 standard is needed for installation.\n`RTModel` uses [`VBMicrolensing`](https://github.com/valboz/VBMicrolensing) for all calculations. 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": "3.1",
"project_urls": {
"Homepage": "https://github.com/valboz/RTModel"
},
"split_keywords": [
"microlensing",
"analysis",
"and",
"fitting"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "619f30aca737bf1b9f1e3be1e964d5d51183d5f48efc4d2806f50e4535ccb3aa",
"md5": "f6384d9df6b572a00ffae3ab8018eb09",
"sha256": "27a093f0ca96cbc1f141791e27fc30dea06283328f7cbcea8100ca9d54564f57"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "f6384d9df6b572a00ffae3ab8018eb09",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1378896,
"upload_time": "2025-08-22T10:31:40",
"upload_time_iso_8601": "2025-08-22T10:31:40.031968Z",
"url": "https://files.pythonhosted.org/packages/61/9f/30aca737bf1b9f1e3be1e964d5d51183d5f48efc4d2806f50e4535ccb3aa/rtmodel-3.1-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02fb169071805cf6dc48af8071ee8c8e5c62dbeb51a1f774b2141e1db334693e",
"md5": "dc66720eb132fb9fe3401e0ae4c4d732",
"sha256": "25c27f8ebc8d2e972b94cf3cac79b4de4aa4b1ca6252ca274a5d297c2fcb630d"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dc66720eb132fb9fe3401e0ae4c4d732",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1331994,
"upload_time": "2025-08-22T10:31:42",
"upload_time_iso_8601": "2025-08-22T10:31:42.116865Z",
"url": "https://files.pythonhosted.org/packages/02/fb/169071805cf6dc48af8071ee8c8e5c62dbeb51a1f774b2141e1db334693e/rtmodel-3.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ac2b3410c0143f59e0bb5a801808ebcb14d5ba5e4d3be71db6d70828d699f0b",
"md5": "a28cc2a08304b8276f499bb2ab9275eb",
"sha256": "66f3c2fdb05281b03ba29b372eee72fb77f55c53d9fd042c4cee09a053a0be73"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a28cc2a08304b8276f499bb2ab9275eb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 2189486,
"upload_time": "2025-08-22T10:31:44",
"upload_time_iso_8601": "2025-08-22T10:31:44.531053Z",
"url": "https://files.pythonhosted.org/packages/2a/c2/b3410c0143f59e0bb5a801808ebcb14d5ba5e4d3be71db6d70828d699f0b/rtmodel-3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "067dcf2322cd87fef3e83408f0ebbe8ae4892d30590e1601e388ff40f8a1d696",
"md5": "a41d7001902a83f1ae04167bfbf12270",
"sha256": "b1bd080ab0c6109859b28114fc62ea846f529f82085a2c87e0e60b0f2e038939"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a41d7001902a83f1ae04167bfbf12270",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 2114044,
"upload_time": "2025-08-22T10:31:46",
"upload_time_iso_8601": "2025-08-22T10:31:46.568453Z",
"url": "https://files.pythonhosted.org/packages/06/7d/cf2322cd87fef3e83408f0ebbe8ae4892d30590e1601e388ff40f8a1d696/rtmodel-3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9892648c9305c90e9c70e45d6a803fd612c3e9fe55c88fd0d2908abace6d967",
"md5": "da18cbe20af66fa2b462c202cbda0bc2",
"sha256": "7dd474649b91acef49950c49fc1a8143d258dc0fda46da1d4ff90e1373c99bd7"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "da18cbe20af66fa2b462c202cbda0bc2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 2625824,
"upload_time": "2025-08-22T10:31:48",
"upload_time_iso_8601": "2025-08-22T10:31:48.972263Z",
"url": "https://files.pythonhosted.org/packages/d9/89/2648c9305c90e9c70e45d6a803fd612c3e9fe55c88fd0d2908abace6d967/rtmodel-3.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db8d65a3624d38d3fe81172024127692788e46f7c09bd748e31eafd511cdd19a",
"md5": "31ee621f3c7d10b1b60580ef84914fd9",
"sha256": "fa79ec6b2e11a90e5209bca6345a09facb2adbc0ceb80741a0995e06213819ee"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "31ee621f3c7d10b1b60580ef84914fd9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 2490509,
"upload_time": "2025-08-22T10:31:51",
"upload_time_iso_8601": "2025-08-22T10:31:51.164401Z",
"url": "https://files.pythonhosted.org/packages/db/8d/65a3624d38d3fe81172024127692788e46f7c09bd748e31eafd511cdd19a/rtmodel-3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92c0432625ae936ea332455999835181aff0d6d4bd4b7595aaa3beb5d8f30543",
"md5": "bc6e3c3ff733bccfaf1e07402c6ad1ef",
"sha256": "bbb75e290fe0bc5769dc4d78296a4e9aac1d0eba09a9483d5b9c7474f4d7fad0"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "bc6e3c3ff733bccfaf1e07402c6ad1ef",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1334147,
"upload_time": "2025-08-22T10:31:52",
"upload_time_iso_8601": "2025-08-22T10:31:52.857046Z",
"url": "https://files.pythonhosted.org/packages/92/c0/432625ae936ea332455999835181aff0d6d4bd4b7595aaa3beb5d8f30543/rtmodel-3.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed34271399e46a6c2dfac2ae89a2fd779515e6e654a4163c9d4ad1ae6ae79c22",
"md5": "0717608a9b098d855aca632ef6a6f891",
"sha256": "5693e7e580fb3ee621d5c80340e4af4a39f3ebbb8855027189f9faf7ea86698b"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "0717608a9b098d855aca632ef6a6f891",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4,>=3.7",
"size": 1367928,
"upload_time": "2025-08-22T10:31:54",
"upload_time_iso_8601": "2025-08-22T10:31:54.424956Z",
"url": "https://files.pythonhosted.org/packages/ed/34/271399e46a6c2dfac2ae89a2fd779515e6e654a4163c9d4ad1ae6ae79c22/rtmodel-3.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30ecad7547d626fff39910e4282363232a47b7559e502a405047030c07d1b413",
"md5": "4a508e579bcfb981f9cb25ded7acc480",
"sha256": "11a780bc71332f260cb762aa42acf7294f0078c69cf297f82976ba77d7f2eb11"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "4a508e579bcfb981f9cb25ded7acc480",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1378896,
"upload_time": "2025-08-22T10:31:58",
"upload_time_iso_8601": "2025-08-22T10:31:58.528782Z",
"url": "https://files.pythonhosted.org/packages/30/ec/ad7547d626fff39910e4282363232a47b7559e502a405047030c07d1b413/rtmodel-3.1-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "616e62e7f505d0c98d4eae595863155144aca6c0692e9c15915568e51ed485ae",
"md5": "465b702b7a6dcee94ec228078b21f368",
"sha256": "322ea0b3253f48b37bcf67a2e072e9d30052ceb39a09b08cb54308270c28a5a3"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "465b702b7a6dcee94ec228078b21f368",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1331995,
"upload_time": "2025-08-22T10:32:00",
"upload_time_iso_8601": "2025-08-22T10:32:00.129575Z",
"url": "https://files.pythonhosted.org/packages/61/6e/62e7f505d0c98d4eae595863155144aca6c0692e9c15915568e51ed485ae/rtmodel-3.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce61a6571d0365343d884f76404118b16e52300686ab3d0a280fe6e0d4ce488a",
"md5": "1b2ddc22d556f1496624c94362d52d0f",
"sha256": "11e359f33a4c13b8928963dd80ca10e198bc37d7069041e00d4036cbd1f48a5b"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1b2ddc22d556f1496624c94362d52d0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 2189486,
"upload_time": "2025-08-22T10:32:02",
"upload_time_iso_8601": "2025-08-22T10:32:02.393986Z",
"url": "https://files.pythonhosted.org/packages/ce/61/a6571d0365343d884f76404118b16e52300686ab3d0a280fe6e0d4ce488a/rtmodel-3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e744ffed033d9b60e6807f4029fcddd0e27d9e7f9614ba3ad66a6ef81ab29798",
"md5": "702ccbd9bb0e4d179d838133e554e14f",
"sha256": "92b9fed3e5cae790609fbdd1ada93fd3b618a3f1ff440c7fc4a7a9fc01890a6a"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "702ccbd9bb0e4d179d838133e554e14f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 2114043,
"upload_time": "2025-08-22T10:32:04",
"upload_time_iso_8601": "2025-08-22T10:32:04.333001Z",
"url": "https://files.pythonhosted.org/packages/e7/44/ffed033d9b60e6807f4029fcddd0e27d9e7f9614ba3ad66a6ef81ab29798/rtmodel-3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bca446fdeab2769414c08cbc4d61541c20d5ee492ece9ee464a886c8df01c9c0",
"md5": "49e7eb5f6457651af2cf049055e786b7",
"sha256": "5d9f728e440cba2579d941854ffa64e6be66062e8e0afbeb57f86cc5f75eb5ec"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "49e7eb5f6457651af2cf049055e786b7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 2625822,
"upload_time": "2025-08-22T10:32:07",
"upload_time_iso_8601": "2025-08-22T10:32:07.033886Z",
"url": "https://files.pythonhosted.org/packages/bc/a4/46fdeab2769414c08cbc4d61541c20d5ee492ece9ee464a886c8df01c9c0/rtmodel-3.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb27fef1d593ed4f12dbe5950ae37ab72e1d4417df304cfd6ba8ba2c93e25c29",
"md5": "6f77201cff1c0963ebb764c767f81bb8",
"sha256": "b9a79b1e66e7a1bceb0064e9816c9791debd4649dc8afa9b494bf1e7e4e25072"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6f77201cff1c0963ebb764c767f81bb8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 2490509,
"upload_time": "2025-08-22T10:32:09",
"upload_time_iso_8601": "2025-08-22T10:32:09.310060Z",
"url": "https://files.pythonhosted.org/packages/bb/27/fef1d593ed4f12dbe5950ae37ab72e1d4417df304cfd6ba8ba2c93e25c29/rtmodel-3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca055db8715dda7f254c1d42a7cb74b05ac45b2e74ad36d4c1f8ef03aa238741",
"md5": "98128c864c99b45bbdde4c6be7bd68ef",
"sha256": "4984fcadcc37a5fdda20cd1dd7a071b2235fb8e993cc0657660da7f383c58d0f"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "98128c864c99b45bbdde4c6be7bd68ef",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1334146,
"upload_time": "2025-08-22T10:32:11",
"upload_time_iso_8601": "2025-08-22T10:32:11.281225Z",
"url": "https://files.pythonhosted.org/packages/ca/05/5db8715dda7f254c1d42a7cb74b05ac45b2e74ad36d4c1f8ef03aa238741/rtmodel-3.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd501379b7043c8e7fd56ff1dfd22f3a587fefa9d42f1b0bc172c1af03ea63ab",
"md5": "981fa18dbe2f640be0391e3bbb3af04c",
"sha256": "da53c1b2edd0213ed13175f157ae9f8477eecc576fbfab72fd6f7a87b7af51c1"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "981fa18dbe2f640be0391e3bbb3af04c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4,>=3.7",
"size": 1367928,
"upload_time": "2025-08-22T10:32:12",
"upload_time_iso_8601": "2025-08-22T10:32:12.932324Z",
"url": "https://files.pythonhosted.org/packages/dd/50/1379b7043c8e7fd56ff1dfd22f3a587fefa9d42f1b0bc172c1af03ea63ab/rtmodel-3.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45f156cccd36aa7b8a074d7c237fa45956fb304fe5fb4dab6b5c582a13648a2c",
"md5": "87e0302b479fb65a8fc04139a331a4ee",
"sha256": "4ffdbb0a441941f27eb2bb53fbfa260c838767422d9ec3fef5a78045d73ebfd3"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "87e0302b479fb65a8fc04139a331a4ee",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1378895,
"upload_time": "2025-08-22T10:32:14",
"upload_time_iso_8601": "2025-08-22T10:32:14.624011Z",
"url": "https://files.pythonhosted.org/packages/45/f1/56cccd36aa7b8a074d7c237fa45956fb304fe5fb4dab6b5c582a13648a2c/rtmodel-3.1-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21aae7ac4abce51579a58da6439fede590719b2d31df9e38462cee9665e84dfd",
"md5": "78bc68160698e8440c44bbcf2e19f63e",
"sha256": "291698231c68b205dda5e05ad40b818e233c338f7be3eadbfca90587f7a26485"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "78bc68160698e8440c44bbcf2e19f63e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1331993,
"upload_time": "2025-08-22T10:32:16",
"upload_time_iso_8601": "2025-08-22T10:32:16.649642Z",
"url": "https://files.pythonhosted.org/packages/21/aa/e7ac4abce51579a58da6439fede590719b2d31df9e38462cee9665e84dfd/rtmodel-3.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b01887f6ee03a42d60849ccba1e258b720ba2cd62c2ce1458e6f23ca424a784",
"md5": "a574eb9246351ddbd390524b646df77a",
"sha256": "8dd6e25b61486616f2264615812bf6f5a6f68d2508584802a18807ce31a2704f"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a574eb9246351ddbd390524b646df77a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 2189487,
"upload_time": "2025-08-22T10:32:18",
"upload_time_iso_8601": "2025-08-22T10:32:18.682848Z",
"url": "https://files.pythonhosted.org/packages/3b/01/887f6ee03a42d60849ccba1e258b720ba2cd62c2ce1458e6f23ca424a784/rtmodel-3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5038d8c7a2a78888b205c3022edb8d7e029578895c4f97260b6e319255d97ad8",
"md5": "50c7c26654818ed10dc59458c992705d",
"sha256": "b9819f2c15a1b4c551535f8c5e4287025b68e0932858ecf40c95593554ac449b"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "50c7c26654818ed10dc59458c992705d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 2114042,
"upload_time": "2025-08-22T10:32:21",
"upload_time_iso_8601": "2025-08-22T10:32:21.174499Z",
"url": "https://files.pythonhosted.org/packages/50/38/d8c7a2a78888b205c3022edb8d7e029578895c4f97260b6e319255d97ad8/rtmodel-3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c401d2b789d335af1039f438a6a1c6760555a8887bae6d2819a1589756d2a8de",
"md5": "a7c2d1050d373208ad1cb98418db42b9",
"sha256": "b9f00c0b83eb8de905a40484803004a82fe9afe230b8b17e14507392698ab56f"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a7c2d1050d373208ad1cb98418db42b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 2625821,
"upload_time": "2025-08-22T10:32:23",
"upload_time_iso_8601": "2025-08-22T10:32:23.719295Z",
"url": "https://files.pythonhosted.org/packages/c4/01/d2b789d335af1039f438a6a1c6760555a8887bae6d2819a1589756d2a8de/rtmodel-3.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c358fdcc03b682e31074d596c419639d7d690de6733080921eaa58baee4e46c6",
"md5": "6c3cc7cb66749cf6b80c967d27866dde",
"sha256": "58bf492bf2c8c3a337a45b6da6097499cf958778c7beb1851f1432f21a847d8e"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6c3cc7cb66749cf6b80c967d27866dde",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 2490509,
"upload_time": "2025-08-22T10:32:25",
"upload_time_iso_8601": "2025-08-22T10:32:25.907884Z",
"url": "https://files.pythonhosted.org/packages/c3/58/fdcc03b682e31074d596c419639d7d690de6733080921eaa58baee4e46c6/rtmodel-3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e208116b76118f575eb14d2a3f6b5db3920b006baa40d90d7cbb3fb15654f98",
"md5": "8f814c40bb058468878a24fe5ebb6e72",
"sha256": "3f1ee659fb24bf77a22c56ec742fc3b9ad4d612e332f1fae659ff8fb9ac501a8"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "8f814c40bb058468878a24fe5ebb6e72",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1334144,
"upload_time": "2025-08-22T10:32:27",
"upload_time_iso_8601": "2025-08-22T10:32:27.652977Z",
"url": "https://files.pythonhosted.org/packages/4e/20/8116b76118f575eb14d2a3f6b5db3920b006baa40d90d7cbb3fb15654f98/rtmodel-3.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c5ac303167a09a440cda5842b819ffe827a53070c8cdd8315711fedde73bfd9",
"md5": "c5b4fe917aeaacae76d04bfea57309c0",
"sha256": "a1eaee7c25980c799ae1dd7c2aad06ee0de0cef18c601df6ccdb9e2e35b02885"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c5b4fe917aeaacae76d04bfea57309c0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4,>=3.7",
"size": 1367930,
"upload_time": "2025-08-22T10:32:29",
"upload_time_iso_8601": "2025-08-22T10:32:29.262747Z",
"url": "https://files.pythonhosted.org/packages/0c/5a/c303167a09a440cda5842b819ffe827a53070c8cdd8315711fedde73bfd9/rtmodel-3.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21a48b6247c01d390c865c41a1f87eae8fb6cf459b0debce8f5bb81c41dd5c6d",
"md5": "8efe0f62e5dffb59c9ac903b30a9dcfe",
"sha256": "16067210e6cd63ec1d792695a77fc9743ef778399faccbbbf546308cb38c6879"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "8efe0f62e5dffb59c9ac903b30a9dcfe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1378897,
"upload_time": "2025-08-22T10:32:31",
"upload_time_iso_8601": "2025-08-22T10:32:31.049904Z",
"url": "https://files.pythonhosted.org/packages/21/a4/8b6247c01d390c865c41a1f87eae8fb6cf459b0debce8f5bb81c41dd5c6d/rtmodel-3.1-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d47e27f77473201bb206e1f29d17c89817aae18536abbf994853b659d98da01",
"md5": "55b915f438655eac0ccfefcadf817024",
"sha256": "57ab94e716a6fdea7e3c2b59746c2fe23b4db13669d4f00d84062d8bf65935ea"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "55b915f438655eac0ccfefcadf817024",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1331994,
"upload_time": "2025-08-22T10:32:32",
"upload_time_iso_8601": "2025-08-22T10:32:32.652730Z",
"url": "https://files.pythonhosted.org/packages/3d/47/e27f77473201bb206e1f29d17c89817aae18536abbf994853b659d98da01/rtmodel-3.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b06ce421722966c3566b7ca57293b99378bee89beaec03c9d762d483df630b4",
"md5": "02364b94059818efb38f86a1704d47cb",
"sha256": "462e3ff00ab8620ddf4dd96113441237e60c87affb698f8e3398ee86d44f9b5c"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "02364b94059818efb38f86a1704d47cb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 2189485,
"upload_time": "2025-08-22T10:32:34",
"upload_time_iso_8601": "2025-08-22T10:32:34.750524Z",
"url": "https://files.pythonhosted.org/packages/6b/06/ce421722966c3566b7ca57293b99378bee89beaec03c9d762d483df630b4/rtmodel-3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "518a2a03b8cbf1e214823c68fac62896ccf4666d9800610f23a91759963509ab",
"md5": "62497ca93f8b9729a2aa259379c9b5bb",
"sha256": "aa4619530158c47eed5161c70c53d7e157c76242e09dd1ed8e34b0a91c83392a"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "62497ca93f8b9729a2aa259379c9b5bb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 2114043,
"upload_time": "2025-08-22T10:32:36",
"upload_time_iso_8601": "2025-08-22T10:32:36.826051Z",
"url": "https://files.pythonhosted.org/packages/51/8a/2a03b8cbf1e214823c68fac62896ccf4666d9800610f23a91759963509ab/rtmodel-3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b94006cb257cdf5081df9b1d54924985d7c4a21565991b2242fe35103f535436",
"md5": "f67060e88ab754f9f7a6fcc07998759c",
"sha256": "677138d5037b9529a567003a5c47063f835af51911c880e3e9a3542a393bb85c"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f67060e88ab754f9f7a6fcc07998759c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 2625823,
"upload_time": "2025-08-22T10:32:40",
"upload_time_iso_8601": "2025-08-22T10:32:40.019933Z",
"url": "https://files.pythonhosted.org/packages/b9/40/06cb257cdf5081df9b1d54924985d7c4a21565991b2242fe35103f535436/rtmodel-3.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ea4d7e435601442074f395445cfb7623e91757065f2187d9d96a61e48ae642f",
"md5": "57fc03fa213e9eefec486d75d1e7b5b3",
"sha256": "944e27d04fb8fb9bfc2a8a517e4587cfb1e00214f74f96c780c3dd723dc68ee1"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "57fc03fa213e9eefec486d75d1e7b5b3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 2490509,
"upload_time": "2025-08-22T10:32:44",
"upload_time_iso_8601": "2025-08-22T10:32:44.334930Z",
"url": "https://files.pythonhosted.org/packages/6e/a4/d7e435601442074f395445cfb7623e91757065f2187d9d96a61e48ae642f/rtmodel-3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17749915f81b5a5bdb78a00758d92011d465dcd684058f53d1bd957da6a62555",
"md5": "32c26115610f0e974731ff74d7fa4793",
"sha256": "dad840f7872bcd46d3f6f8f50fa73d522e99d8cc46d381897243963e525b11bf"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "32c26115610f0e974731ff74d7fa4793",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1334145,
"upload_time": "2025-08-22T10:32:46",
"upload_time_iso_8601": "2025-08-22T10:32:46.309002Z",
"url": "https://files.pythonhosted.org/packages/17/74/9915f81b5a5bdb78a00758d92011d465dcd684058f53d1bd957da6a62555/rtmodel-3.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2c90785cf4d9b022eee7a285eb463b1a3d6f39eb3d9b5d6292db71d1579c9ae",
"md5": "1ed7c1bef7d186871438e419faa0609f",
"sha256": "83e6f5e2ef754a1f3dae36abcc28d3c653dd374c52cefff69e72a990df84a07b"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "1ed7c1bef7d186871438e419faa0609f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4,>=3.7",
"size": 1367930,
"upload_time": "2025-08-22T10:32:48",
"upload_time_iso_8601": "2025-08-22T10:32:48.342900Z",
"url": "https://files.pythonhosted.org/packages/c2/c9/0785cf4d9b022eee7a285eb463b1a3d6f39eb3d9b5d6292db71d1579c9ae/rtmodel-3.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90583cb579b29b3927c0a47aeab9ac0162d97652fbfe71516e57d44a1907f0e4",
"md5": "dfa85156cb8b449675e0d6c6f8ec3adc",
"sha256": "a44a346664c76af0c90b4b00ae4e6d7eeeb3f351dd379b55d45df6278d3a0b56"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "dfa85156cb8b449675e0d6c6f8ec3adc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1378894,
"upload_time": "2025-08-22T10:32:50",
"upload_time_iso_8601": "2025-08-22T10:32:50.311551Z",
"url": "https://files.pythonhosted.org/packages/90/58/3cb579b29b3927c0a47aeab9ac0162d97652fbfe71516e57d44a1907f0e4/rtmodel-3.1-cp37-cp37m-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e172a728da5d3269c0aafaa76285d18a880bf5e559718ec2bb23f5e96be4e9d",
"md5": "2df0e69fa640163001134570ff5156f6",
"sha256": "99c6996805dab575ec17254a981b5d59ace8775ff5fae560b32d0924fb1b7500"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2df0e69fa640163001134570ff5156f6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 2189488,
"upload_time": "2025-08-22T10:32:52",
"upload_time_iso_8601": "2025-08-22T10:32:52.305806Z",
"url": "https://files.pythonhosted.org/packages/4e/17/2a728da5d3269c0aafaa76285d18a880bf5e559718ec2bb23f5e96be4e9d/rtmodel-3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "429ae9a1d4e5545435bb2f9309901fb23ba89c8d55d0803ea34e2fc31a3bfb70",
"md5": "13332120974ecc30507107e8b9ffd410",
"sha256": "566811329f40d8324be3d9052c15cafc294bf418452ec96e50687c3061f7b668"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "13332120974ecc30507107e8b9ffd410",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 2114041,
"upload_time": "2025-08-22T10:32:56",
"upload_time_iso_8601": "2025-08-22T10:32:56.171951Z",
"url": "https://files.pythonhosted.org/packages/42/9a/e9a1d4e5545435bb2f9309901fb23ba89c8d55d0803ea34e2fc31a3bfb70/rtmodel-3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7445030253ac673d57f0ace9bce113ee14d7a89a47cb782e4c953488b0a5712a",
"md5": "7b28413c6442222ddc41967fc60ae920",
"sha256": "4839a2666512d008c44bebf659952ea75b151de436ff6e20600e1b5625dfff3f"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7b28413c6442222ddc41967fc60ae920",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 2625821,
"upload_time": "2025-08-22T10:32:58",
"upload_time_iso_8601": "2025-08-22T10:32:58.328302Z",
"url": "https://files.pythonhosted.org/packages/74/45/030253ac673d57f0ace9bce113ee14d7a89a47cb782e4c953488b0a5712a/rtmodel-3.1-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a77cec0a425ebbf5e436fac1ca2afecf0f190e3d9b5fff71b612cdbc25f58ab",
"md5": "0923e808bc55502d0a17c40c33d20dcb",
"sha256": "4a2c7f1355fd63aa566378ecb5f14a22d0e4c829ecb42fdbcfa4bc0591abc8a6"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0923e808bc55502d0a17c40c33d20dcb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 2490509,
"upload_time": "2025-08-22T10:33:00",
"upload_time_iso_8601": "2025-08-22T10:33:00.486338Z",
"url": "https://files.pythonhosted.org/packages/8a/77/cec0a425ebbf5e436fac1ca2afecf0f190e3d9b5fff71b612cdbc25f58ab/rtmodel-3.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83f6bbef214f19a9c794d4d0ceccee3d43af7962a9ed26d8221dba53a46bac79",
"md5": "c00dd2d94bcd3c2e0a07e53232ba5e16",
"sha256": "445200fd4da0abcc8fdf336d14b78e6642b24c106aa76ede75c67b943967e5d7"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "c00dd2d94bcd3c2e0a07e53232ba5e16",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1334146,
"upload_time": "2025-08-22T10:33:02",
"upload_time_iso_8601": "2025-08-22T10:33:02.093591Z",
"url": "https://files.pythonhosted.org/packages/83/f6/bbef214f19a9c794d4d0ceccee3d43af7962a9ed26d8221dba53a46bac79/rtmodel-3.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53ac7fc5e424152ddd27a943da6d6dcb3740dd63b62d0570e07deeafe64af819",
"md5": "3addd1f447d1bc5e8d4d1dd4ecf93f93",
"sha256": "30d9a385293e0b42db7c7868ccc91c9dc5553c8eeface213699d2b1ce2320597"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "3addd1f447d1bc5e8d4d1dd4ecf93f93",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "<4,>=3.7",
"size": 1367930,
"upload_time": "2025-08-22T10:33:03",
"upload_time_iso_8601": "2025-08-22T10:33:03.740078Z",
"url": "https://files.pythonhosted.org/packages/53/ac/7fc5e424152ddd27a943da6d6dcb3740dd63b62d0570e07deeafe64af819/rtmodel-3.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5437c15e7b92d3d6b1f2f024e0cb6f60223f0859d3c5792ba23549b8be9be19e",
"md5": "6ce4cd25abca86b1d6348e81ed30599d",
"sha256": "db30c8d8b4028ccc177d483c9bbd88242e7e56966614d26c4175d1fde25bbc19"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "6ce4cd25abca86b1d6348e81ed30599d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1378895,
"upload_time": "2025-08-22T10:33:05",
"upload_time_iso_8601": "2025-08-22T10:33:05.565230Z",
"url": "https://files.pythonhosted.org/packages/54/37/c15e7b92d3d6b1f2f024e0cb6f60223f0859d3c5792ba23549b8be9be19e/rtmodel-3.1-cp38-cp38-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eada078b8f42affdb052d2999a52aa4ce13cc3e014a83dab11de08c56dfd320c",
"md5": "48fabcd805446e69252cb5e11bda2371",
"sha256": "5ca81c4169e586b44b172a20ab2cdef424bc3e0cf6384d19cc22e8cd9a9cc0ca"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "48fabcd805446e69252cb5e11bda2371",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1331993,
"upload_time": "2025-08-22T10:33:09",
"upload_time_iso_8601": "2025-08-22T10:33:09.743508Z",
"url": "https://files.pythonhosted.org/packages/ea/da/078b8f42affdb052d2999a52aa4ce13cc3e014a83dab11de08c56dfd320c/rtmodel-3.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5e0942732544152cc9814a8f5aa168aa4a056db625a95b0edfcfc82d70e6091",
"md5": "3f99dbb345a677bed187f7898f9d42e3",
"sha256": "12b7c56111498e26b201617c63ea89bb3321194406a4ed769c66a323feb45f65"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3f99dbb345a677bed187f7898f9d42e3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 2189485,
"upload_time": "2025-08-22T10:33:11",
"upload_time_iso_8601": "2025-08-22T10:33:11.707060Z",
"url": "https://files.pythonhosted.org/packages/e5/e0/942732544152cc9814a8f5aa168aa4a056db625a95b0edfcfc82d70e6091/rtmodel-3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca04d057dd26b6b3b2b8c4438937c72a9e6068eaf916294f01baf908a8a51b06",
"md5": "267b86c1036e0ce577839f0bfa7a0cc0",
"sha256": "13faafae18ae85431306a27cc34a84580ca43b6f2b5d8a507a5dbf8e7fe5375c"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "267b86c1036e0ce577839f0bfa7a0cc0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 2114041,
"upload_time": "2025-08-22T10:33:13",
"upload_time_iso_8601": "2025-08-22T10:33:13.668449Z",
"url": "https://files.pythonhosted.org/packages/ca/04/d057dd26b6b3b2b8c4438937c72a9e6068eaf916294f01baf908a8a51b06/rtmodel-3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f8286aa54c52c4a6ad567b24ebea5bede6915b751e7b90cdb4d6453008a60f0",
"md5": "d13368961370d44fdf9928b971b4f718",
"sha256": "379a8cc5083c5491cd2f8bf49c6ece8eb4de7020456dbcc6350136a59cc4f4b7"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d13368961370d44fdf9928b971b4f718",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 2625823,
"upload_time": "2025-08-22T10:33:16",
"upload_time_iso_8601": "2025-08-22T10:33:16.047574Z",
"url": "https://files.pythonhosted.org/packages/7f/82/86aa54c52c4a6ad567b24ebea5bede6915b751e7b90cdb4d6453008a60f0/rtmodel-3.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88409158c3d0f1e6b9db1ee3b569163dc7193addf023f30dd83a3cb4ec570878",
"md5": "c030a41840e2ee23d86aacf6987d6de6",
"sha256": "8438ec4a556aabc640f1638fb14197bbb17667292a010836931070698327a1cd"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c030a41840e2ee23d86aacf6987d6de6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 2490508,
"upload_time": "2025-08-22T10:33:18",
"upload_time_iso_8601": "2025-08-22T10:33:18.281064Z",
"url": "https://files.pythonhosted.org/packages/88/40/9158c3d0f1e6b9db1ee3b569163dc7193addf023f30dd83a3cb4ec570878/rtmodel-3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af6d3c4769509918e0dd38993db6400b7b24d17f3feb0a4f791c763fab4abc60",
"md5": "02c88aa125215ac1bcf9e8f91bed36a8",
"sha256": "f98b9a911d298399f55689d9a410a7aa4d73ab0af274ce79396c82ec78a29380"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "02c88aa125215ac1bcf9e8f91bed36a8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1334148,
"upload_time": "2025-08-22T10:33:19",
"upload_time_iso_8601": "2025-08-22T10:33:19.976341Z",
"url": "https://files.pythonhosted.org/packages/af/6d/3c4769509918e0dd38993db6400b7b24d17f3feb0a4f791c763fab4abc60/rtmodel-3.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "118594545fd5dd6d36684610b9479549dae093e465736783cce15a230e691a1f",
"md5": "9d5312fbb0b939dbc0f3d3c6cc91c036",
"sha256": "111c99f2565bca3bb0685c9a702f7ccd7856cc911831b19c3d32a3f3f4e16027"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d5312fbb0b939dbc0f3d3c6cc91c036",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<4,>=3.7",
"size": 1367924,
"upload_time": "2025-08-22T10:33:21",
"upload_time_iso_8601": "2025-08-22T10:33:21.644829Z",
"url": "https://files.pythonhosted.org/packages/11/85/94545fd5dd6d36684610b9479549dae093e465736783cce15a230e691a1f/rtmodel-3.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0a0f5995d6a3187b3eaa3e1bac218cd0092908c5f29bc3760fccbda70770a7d",
"md5": "b8a63c0bb1f8065e6e4ec057f67e5f0e",
"sha256": "862962558b569448168c8fe6295ca05a335156f3fdde036a0023e4fbd8cb1802"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "b8a63c0bb1f8065e6e4ec057f67e5f0e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1378894,
"upload_time": "2025-08-22T10:33:23",
"upload_time_iso_8601": "2025-08-22T10:33:23.579168Z",
"url": "https://files.pythonhosted.org/packages/b0/a0/f5995d6a3187b3eaa3e1bac218cd0092908c5f29bc3760fccbda70770a7d/rtmodel-3.1-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "410dfaf6d582cdf50b0af44360d78df2f27844e0f63cb9f218b86bbbfdf1d68d",
"md5": "584291fb38023ab7ddb4990cb8f6e413",
"sha256": "4b45e6e25defdbf838af9ae2af3c9e2b85ada292747433ae5cded5c7a648c369"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "584291fb38023ab7ddb4990cb8f6e413",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1331996,
"upload_time": "2025-08-22T10:33:25",
"upload_time_iso_8601": "2025-08-22T10:33:25.247231Z",
"url": "https://files.pythonhosted.org/packages/41/0d/faf6d582cdf50b0af44360d78df2f27844e0f63cb9f218b86bbbfdf1d68d/rtmodel-3.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58376b90f502653fd5c79d1a05db0bac531cad540af526c561989d27e16c9454",
"md5": "db7b4e821cd35e751aaaffdc36be4a10",
"sha256": "7e0774c1c8c7352a426b2fed1de17650397d2c7de159c6715f3ffe4cc78ea3f1"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "db7b4e821cd35e751aaaffdc36be4a10",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 2189486,
"upload_time": "2025-08-22T10:33:27",
"upload_time_iso_8601": "2025-08-22T10:33:27.733922Z",
"url": "https://files.pythonhosted.org/packages/58/37/6b90f502653fd5c79d1a05db0bac531cad540af526c561989d27e16c9454/rtmodel-3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6bf1666d13c723eb6a3d09780e2443bda29859fe6dd892cf151b0c631f65708",
"md5": "62e4753762fecd04d0a349c2afebd497",
"sha256": "ff57684602e80fca72148be544ee4b6d8ba99041429e0155078186036c9cee0e"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "62e4753762fecd04d0a349c2afebd497",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 2114040,
"upload_time": "2025-08-22T10:33:29",
"upload_time_iso_8601": "2025-08-22T10:33:29.943763Z",
"url": "https://files.pythonhosted.org/packages/d6/bf/1666d13c723eb6a3d09780e2443bda29859fe6dd892cf151b0c631f65708/rtmodel-3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd95def6231b6f757f26713dda73aa93c18222e9b18b4733308c91fbe5305b53",
"md5": "1d717a5fc0bd1f8ad6bb6773192d3cb2",
"sha256": "45d4362b37e40826eb3f80d0cce64aab3e4ad783535a5298b51edf2ea81484f2"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1d717a5fc0bd1f8ad6bb6773192d3cb2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 2625821,
"upload_time": "2025-08-22T10:33:32",
"upload_time_iso_8601": "2025-08-22T10:33:32.117859Z",
"url": "https://files.pythonhosted.org/packages/cd/95/def6231b6f757f26713dda73aa93c18222e9b18b4733308c91fbe5305b53/rtmodel-3.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c3a9b286b4a2690dae6d8f85f0b655db5f9f30f83acb93bbf610e3fed0b7965",
"md5": "f8efa139d03d54b081cee6f85f93d0de",
"sha256": "5d3968bfd767bbb45bfa1cce244fece2daaa63c72583f40a609a5979734a4c56"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f8efa139d03d54b081cee6f85f93d0de",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 2490506,
"upload_time": "2025-08-22T10:33:34",
"upload_time_iso_8601": "2025-08-22T10:33:34.269336Z",
"url": "https://files.pythonhosted.org/packages/8c/3a/9b286b4a2690dae6d8f85f0b655db5f9f30f83acb93bbf610e3fed0b7965/rtmodel-3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1e733a10b1af553a19036f60d7773f85b8fcb9500894ba118819c67306fe9aa",
"md5": "6b2c73252fe40c6b6623be94a27b5485",
"sha256": "7a0769462783146d1bfc093bcddddc13014077f15c4c284349ed5f6eb8802e3e"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6b2c73252fe40c6b6623be94a27b5485",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1334142,
"upload_time": "2025-08-22T10:33:36",
"upload_time_iso_8601": "2025-08-22T10:33:36.339863Z",
"url": "https://files.pythonhosted.org/packages/c1/e7/33a10b1af553a19036f60d7773f85b8fcb9500894ba118819c67306fe9aa/rtmodel-3.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc20300bd2d38b35caf9c73cf0fbf611ce8ef38e47db794ce5028e2f5cdf5822",
"md5": "df8843b113d4dcf388d700b1ebc2e46b",
"sha256": "35694f52c6e205a78fdd4572a445d935b2bf45a3a0ddb2508ae9a5ca4b30b34b"
},
"downloads": -1,
"filename": "rtmodel-3.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "df8843b113d4dcf388d700b1ebc2e46b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4,>=3.7",
"size": 1367924,
"upload_time": "2025-08-22T10:33:37",
"upload_time_iso_8601": "2025-08-22T10:33:37.955952Z",
"url": "https://files.pythonhosted.org/packages/cc/20/300bd2d38b35caf9c73cf0fbf611ce8ef38e47db794ce5028e2f5cdf5822/rtmodel-3.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9dd408614abdf22a28d2e4b0bca229ad81ada9c0cbb96bf4b43f548fd22050f",
"md5": "7e9575e2ed73f4a899d7c9d8ce5124be",
"sha256": "572954c377cd996cdee6361c32abcb9ac0a066bf4a7eb8e28b2f0c648961a915"
},
"downloads": -1,
"filename": "rtmodel-3.1.tar.gz",
"has_sig": false,
"md5_digest": "7e9575e2ed73f4a899d7c9d8ce5124be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.7",
"size": 5772146,
"upload_time": "2025-08-22T10:33:41",
"upload_time_iso_8601": "2025-08-22T10:33:41.314200Z",
"url": "https://files.pythonhosted.org/packages/f9/dd/408614abdf22a28d2e4b0bca229ad81ada9c0cbb96bf4b43f548fd22050f/rtmodel-3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-22 10:33:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "valboz",
"github_project": "RTModel",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "rtmodel"
}