# rs1090
rs1090 is a Python binding to the [rs1090](https://docs.rs/rs1090/) Rust library to decode Mode S, ADS-B and FLARM messages. It takes its inspiration from the Python [pyModeS](https://github.com/junzis/pyModeS) library.
The direction ambitioned by rs1090 boils down to:
- improving the performance of Mode S decoding in Python;
- exporting trajectory data to cross-platform formats such as JSON or parquet;
- providing efficient multi-receiver Mode S decoding;
- serving real-time enriched trajectory data to external applications.
## Installation
```sh
pip install rs1090
```
## Usage
For single messages:
```pycon
>>> import rs1090
>>> rs1090.decode("8c4841753a9a153237aef0f275be")
{'df': '17', 'icao24': '484175', 'bds': '06', 'NUCp': 7, 'groundspeed': 17.0, 'track': 92.8125, 'parity': 'odd', 'lat_cpr': 39195, 'lon_cpr': 110320}
```
For batches of messages:
```pycon
>>> import rs1090
>>> rs1090.decode(msg_list)
...
>>> rs1090.decode(msg_list, ts_list) # includes CPR to position decoding
...
>>> rs1090.decode(msg_list, ts_list, reference=(lat0, lon0)) # useful for surface messages
...
```
For FLARM messages (also as batches):
```pycon
>>> msg = "7bf2381040ccc7e2395ecaa28e033a655d47e1d91d0bf986e1b0"
>>> rs1090.flarm(msg, 1655279476, 43.61924, 5.11755)
{'timestamp': 1655279476,
'reference_lat': 43.61924,
'reference_lon': 5.11755,
'icao24': '38f27b',
'is_icao24': True,
'actype': 'Glider',
'latitude': 43.6812864,
'longitude': 5.150585599999999,
'geoaltitude': 970,
'vertical_speed': 1.0,
'groundspeed': 18.698261951315153,
'track': 29.655457935479006,
'no_track': False,
'stealth': False,
'gps': 129}
```
Raw data
{
"_id": null,
"home_page": null,
"name": "rs1090",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "aircraft, ADS-B, Mode-S, decoding",
"author": "Xavier Olive <git@xoolive.org>",
"author_email": "Xavier Olive <git@xoolive.org>",
"download_url": "https://files.pythonhosted.org/packages/b7/c3/afb502bb77dcdea3992120bddbb02814d4879bbe035ac7fc1859282b2796/rs1090-0.4.1.tar.gz",
"platform": null,
"description": "# rs1090\n\nrs1090 is a Python binding to the [rs1090](https://docs.rs/rs1090/) Rust library to decode Mode S, ADS-B and FLARM messages. It takes its inspiration from the Python [pyModeS](https://github.com/junzis/pyModeS) library.\n\nThe direction ambitioned by rs1090 boils down to:\n\n- improving the performance of Mode S decoding in Python;\n- exporting trajectory data to cross-platform formats such as JSON or parquet;\n- providing efficient multi-receiver Mode S decoding;\n- serving real-time enriched trajectory data to external applications.\n\n## Installation\n\n```sh\npip install rs1090\n```\n\n## Usage\n\nFor single messages:\n\n```pycon\n>>> import rs1090\n>>> rs1090.decode(\"8c4841753a9a153237aef0f275be\")\n{'df': '17', 'icao24': '484175', 'bds': '06', 'NUCp': 7, 'groundspeed': 17.0, 'track': 92.8125, 'parity': 'odd', 'lat_cpr': 39195, 'lon_cpr': 110320}\n```\n\nFor batches of messages:\n\n```pycon\n>>> import rs1090\n>>> rs1090.decode(msg_list)\n...\n>>> rs1090.decode(msg_list, ts_list) # includes CPR to position decoding\n...\n>>> rs1090.decode(msg_list, ts_list, reference=(lat0, lon0)) # useful for surface messages\n...\n```\n\nFor FLARM messages (also as batches):\n\n```pycon\n>>> msg = \"7bf2381040ccc7e2395ecaa28e033a655d47e1d91d0bf986e1b0\"\n>>> rs1090.flarm(msg, 1655279476, 43.61924, 5.11755)\n{'timestamp': 1655279476,\n 'reference_lat': 43.61924,\n 'reference_lon': 5.11755,\n 'icao24': '38f27b',\n 'is_icao24': True,\n 'actype': 'Glider',\n 'latitude': 43.6812864,\n 'longitude': 5.150585599999999,\n 'geoaltitude': 970,\n 'vertical_speed': 1.0,\n 'groundspeed': 18.698261951315153,\n 'track': 29.655457935479006,\n 'no_track': False,\n 'stealth': False,\n 'gps': 129}\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python binding to rs1090, a library to decode Mode S and ADS-B signals",
"version": "0.4.1",
"project_urls": {
"repository": "https://github.com/xoolive/rs1090"
},
"split_keywords": [
"aircraft",
" ads-b",
" mode-s",
" decoding"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "370aa8b18fd7bbfcc709bc8c3906e915eb0b3dcd62ab502567a94cd796d982d5",
"md5": "f96877d0d02e1e5dde68c54c8bfbf7e4",
"sha256": "adff2e855170e807fecf1c4d8c6ff757291e2c0ba623f7bdbaa4000e4e20cca5"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f96877d0d02e1e5dde68c54c8bfbf7e4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1055762,
"upload_time": "2024-12-13T14:20:33",
"upload_time_iso_8601": "2024-12-13T14:20:33.604508Z",
"url": "https://files.pythonhosted.org/packages/37/0a/a8b18fd7bbfcc709bc8c3906e915eb0b3dcd62ab502567a94cd796d982d5/rs1090-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f01907ad5113d37e5678062608a2adfa7609ad1c6373ceb26798b6f792ce0ff",
"md5": "2b1b4be9d676f1b98c75d05e77db22f2",
"sha256": "a94f9f7faf969406f976a115a6d4fcad852aafbfe62ca639bfd63ee25e9cc515"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2b1b4be9d676f1b98c75d05e77db22f2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 971429,
"upload_time": "2024-12-13T14:20:40",
"upload_time_iso_8601": "2024-12-13T14:20:40.101666Z",
"url": "https://files.pythonhosted.org/packages/7f/01/907ad5113d37e5678062608a2adfa7609ad1c6373ceb26798b6f792ce0ff/rs1090-0.4.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dd9d54f684d76a3c2b600f65e7ac76f14b9882b59648794fae557ac2f99400f",
"md5": "bcd1962d6b23e3cfd98e4f1169826b01",
"sha256": "27b9ce3c82cfcd4050a1df4b8c857c671ef0c3e3bcfeea7371325aa80e353093"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "bcd1962d6b23e3cfd98e4f1169826b01",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1102767,
"upload_time": "2024-12-13T14:20:42",
"upload_time_iso_8601": "2024-12-13T14:20:42.372705Z",
"url": "https://files.pythonhosted.org/packages/8d/d9/d54f684d76a3c2b600f65e7ac76f14b9882b59648794fae557ac2f99400f/rs1090-0.4.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd272d4b0878a2d923b3357b232dc60e2d8f9a23f9307ffb69be365969e4b7ed",
"md5": "39fe9c9ecb7bb6cbabf2a341be3a22e1",
"sha256": "9051d2eb1bba34f2163201c741582d27027384900e89bdf2b6c6175510478e05"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "39fe9c9ecb7bb6cbabf2a341be3a22e1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1021457,
"upload_time": "2024-12-13T14:20:43",
"upload_time_iso_8601": "2024-12-13T14:20:43.733666Z",
"url": "https://files.pythonhosted.org/packages/bd/27/2d4b0878a2d923b3357b232dc60e2d8f9a23f9307ffb69be365969e4b7ed/rs1090-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "faec9ddb45b2172149aac367d8feb3a4cbde1473387f61e970d251c57d5c7946",
"md5": "600f8af2b92d96d310e444508b4ca816",
"sha256": "405c6297644e3e85581a59e564e3190f9dabc3dd21e41b85d2b19a7a0ebf943f"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "600f8af2b92d96d310e444508b4ca816",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1011835,
"upload_time": "2024-12-13T14:20:46",
"upload_time_iso_8601": "2024-12-13T14:20:46.438125Z",
"url": "https://files.pythonhosted.org/packages/fa/ec/9ddb45b2172149aac367d8feb3a4cbde1473387f61e970d251c57d5c7946/rs1090-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0977cc19703655a11c0ec5b4a372a04a235ea391607c9468a84553fb27c1d42f",
"md5": "06038630c7ed26714088c05d496adcb3",
"sha256": "c01360d30df7c3122cb0dc5d671a0b0c094253e7f577f04602f51523311f3723"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "06038630c7ed26714088c05d496adcb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1133956,
"upload_time": "2024-12-13T14:20:47",
"upload_time_iso_8601": "2024-12-13T14:20:47.832340Z",
"url": "https://files.pythonhosted.org/packages/09/77/cc19703655a11c0ec5b4a372a04a235ea391607c9468a84553fb27c1d42f/rs1090-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c38e86a5fda4389c366a8bd07a2f424a34a461cc3d08b14403628ab895e88fb",
"md5": "602bdc3809d552cb8c89f507d925955e",
"sha256": "9203f07c6ba0d87cbc1ec2f4e67f9b5faab881f11eaec2c6cfc185e372d4d88b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "602bdc3809d552cb8c89f507d925955e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1424095,
"upload_time": "2024-12-13T14:20:50",
"upload_time_iso_8601": "2024-12-13T14:20:50.564711Z",
"url": "https://files.pythonhosted.org/packages/5c/38/e86a5fda4389c366a8bd07a2f424a34a461cc3d08b14403628ab895e88fb/rs1090-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4847d7963e3cf15823075d384d91c3e449b0a220c913aeed969002e7f60e84ac",
"md5": "9bbfed9cc623de81b85bfea163327c71",
"sha256": "1e812977eecaad79fd27027a0f3955eb6fe47eb3a2469e98ad0ce89f674b8e5c"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9bbfed9cc623de81b85bfea163327c71",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1121317,
"upload_time": "2024-12-13T14:20:52",
"upload_time_iso_8601": "2024-12-13T14:20:52.105848Z",
"url": "https://files.pythonhosted.org/packages/48/47/d7963e3cf15823075d384d91c3e449b0a220c913aeed969002e7f60e84ac/rs1090-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45b54b46a49b3fedf11f6ac65ae6ef385711d0ee10d8372dfff0d66366caa30d",
"md5": "d369f9062568f421b7a11253d3fa2773",
"sha256": "55b22c0c55ec9dd74c274ec27f5ddac4f84301dd9ed8f9585a2c21a4595122ed"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d369f9062568f421b7a11253d3fa2773",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1199807,
"upload_time": "2024-12-13T14:20:53",
"upload_time_iso_8601": "2024-12-13T14:20:53.673765Z",
"url": "https://files.pythonhosted.org/packages/45/b5/4b46a49b3fedf11f6ac65ae6ef385711d0ee10d8372dfff0d66366caa30d/rs1090-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "650657a1a1828a5fe9adf407717484e23423e64909fdf91d02d4671c84c9054c",
"md5": "f5d6da2b4a592015aecbdc613e1489c5",
"sha256": "f55628997b1ead3d9d0664e8cdfe924d70cf2e0eba466f3139eaaadcac627f43"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f5d6da2b4a592015aecbdc613e1489c5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1275096,
"upload_time": "2024-12-13T14:20:56",
"upload_time_iso_8601": "2024-12-13T14:20:56.514911Z",
"url": "https://files.pythonhosted.org/packages/65/06/57a1a1828a5fe9adf407717484e23423e64909fdf91d02d4671c84c9054c/rs1090-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58688a80518b66eeb084655d4ac760a50d8250b3eae60e3ab03b610f7eeea076",
"md5": "d1de3ce0cec02b650e9a241da94ac0cb",
"sha256": "bfc06401a25d82d4c78888d22290acd57d43539a0eb660b1ad5cf091e4b9d558"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d1de3ce0cec02b650e9a241da94ac0cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1259970,
"upload_time": "2024-12-13T14:20:59",
"upload_time_iso_8601": "2024-12-13T14:20:59.809107Z",
"url": "https://files.pythonhosted.org/packages/58/68/8a80518b66eeb084655d4ac760a50d8250b3eae60e3ab03b610f7eeea076/rs1090-0.4.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f62ad44a5827a83739d64c3b1856ff8f4f3551131f848e9f855a3056402c95f",
"md5": "3cffb8111fe2a5eea528e5f8879846a1",
"sha256": "efde9cc3ce84e5920bffd0183760ffa41c5b28ead7529b56f02cb3597bcc6424"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3cffb8111fe2a5eea528e5f8879846a1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1292901,
"upload_time": "2024-12-13T14:21:04",
"upload_time_iso_8601": "2024-12-13T14:21:04.724562Z",
"url": "https://files.pythonhosted.org/packages/1f/62/ad44a5827a83739d64c3b1856ff8f4f3551131f848e9f855a3056402c95f/rs1090-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "732d809dccab0e37e38dbc69f741c9839214235778d227742e5515f79fc4930b",
"md5": "ba9e97961f55a1da55ded243b59795c3",
"sha256": "398832b18a6f70c5e6d7f909fe3c917d251e6bbed53d7a99fdd786324fdbd92b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "ba9e97961f55a1da55ded243b59795c3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 923443,
"upload_time": "2024-12-13T14:21:08",
"upload_time_iso_8601": "2024-12-13T14:21:08.031483Z",
"url": "https://files.pythonhosted.org/packages/73/2d/809dccab0e37e38dbc69f741c9839214235778d227742e5515f79fc4930b/rs1090-0.4.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69cb2202f0c17e175cfba55639931fcba2a6ce8cf4ec599d66038ea30609f064",
"md5": "f3e809d420b8b296cd6502e40102e6cf",
"sha256": "62af73d77928d4ba55d1d23acb85b788e3f6eb52a0c605de9c811bd70b59a37f"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3e809d420b8b296cd6502e40102e6cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1031915,
"upload_time": "2024-12-13T14:21:09",
"upload_time_iso_8601": "2024-12-13T14:21:09.698522Z",
"url": "https://files.pythonhosted.org/packages/69/cb/2202f0c17e175cfba55639931fcba2a6ce8cf4ec599d66038ea30609f064/rs1090-0.4.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72cff04534f8bf648ca35d27dfe872d0c98150295289c9e72b1ca6ec452c9a1b",
"md5": "6ddcc55285cf21c48b2665d20568b9d0",
"sha256": "644eec789c7a37ba09b581bec87c77237b96a64e3bfca5f6664bce0b5a4b629c"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "6ddcc55285cf21c48b2665d20568b9d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1055567,
"upload_time": "2024-12-13T14:21:11",
"upload_time_iso_8601": "2024-12-13T14:21:11.370279Z",
"url": "https://files.pythonhosted.org/packages/72/cf/f04534f8bf648ca35d27dfe872d0c98150295289c9e72b1ca6ec452c9a1b/rs1090-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "644f28d791251ea421a537a231a307485656aa7287f7d857a9083f82e8cb9447",
"md5": "0a9126d5ffb2429b6e3af3fe33114758",
"sha256": "c157497d79d7304ae319c266214700a4ad2a508c0dd8f1fa7f6d1a646a1ee481"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0a9126d5ffb2429b6e3af3fe33114758",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 971369,
"upload_time": "2024-12-13T14:21:12",
"upload_time_iso_8601": "2024-12-13T14:21:12.731566Z",
"url": "https://files.pythonhosted.org/packages/64/4f/28d791251ea421a537a231a307485656aa7287f7d857a9083f82e8cb9447/rs1090-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d75c6c8fbfed58ea239a2bf018586bc63f34f198fed1a9cf9000a6de6a1f0983",
"md5": "b0f3267943a9599a912eda471208d38d",
"sha256": "954b443acb2d953da5f510863e90715a1ee63087c3a5880e3ea9cc8bcb2129a8"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "b0f3267943a9599a912eda471208d38d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1102735,
"upload_time": "2024-12-13T14:21:15",
"upload_time_iso_8601": "2024-12-13T14:21:15.368641Z",
"url": "https://files.pythonhosted.org/packages/d7/5c/6c8fbfed58ea239a2bf018586bc63f34f198fed1a9cf9000a6de6a1f0983/rs1090-0.4.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88492a126620a2f9b0e1a6ff8a74bf36ece521c7ba1f0bf1f9a7112b04f1dc37",
"md5": "8a562da37e217384b0d6adc0961756ac",
"sha256": "00480c74fd2630c31c1a0b744f24218c8f7595e778bcf656e99ad9a0bf11a72f"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8a562da37e217384b0d6adc0961756ac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1020952,
"upload_time": "2024-12-13T14:21:18",
"upload_time_iso_8601": "2024-12-13T14:21:18.118241Z",
"url": "https://files.pythonhosted.org/packages/88/49/2a126620a2f9b0e1a6ff8a74bf36ece521c7ba1f0bf1f9a7112b04f1dc37/rs1090-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "087cc617d0713e391d7eeb01cb0c7c192e2ae02520f3340da9a5a45f11db5b7a",
"md5": "9578f7d4bc89845959d3b1d96769f008",
"sha256": "5247af11e38419de792993dd2cd4b3266c308bc8bc737295ef50bf70a885e3ed"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9578f7d4bc89845959d3b1d96769f008",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1011906,
"upload_time": "2024-12-13T14:21:19",
"upload_time_iso_8601": "2024-12-13T14:21:19.478348Z",
"url": "https://files.pythonhosted.org/packages/08/7c/c617d0713e391d7eeb01cb0c7c192e2ae02520f3340da9a5a45f11db5b7a/rs1090-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd38b7100d70748f2b2474e593bd60877bd3d4963490b7e43a45f93d16ae6ec0",
"md5": "7a570379234b1dc36f4dbd3d9d6de3a7",
"sha256": "f6d12592e89ac9ca3b7a2212a354c6f53f2edf77a51b94ee56db634ba4acc3db"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7a570379234b1dc36f4dbd3d9d6de3a7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1133774,
"upload_time": "2024-12-13T14:21:20",
"upload_time_iso_8601": "2024-12-13T14:21:20.876025Z",
"url": "https://files.pythonhosted.org/packages/cd/38/b7100d70748f2b2474e593bd60877bd3d4963490b7e43a45f93d16ae6ec0/rs1090-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc1cae61c51614040dcfddc3677154978e1ec2f421a3d785b08865e70aaa1172",
"md5": "989c6a869ee1cedc294f7fa696a34e81",
"sha256": "26f50b3ffc47b8a0676c369e6e43204f0ef92ed963462849854577470a571c44"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "989c6a869ee1cedc294f7fa696a34e81",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1424039,
"upload_time": "2024-12-13T14:21:22",
"upload_time_iso_8601": "2024-12-13T14:21:22.397390Z",
"url": "https://files.pythonhosted.org/packages/dc/1c/ae61c51614040dcfddc3677154978e1ec2f421a3d785b08865e70aaa1172/rs1090-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f1177a355e070a7de4aede9b55e070fcd5bec3615d1db4bea28f8cf81dc536a",
"md5": "cd161ff44e992dd102418a51e3742a27",
"sha256": "ae7b16af5e6ffecc07b25a05addf2d00d7b78ef9f5f5c5a6b6a2ec0a9f0a350b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cd161ff44e992dd102418a51e3742a27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1121174,
"upload_time": "2024-12-13T14:21:27",
"upload_time_iso_8601": "2024-12-13T14:21:27.409514Z",
"url": "https://files.pythonhosted.org/packages/0f/11/77a355e070a7de4aede9b55e070fcd5bec3615d1db4bea28f8cf81dc536a/rs1090-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94ecb97dc6f0f6f3fadb994369c4923cd3e6e40742ffbbfc818d6dbf9eeb2f62",
"md5": "856ce7bf5047159213b75822e397bd61",
"sha256": "ab6f22d96ad55a8e320b7970ea76600e085ede6e0d3e5529d9a21e23c49859ad"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "856ce7bf5047159213b75822e397bd61",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1199660,
"upload_time": "2024-12-13T14:21:29",
"upload_time_iso_8601": "2024-12-13T14:21:29.587471Z",
"url": "https://files.pythonhosted.org/packages/94/ec/b97dc6f0f6f3fadb994369c4923cd3e6e40742ffbbfc818d6dbf9eeb2f62/rs1090-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa9c085d49b8df91c4fc062b08b44e198071f9c983529d902102a19f2d8f4114",
"md5": "aaffbca4d9ac9155ead0788c4143bf94",
"sha256": "acf0d93f514ad68553ed4f047a6e6ee04d730a0943791b9fb8915cf67a829137"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "aaffbca4d9ac9155ead0788c4143bf94",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1275010,
"upload_time": "2024-12-13T14:21:31",
"upload_time_iso_8601": "2024-12-13T14:21:31.303640Z",
"url": "https://files.pythonhosted.org/packages/fa/9c/085d49b8df91c4fc062b08b44e198071f9c983529d902102a19f2d8f4114/rs1090-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67291090a17709152cb5bc01aff4aba5f17a18e18bd90e78fe6e4966872c6f75",
"md5": "c2e1ee46cae2980d29e542d88f173205",
"sha256": "f439bc55e57d8e452be723671abd2a543ddbda2940534e498b83fcb03795fbd0"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c2e1ee46cae2980d29e542d88f173205",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1259770,
"upload_time": "2024-12-13T14:21:33",
"upload_time_iso_8601": "2024-12-13T14:21:33.233985Z",
"url": "https://files.pythonhosted.org/packages/67/29/1090a17709152cb5bc01aff4aba5f17a18e18bd90e78fe6e4966872c6f75/rs1090-0.4.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb0880d0427ff3df346d04a377b1d9076f497327bb66e7a214e6e505125a20a6",
"md5": "bf1f5d2a5552f31d5d33881420abb0a9",
"sha256": "ed8431e7c3d38a21ec880c9c3e5541460c64b2c7362a80e9d8159b5e6db053e2"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bf1f5d2a5552f31d5d33881420abb0a9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1292685,
"upload_time": "2024-12-13T14:21:36",
"upload_time_iso_8601": "2024-12-13T14:21:36.022571Z",
"url": "https://files.pythonhosted.org/packages/eb/08/80d0427ff3df346d04a377b1d9076f497327bb66e7a214e6e505125a20a6/rs1090-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b2f7e7bb3a8d6e5cdcf4553d90fa749b906b1e7ace0a5befbfc4f8089d76ddf",
"md5": "0316ccdf9c7875a4868fda5ba784a392",
"sha256": "70d5da6b4fc5301c1f376b5ed2c1994d6363b967105808914abb97415c49cc9b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "0316ccdf9c7875a4868fda5ba784a392",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 923427,
"upload_time": "2024-12-13T14:21:38",
"upload_time_iso_8601": "2024-12-13T14:21:38.839381Z",
"url": "https://files.pythonhosted.org/packages/2b/2f/7e7bb3a8d6e5cdcf4553d90fa749b906b1e7ace0a5befbfc4f8089d76ddf/rs1090-0.4.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2166232ad824513b32da7d33e67d35cc6255545e7d8d06d2c5c1e743e9da5796",
"md5": "5ee75850069ada68d13d9ecb90be8e4f",
"sha256": "56db527c7c8200eca3140307a91ec2b66a1f7a19c70f5ed5ce3a9e137d0ed412"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "5ee75850069ada68d13d9ecb90be8e4f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1031880,
"upload_time": "2024-12-13T14:21:40",
"upload_time_iso_8601": "2024-12-13T14:21:40.588166Z",
"url": "https://files.pythonhosted.org/packages/21/66/232ad824513b32da7d33e67d35cc6255545e7d8d06d2c5c1e743e9da5796/rs1090-0.4.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a25e7e5d18b47a8ea735835b31da711e64e0a72dfc2c2c8ee21c7f2d380fb59",
"md5": "4c082c3a2a6ce44ed3cd07377ec33a70",
"sha256": "bc75449828e2fdc7829b6375e596e73405c088c55ad24371ba2b4691da45c6f9"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4c082c3a2a6ce44ed3cd07377ec33a70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1051547,
"upload_time": "2024-12-13T14:21:42",
"upload_time_iso_8601": "2024-12-13T14:21:42.109306Z",
"url": "https://files.pythonhosted.org/packages/7a/25/e7e5d18b47a8ea735835b31da711e64e0a72dfc2c2c8ee21c7f2d380fb59/rs1090-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38bbd8e7c667027fc51ab71da580ddb8e9412ce3c64fe480894355a2657862f0",
"md5": "b2c8cd91a159cc316a9dff3cb9b84b9d",
"sha256": "be896c6f5ceae81bc39b3a3d42b0c5eab82f9f37b0326bece0d6057819012a1f"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b2c8cd91a159cc316a9dff3cb9b84b9d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 968185,
"upload_time": "2024-12-13T14:21:44",
"upload_time_iso_8601": "2024-12-13T14:21:44.339229Z",
"url": "https://files.pythonhosted.org/packages/38/bb/d8e7c667027fc51ab71da580ddb8e9412ce3c64fe480894355a2657862f0/rs1090-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef735d452c4153f4e7f26629e05e66354c6fadd871ed960c75ef5f895e7601a1",
"md5": "9a89c96479a593abd1a1333e8074373b",
"sha256": "99f61e49188cbe4aa30ad9d53ef4dee2a13a23a04bc691fa1720c5b3a2bb6a9c"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "9a89c96479a593abd1a1333e8074373b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1101303,
"upload_time": "2024-12-13T14:21:45",
"upload_time_iso_8601": "2024-12-13T14:21:45.730189Z",
"url": "https://files.pythonhosted.org/packages/ef/73/5d452c4153f4e7f26629e05e66354c6fadd871ed960c75ef5f895e7601a1/rs1090-0.4.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d0308819f82a4d0f5c80669c2696e4cbdc39cad7851c7eaa2a3c38c677f8e34",
"md5": "ce01f1329de81897ec0d08dbed4b28ec",
"sha256": "1b99ba387abfa261c07b88103c6ac97d6ea1a3fb17d3d4444b064492c5903acf"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ce01f1329de81897ec0d08dbed4b28ec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1019316,
"upload_time": "2024-12-13T14:21:48",
"upload_time_iso_8601": "2024-12-13T14:21:48.417103Z",
"url": "https://files.pythonhosted.org/packages/1d/03/08819f82a4d0f5c80669c2696e4cbdc39cad7851c7eaa2a3c38c677f8e34/rs1090-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8dc00a63310daec644350afb3148a6a67251158a79819bc97a9132fe473ba3f",
"md5": "8e08d84f9e19da3680841486d2719b0d",
"sha256": "c8dd2e3a974475e27a9fa3b8cd93381985bb6f18351b2eb530c4b78ad4432420"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8e08d84f9e19da3680841486d2719b0d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1011057,
"upload_time": "2024-12-13T14:21:49",
"upload_time_iso_8601": "2024-12-13T14:21:49.815030Z",
"url": "https://files.pythonhosted.org/packages/e8/dc/00a63310daec644350afb3148a6a67251158a79819bc97a9132fe473ba3f/rs1090-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "298bf18ae696ee06b472df5708b4985730d654ffc086bbfb7a6c5107d00ef53b",
"md5": "99f102b7a6f5c03ef22e3661f785a277",
"sha256": "17df6566f7a01fe1a418458fa6b769b152195412ce6e05271884ae253675db8e"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "99f102b7a6f5c03ef22e3661f785a277",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1131997,
"upload_time": "2024-12-13T14:21:51",
"upload_time_iso_8601": "2024-12-13T14:21:51.172549Z",
"url": "https://files.pythonhosted.org/packages/29/8b/f18ae696ee06b472df5708b4985730d654ffc086bbfb7a6c5107d00ef53b/rs1090-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8f58b7155513834c9e5de8f4fbf49a4a5b684c01222c2e5322f91d6a3b43fb1",
"md5": "36554cd9ec3fd1a4dbefb97416875c7b",
"sha256": "1b2454b3367836aa299cfce5ca0ae6d173c7282af433a6605583650212e3d1fb"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "36554cd9ec3fd1a4dbefb97416875c7b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1424854,
"upload_time": "2024-12-13T14:21:53",
"upload_time_iso_8601": "2024-12-13T14:21:53.864453Z",
"url": "https://files.pythonhosted.org/packages/d8/f5/8b7155513834c9e5de8f4fbf49a4a5b684c01222c2e5322f91d6a3b43fb1/rs1090-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53d67bc0a26543e8961de48749922aecae8f29010148f021a15a07da74daf565",
"md5": "d74b0eb068cf0896362f90c47a7d4cf9",
"sha256": "8fba21b4f35c9165b4333990be13463672997c44acfb2a9b8745c140c0efc32d"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d74b0eb068cf0896362f90c47a7d4cf9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1119306,
"upload_time": "2024-12-13T14:21:55",
"upload_time_iso_8601": "2024-12-13T14:21:55.911495Z",
"url": "https://files.pythonhosted.org/packages/53/d6/7bc0a26543e8961de48749922aecae8f29010148f021a15a07da74daf565/rs1090-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "626ce6216cb79d785c7f5a72c89d6f80f856198d4d8faad03ba4e9e328d5ccf1",
"md5": "ca16927ceecaac1624a3b2cb612cd57d",
"sha256": "6a2bde3d3a94d8f8cd71bf0af36a3ff9df1797a13520d32199060ee0b9ef0985"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ca16927ceecaac1624a3b2cb612cd57d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1197869,
"upload_time": "2024-12-13T14:21:58",
"upload_time_iso_8601": "2024-12-13T14:21:58.962326Z",
"url": "https://files.pythonhosted.org/packages/62/6c/e6216cb79d785c7f5a72c89d6f80f856198d4d8faad03ba4e9e328d5ccf1/rs1090-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1244a278272e9f60c868e621bc2ffc5e98fcf1304e5f8a0b39a1f43f403e557",
"md5": "1a394218ba6ad3d0120633242c00779f",
"sha256": "a909d0780f99f26d728655d89f2e1e3016b2fff98cad355e7e75bd9e2dc084c7"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1a394218ba6ad3d0120633242c00779f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1274763,
"upload_time": "2024-12-13T14:22:01",
"upload_time_iso_8601": "2024-12-13T14:22:01.066436Z",
"url": "https://files.pythonhosted.org/packages/c1/24/4a278272e9f60c868e621bc2ffc5e98fcf1304e5f8a0b39a1f43f403e557/rs1090-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37fbea5eca917b6c5694bf390f0caf3685f2f57751a2a965fb480154c5c6586a",
"md5": "5d304eccdff76c18a739fbf34b0c1359",
"sha256": "b1c79784e1d3f7eac186231f0ffc83f4b3da7fe4a119c5dffefb2d7a08de489b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5d304eccdff76c18a739fbf34b0c1359",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1258023,
"upload_time": "2024-12-13T14:22:02",
"upload_time_iso_8601": "2024-12-13T14:22:02.633548Z",
"url": "https://files.pythonhosted.org/packages/37/fb/ea5eca917b6c5694bf390f0caf3685f2f57751a2a965fb480154c5c6586a/rs1090-0.4.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5031387b0c54043fe808b179b90faf0890d4ee94632fcd653e6589858f4fb49",
"md5": "3e5609d5b14da226d5bed28ec4035ef8",
"sha256": "7da02dad5f12dc6ee4f4cc271ecf1294ccf7d9835a72011e78a6379a017aeefe"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3e5609d5b14da226d5bed28ec4035ef8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1290808,
"upload_time": "2024-12-13T14:22:04",
"upload_time_iso_8601": "2024-12-13T14:22:04.050148Z",
"url": "https://files.pythonhosted.org/packages/e5/03/1387b0c54043fe808b179b90faf0890d4ee94632fcd653e6589858f4fb49/rs1090-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86e7cf14e230850f04e83068c96372e96c9f0b2d7bfab01dd9bacb17f9837d3a",
"md5": "b9ee8202192a0c2cd9833094e844fff5",
"sha256": "6042406227f975993e7c9006a531919df38c8179ed80b4639e8673d389da2776"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b9ee8202192a0c2cd9833094e844fff5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 922371,
"upload_time": "2024-12-13T14:22:05",
"upload_time_iso_8601": "2024-12-13T14:22:05.708800Z",
"url": "https://files.pythonhosted.org/packages/86/e7/cf14e230850f04e83068c96372e96c9f0b2d7bfab01dd9bacb17f9837d3a/rs1090-0.4.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8975804770d9356513361c61653df310ca6de60900636e2fcf5d1462f520c0b",
"md5": "193f78ee0e3bdf8afb9086168ab9e1cb",
"sha256": "3a1fcef9fdf54a15b9c15568b7627fcfa00876cd9292854e1b421d07f4643d18"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "193f78ee0e3bdf8afb9086168ab9e1cb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1031168,
"upload_time": "2024-12-13T14:22:07",
"upload_time_iso_8601": "2024-12-13T14:22:07.130311Z",
"url": "https://files.pythonhosted.org/packages/c8/97/5804770d9356513361c61653df310ca6de60900636e2fcf5d1462f520c0b/rs1090-0.4.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3610bf168f140f39d8c7981aef7df250ca9718ad9c280e21acfd490345f365f3",
"md5": "f77b6bf32a7aa991cbda46e9b56099a0",
"sha256": "f34a366c210842d308ab1477c34e8ee8c9d23a8e80aad085b6a8380bb735d3b0"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f77b6bf32a7aa991cbda46e9b56099a0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1051470,
"upload_time": "2024-12-13T14:22:08",
"upload_time_iso_8601": "2024-12-13T14:22:08.668672Z",
"url": "https://files.pythonhosted.org/packages/36/10/bf168f140f39d8c7981aef7df250ca9718ad9c280e21acfd490345f365f3/rs1090-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6becc92eb41bdc8667e932e1ee54336d05bd7ed9d921b030293d7bcbbd1b1e1",
"md5": "feb88c179257f826164b94d2f43b1213",
"sha256": "8543a8240242ee3f42cf73042a09c6203e0aaf946d6adf154d9e8930b1ae4f95"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "feb88c179257f826164b94d2f43b1213",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 968209,
"upload_time": "2024-12-13T14:22:10",
"upload_time_iso_8601": "2024-12-13T14:22:10.070692Z",
"url": "https://files.pythonhosted.org/packages/f6/be/cc92eb41bdc8667e932e1ee54336d05bd7ed9d921b030293d7bcbbd1b1e1/rs1090-0.4.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9009f7cf3596078e686a25ee25e455a5a239817d2d1bc4d6ed7f7b390f2489d",
"md5": "b1473aaadea22e95b3e2526751013c32",
"sha256": "e1396bdeafd7f9f252a397e9dc2457a62bcb802a2cd11c4dc6e07f306cac12c6"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "b1473aaadea22e95b3e2526751013c32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1101357,
"upload_time": "2024-12-13T14:22:11",
"upload_time_iso_8601": "2024-12-13T14:22:11.567954Z",
"url": "https://files.pythonhosted.org/packages/f9/00/9f7cf3596078e686a25ee25e455a5a239817d2d1bc4d6ed7f7b390f2489d/rs1090-0.4.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf6ea50fa2a1e3c2e8126ed80b86e653a81b533f891b2152502eec8fbff3d11a",
"md5": "c20f08a31727aa916fe55c8ad5150f3a",
"sha256": "3700096c3b9ffb73f3cd855873f8aef4ac3ff3c8cc542f9d8c7f9ecbcaa95635"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c20f08a31727aa916fe55c8ad5150f3a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1019330,
"upload_time": "2024-12-13T14:22:13",
"upload_time_iso_8601": "2024-12-13T14:22:13.143775Z",
"url": "https://files.pythonhosted.org/packages/bf/6e/a50fa2a1e3c2e8126ed80b86e653a81b533f891b2152502eec8fbff3d11a/rs1090-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04e0d3c3fda8094cd4ba3792fce4c6e2462ec503c3077cde3770e1a57efae4e3",
"md5": "8c4eb80367df769e25c461fe6134673f",
"sha256": "7a4dbf33a0c415bc1a7f1338d1ad6185155342b8c30fcb38ecaaf91f2ff23bbc"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8c4eb80367df769e25c461fe6134673f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1011147,
"upload_time": "2024-12-13T14:22:14",
"upload_time_iso_8601": "2024-12-13T14:22:14.569777Z",
"url": "https://files.pythonhosted.org/packages/04/e0/d3c3fda8094cd4ba3792fce4c6e2462ec503c3077cde3770e1a57efae4e3/rs1090-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "249c8998704356b5312da718578cad7c222c8e6fd585fac2dc30984b4929b837",
"md5": "f0364963b83d917c21c9e73a57a35d1c",
"sha256": "bf3690c411922ea592e3c302a3992ceb47c8b32e189d568996f0fb9c0decbef7"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f0364963b83d917c21c9e73a57a35d1c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1131876,
"upload_time": "2024-12-13T14:22:16",
"upload_time_iso_8601": "2024-12-13T14:22:16.271126Z",
"url": "https://files.pythonhosted.org/packages/24/9c/8998704356b5312da718578cad7c222c8e6fd585fac2dc30984b4929b837/rs1090-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f5b8c5ac305fa1b02965c25c234eca3b1643ee381d9ebd9352906569cd0c7d2",
"md5": "2b82334eba4ddd29d5b75b35fb737642",
"sha256": "55cc95533cee695bfcb2ff154a6c946b39d75f7ff6616a7f520227e486c9b821"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2b82334eba4ddd29d5b75b35fb737642",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1424812,
"upload_time": "2024-12-13T14:22:19",
"upload_time_iso_8601": "2024-12-13T14:22:19.104673Z",
"url": "https://files.pythonhosted.org/packages/7f/5b/8c5ac305fa1b02965c25c234eca3b1643ee381d9ebd9352906569cd0c7d2/rs1090-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0fb9266592d0a03ae40d78621742e5b9298b2ecdab93121cd2963282502b915",
"md5": "1ba79093f46d68e41393c29d4ac557ae",
"sha256": "20821f0ddad976fb1485422322b0dfbd8962a4e905220dba722d523d14561fa8"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1ba79093f46d68e41393c29d4ac557ae",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1119283,
"upload_time": "2024-12-13T14:22:20",
"upload_time_iso_8601": "2024-12-13T14:22:20.598798Z",
"url": "https://files.pythonhosted.org/packages/a0/fb/9266592d0a03ae40d78621742e5b9298b2ecdab93121cd2963282502b915/rs1090-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f15c1331e6a8206d72a3a187e20682053fbec3000b947e88eb6f79c2773cf48",
"md5": "81f8381b013854bafe4c4da1353b8b32",
"sha256": "e33e84245c518a7dc766419055060274562bcd34461aa083c3c8b9c742b67b13"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "81f8381b013854bafe4c4da1353b8b32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1197879,
"upload_time": "2024-12-13T14:22:22",
"upload_time_iso_8601": "2024-12-13T14:22:22.124260Z",
"url": "https://files.pythonhosted.org/packages/0f/15/c1331e6a8206d72a3a187e20682053fbec3000b947e88eb6f79c2773cf48/rs1090-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b19cfd56a5b111315fb44d791d4f591742b09f704ffb2bf240bc03e9f7791a2a",
"md5": "68b34945871bfb5a8e357f1a915f4054",
"sha256": "b802557839317ef0b75e595dd8e804b4546a84b2c48795c2ce9a73b014e315b3"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "68b34945871bfb5a8e357f1a915f4054",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1274848,
"upload_time": "2024-12-13T14:22:23",
"upload_time_iso_8601": "2024-12-13T14:22:23.640686Z",
"url": "https://files.pythonhosted.org/packages/b1/9c/fd56a5b111315fb44d791d4f591742b09f704ffb2bf240bc03e9f7791a2a/rs1090-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fff88320473734b763d5914ed50c978f1020c33e94d96dea2525cb24f6f8ba5a",
"md5": "b990c0429760593357c0cdce7d01c174",
"sha256": "10211117f42bf0729fb261a531cd784834cb2656e7b40fed830134d516c89338"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b990c0429760593357c0cdce7d01c174",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1258111,
"upload_time": "2024-12-13T14:22:28",
"upload_time_iso_8601": "2024-12-13T14:22:28.123279Z",
"url": "https://files.pythonhosted.org/packages/ff/f8/8320473734b763d5914ed50c978f1020c33e94d96dea2525cb24f6f8ba5a/rs1090-0.4.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c62f73d6a999e29678e347a3ca0d137aa4695d4b764e9e2d900a82954e735a27",
"md5": "2375a3c85b58ad647f5379b4de609410",
"sha256": "a990ae38e5d12b55462ab3e15623d709ca8eb6d10614e9106cb14d3044e46256"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2375a3c85b58ad647f5379b4de609410",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1290797,
"upload_time": "2024-12-13T14:22:29",
"upload_time_iso_8601": "2024-12-13T14:22:29.594670Z",
"url": "https://files.pythonhosted.org/packages/c6/2f/73d6a999e29678e347a3ca0d137aa4695d4b764e9e2d900a82954e735a27/rs1090-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d82a7437cb1f94c6206bc7da45223c9f1a717d45d6f6f682e467d2a1f267cf8f",
"md5": "3eec466e85bdc782ca8e9d7d85269f1a",
"sha256": "6b7bfc79444ab827c0e259e73596232cf7afee74015997921ae180d0eb833723"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "3eec466e85bdc782ca8e9d7d85269f1a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 922353,
"upload_time": "2024-12-13T14:22:32",
"upload_time_iso_8601": "2024-12-13T14:22:32.504253Z",
"url": "https://files.pythonhosted.org/packages/d8/2a/7437cb1f94c6206bc7da45223c9f1a717d45d6f6f682e467d2a1f267cf8f/rs1090-0.4.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d85167aebcca5cb56c80a51dbdab7e80d83b2bf1daca83546aa2ca3cb7019e08",
"md5": "53c8cd936b3a2477863eda67fda3f181",
"sha256": "1577f8d0f512a3c814b1174b340483fd4104ce79b49b5018e41f2cc632992aea"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "53c8cd936b3a2477863eda67fda3f181",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1031281,
"upload_time": "2024-12-13T14:22:34",
"upload_time_iso_8601": "2024-12-13T14:22:34.136052Z",
"url": "https://files.pythonhosted.org/packages/d8/51/67aebcca5cb56c80a51dbdab7e80d83b2bf1daca83546aa2ca3cb7019e08/rs1090-0.4.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebd6d9f2f250beb5e5c951797f62213651518de10b411a3af566487f51c22454",
"md5": "2e6c82eb4ab5f9d42986587affe01b2f",
"sha256": "34070268fab71ea2313233866ae913e9b21e2aec68984e4d590b999b32c62a9b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2e6c82eb4ab5f9d42986587affe01b2f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1055732,
"upload_time": "2024-12-13T14:22:35",
"upload_time_iso_8601": "2024-12-13T14:22:35.819708Z",
"url": "https://files.pythonhosted.org/packages/eb/d6/d9f2f250beb5e5c951797f62213651518de10b411a3af566487f51c22454/rs1090-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5359e54e0c58ccb3c0114bf9f4ec9015cb36d47c2417b9245725a9534726a583",
"md5": "e13bec75ec4b22e012ee8f54d52580f1",
"sha256": "7f22a34b44d517eeaa045c4bba65b9986d606602a5b23bfa06a6879fda4a0698"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e13bec75ec4b22e012ee8f54d52580f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 971674,
"upload_time": "2024-12-13T14:22:38",
"upload_time_iso_8601": "2024-12-13T14:22:38.795100Z",
"url": "https://files.pythonhosted.org/packages/53/59/e54e0c58ccb3c0114bf9f4ec9015cb36d47c2417b9245725a9534726a583/rs1090-0.4.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31014d2285e6f5269d1ec0260ebcc2c647c15f768e69301e903ce74486361004",
"md5": "805fe699cf53539abed21ff672e964a7",
"sha256": "d72e5093172fa54824406e15f24e09c055a38db6e4894f904389a9ec69d3e51b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "805fe699cf53539abed21ff672e964a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1102794,
"upload_time": "2024-12-13T14:22:41",
"upload_time_iso_8601": "2024-12-13T14:22:41.628148Z",
"url": "https://files.pythonhosted.org/packages/31/01/4d2285e6f5269d1ec0260ebcc2c647c15f768e69301e903ce74486361004/rs1090-0.4.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e870c0c93537ff426bae18fc63aaf925ca4b94e4c319c9934c1bf0d5bfa5205",
"md5": "c75b52864572c05a6a0bf18e7cf54e20",
"sha256": "96dd43a13232e612b449772254ec6786c0af70bba02fde78ab4b442d24c57d4d"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c75b52864572c05a6a0bf18e7cf54e20",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1021863,
"upload_time": "2024-12-13T14:22:43",
"upload_time_iso_8601": "2024-12-13T14:22:43.203495Z",
"url": "https://files.pythonhosted.org/packages/8e/87/0c0c93537ff426bae18fc63aaf925ca4b94e4c319c9934c1bf0d5bfa5205/rs1090-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74a7e998d318fa04531944a9eb8fa59c39692874ffa854efa33f1ab68d3ccb16",
"md5": "9d49c38e0c672daf265ccc57df945c35",
"sha256": "c43b2290571f2794f42a27c35e4c1a8ebd0b3425a2d2ea230c4897897cca8184"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9d49c38e0c672daf265ccc57df945c35",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1011956,
"upload_time": "2024-12-13T14:22:44",
"upload_time_iso_8601": "2024-12-13T14:22:44.684040Z",
"url": "https://files.pythonhosted.org/packages/74/a7/e998d318fa04531944a9eb8fa59c39692874ffa854efa33f1ab68d3ccb16/rs1090-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee06f04b26c877d9236e3ebf2419d7a9a451ee7e85449148e9efa37be1f9a309",
"md5": "e284431d599cb49a20d43b90f74f1d73",
"sha256": "42e4799dc6b4f702683b889bff0d9d137e0583e52768ad75e70529dcd4676f34"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e284431d599cb49a20d43b90f74f1d73",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1134278,
"upload_time": "2024-12-13T14:22:46",
"upload_time_iso_8601": "2024-12-13T14:22:46.223204Z",
"url": "https://files.pythonhosted.org/packages/ee/06/f04b26c877d9236e3ebf2419d7a9a451ee7e85449148e9efa37be1f9a309/rs1090-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f42763909a86e07c6ba42dd4b7cc55948044f75ef5b819eceb023e2256d69cd",
"md5": "382ae7e02630863a6272d5ed335894a8",
"sha256": "8a42721a1dead84d5da2b46a8573b729955ec926563e8934455c516447199a5a"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "382ae7e02630863a6272d5ed335894a8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1424792,
"upload_time": "2024-12-13T14:22:47",
"upload_time_iso_8601": "2024-12-13T14:22:47.957509Z",
"url": "https://files.pythonhosted.org/packages/4f/42/763909a86e07c6ba42dd4b7cc55948044f75ef5b819eceb023e2256d69cd/rs1090-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83a481139b8328236c796c0f4ee870a84cd12e2f7f61bd6de4506e7359fbc5ca",
"md5": "7d06e2d788cdf10be139274808ce5943",
"sha256": "dc69bf02b8f48c7efbecb460fc08808d483da89178707a325036e3ed57e8cd3b"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7d06e2d788cdf10be139274808ce5943",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1121887,
"upload_time": "2024-12-13T14:22:49",
"upload_time_iso_8601": "2024-12-13T14:22:49.508795Z",
"url": "https://files.pythonhosted.org/packages/83/a4/81139b8328236c796c0f4ee870a84cd12e2f7f61bd6de4506e7359fbc5ca/rs1090-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8325dfae8afb514a53b54b95e3b9eecf4dcfdbad97a4cd5b62de3950775a78b2",
"md5": "2a78fccd8fa801cc0fd3fe0b5aebc1f8",
"sha256": "0c666bbdd59234652d6423db76706aa48f31d1bcf382366fdbbf7eb6e9395817"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2a78fccd8fa801cc0fd3fe0b5aebc1f8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1200134,
"upload_time": "2024-12-13T14:22:51",
"upload_time_iso_8601": "2024-12-13T14:22:51.076772Z",
"url": "https://files.pythonhosted.org/packages/83/25/dfae8afb514a53b54b95e3b9eecf4dcfdbad97a4cd5b62de3950775a78b2/rs1090-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00d2443e972c7156450690341953f5c428541c63848e3ee711af80ab6fa39329",
"md5": "47be1735996bf4d3a2db6324d13a83a3",
"sha256": "1ab28ba1c74c06422ac2c858e72611f536db07bf0dd1a0d4f13e48cc3e622fb5"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "47be1735996bf4d3a2db6324d13a83a3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1275105,
"upload_time": "2024-12-13T14:22:52",
"upload_time_iso_8601": "2024-12-13T14:22:52.682106Z",
"url": "https://files.pythonhosted.org/packages/00/d2/443e972c7156450690341953f5c428541c63848e3ee711af80ab6fa39329/rs1090-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14a841aaa8c64dae51d40648270b8563de4643bfe4428d16ac03d97d38e9d1d0",
"md5": "ddc7ad1ee11ed401569efddc499e8584",
"sha256": "a7690c79faf98506e421a5f2d9269c233b29b7c49381ac65823e1e9cba425fdc"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ddc7ad1ee11ed401569efddc499e8584",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1259890,
"upload_time": "2024-12-13T14:22:54",
"upload_time_iso_8601": "2024-12-13T14:22:54.333963Z",
"url": "https://files.pythonhosted.org/packages/14/a8/41aaa8c64dae51d40648270b8563de4643bfe4428d16ac03d97d38e9d1d0/rs1090-0.4.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c430cddbcd591c03156361798f513d46fa4b65a431847718def16418d3e6954",
"md5": "8bb4be05f6c9f49bc25fed6737a2b954",
"sha256": "34239d1d572fe9075bf6c5b8e9bfe7a16a359f5a54aeaf8f9ba82dd3bdfd6a85"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8bb4be05f6c9f49bc25fed6737a2b954",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1293142,
"upload_time": "2024-12-13T14:22:55",
"upload_time_iso_8601": "2024-12-13T14:22:55.886012Z",
"url": "https://files.pythonhosted.org/packages/2c/43/0cddbcd591c03156361798f513d46fa4b65a431847718def16418d3e6954/rs1090-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30eee9c172b556a608be6a9deeba50a163d1401f24874cd846e96d568243d0d2",
"md5": "8482123f5bad3310a3ce622dc744336d",
"sha256": "58c031961d5fa81aed6085f054684882d57de348d10a764b4e46124ad4caa7fa"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "8482123f5bad3310a3ce622dc744336d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 923356,
"upload_time": "2024-12-13T14:22:57",
"upload_time_iso_8601": "2024-12-13T14:22:57.371088Z",
"url": "https://files.pythonhosted.org/packages/30/ee/e9c172b556a608be6a9deeba50a163d1401f24874cd846e96d568243d0d2/rs1090-0.4.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9222760167e06934ea36a74df3d280e77a533a803c99a33fe06d6c3d311cb4e9",
"md5": "cac66fae711885b2cceed23b74bf6a75",
"sha256": "061fb18e75cb3733c8810a79fc29325560d7623303b5f0fd7919c05f0f7e2c7e"
},
"downloads": -1,
"filename": "rs1090-0.4.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cac66fae711885b2cceed23b74bf6a75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1031919,
"upload_time": "2024-12-13T14:23:00",
"upload_time_iso_8601": "2024-12-13T14:23:00.624971Z",
"url": "https://files.pythonhosted.org/packages/92/22/760167e06934ea36a74df3d280e77a533a803c99a33fe06d6c3d311cb4e9/rs1090-0.4.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7c3afb502bb77dcdea3992120bddbb02814d4879bbe035ac7fc1859282b2796",
"md5": "a2f6caf3c64ef5b3304de40873dab158",
"sha256": "b1c9a4895b6b8055d6f57fb9fa48ca292d8a73aa67c50b5f5a79de527a006b86"
},
"downloads": -1,
"filename": "rs1090-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "a2f6caf3c64ef5b3304de40873dab158",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 6824084,
"upload_time": "2024-12-13T14:23:04",
"upload_time_iso_8601": "2024-12-13T14:23:04.476527Z",
"url": "https://files.pythonhosted.org/packages/b7/c3/afb502bb77dcdea3992120bddbb02814d4879bbe035ac7fc1859282b2796/rs1090-0.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-13 14:23:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "xoolive",
"github_project": "rs1090",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "rs1090"
}