rs1090


Namers1090 JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryPython binding to rs1090, a library to decode Mode S and ADS-B signals
upload_time2024-04-11 06:40:42
maintainerNone
docs_urlNone
authorXavier Olive <git@xoolive.org>
requires_python>=3.9
licenseMIT
keywords aircraft ads-b mode-s decoding
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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/96/04/5a2427c11995baed72c923ac5c1da1f94b607c58179fccc2a451e272762c/rs1090-0.2.0.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.2.0",
    "project_urls": {
        "repository": "https://github.com/xoolive/rs1090"
    },
    "split_keywords": [
        "aircraft",
        " ads-b",
        " mode-s",
        " decoding"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b013a830fec3fa6184abb20a31b70d7442c59cdd868c0adc2ba981cae33b814",
                "md5": "2ee83fad4a05083d6ea0a4469cf72644",
                "sha256": "d940526c97441522281ebad7d4b67e9ec2001fdb84bd3eef1cb041b84551fb2d"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ee83fad4a05083d6ea0a4469cf72644",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 333425,
            "upload_time": "2024-04-11T06:39:15",
            "upload_time_iso_8601": "2024-04-11T06:39:15.155624Z",
            "url": "https://files.pythonhosted.org/packages/3b/01/3a830fec3fa6184abb20a31b70d7442c59cdd868c0adc2ba981cae33b814/rs1090-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9e2657109204192d70f92a65cb9d2b334d6b65f03d4ba24f575716070bb5019",
                "md5": "8cabf388a2c780c92cff32d716123567",
                "sha256": "c90d35e157c37b4981becfe6fea4791f72dd2c1e9de0ee0f0796ed00f786a1a0"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8cabf388a2c780c92cff32d716123567",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 320317,
            "upload_time": "2024-04-11T06:39:17",
            "upload_time_iso_8601": "2024-04-11T06:39:17.047618Z",
            "url": "https://files.pythonhosted.org/packages/c9/e2/657109204192d70f92a65cb9d2b334d6b65f03d4ba24f575716070bb5019/rs1090-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd92ccd5334b03114076da5f5e023135969ff9fecc9991f693d1300b1ad502e7",
                "md5": "e83f9ef5b601b5e4c7dd13d3a778b3e1",
                "sha256": "ee4992be4b12cd73896106df4af2796b9d74cb2c61754dd1aa3f281bf106e919"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e83f9ef5b601b5e4c7dd13d3a778b3e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 375822,
            "upload_time": "2024-04-11T06:39:18",
            "upload_time_iso_8601": "2024-04-11T06:39:18.761780Z",
            "url": "https://files.pythonhosted.org/packages/dd/92/ccd5334b03114076da5f5e023135969ff9fecc9991f693d1300b1ad502e7/rs1090-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90d6ed96f348320f403aeb202e89430f93115bf130b9b945a0b7ec7af032c210",
                "md5": "145c58151605ac5852b33099ee3a756c",
                "sha256": "7bd524a0846c864240d4c3caed6845be6879a2255647ff2a81676d7e80c0b299"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "145c58151605ac5852b33099ee3a756c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 345528,
            "upload_time": "2024-04-11T06:39:20",
            "upload_time_iso_8601": "2024-04-11T06:39:20.665360Z",
            "url": "https://files.pythonhosted.org/packages/90/d6/ed96f348320f403aeb202e89430f93115bf130b9b945a0b7ec7af032c210/rs1090-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c9c49ef4ff0ceff0cb74c74e62d631e2c2c262fd8c5c02a8575cfa426f7b8d0",
                "md5": "d712a587976baf845c8a8c0ec4eb272f",
                "sha256": "68e1c7338e2ad5d1cd10897a0a9dc1b0d87fe2a9455c1f2a42629b66f592d29d"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d712a587976baf845c8a8c0ec4eb272f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 350649,
            "upload_time": "2024-04-11T06:39:22",
            "upload_time_iso_8601": "2024-04-11T06:39:22.449680Z",
            "url": "https://files.pythonhosted.org/packages/8c/9c/49ef4ff0ceff0cb74c74e62d631e2c2c262fd8c5c02a8575cfa426f7b8d0/rs1090-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79521e0c9006d153dfaf8b3f52d07ab588d98ac95010f5aa96e6bc9779ca4b4e",
                "md5": "1a3b29f296b5a347d68d4f3696257fad",
                "sha256": "5f205337fea15732e6b5d51d65ab782709c918fe1cbcb6a3a434cda80009a129"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1a3b29f296b5a347d68d4f3696257fad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 388608,
            "upload_time": "2024-04-11T06:39:24",
            "upload_time_iso_8601": "2024-04-11T06:39:24.305259Z",
            "url": "https://files.pythonhosted.org/packages/79/52/1e0c9006d153dfaf8b3f52d07ab588d98ac95010f5aa96e6bc9779ca4b4e/rs1090-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a564255361be10b193542b95a0ce4ca41fe30413733ee05d6fc5666020d84c3f",
                "md5": "41ca47fd66ed0cadf7d1d9a0e2c695d8",
                "sha256": "4675d262d2086f4b50f1aa465dffa2b64a4cbbd34716fa130746171056388de5"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "41ca47fd66ed0cadf7d1d9a0e2c695d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 517790,
            "upload_time": "2024-04-11T06:39:26",
            "upload_time_iso_8601": "2024-04-11T06:39:26.123547Z",
            "url": "https://files.pythonhosted.org/packages/a5/64/255361be10b193542b95a0ce4ca41fe30413733ee05d6fc5666020d84c3f/rs1090-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "098fafd5a465d6c8e206da6079a1557bb9d4d397ccbb70d73f8c8a7e6b49537d",
                "md5": "9923f37c6d3816800b793c20e7b5c522",
                "sha256": "8b429dd47b5619043df6de47a67e1f7fc33123480da41ab6bbd91911bfbc7c51"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9923f37c6d3816800b793c20e7b5c522",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 364748,
            "upload_time": "2024-04-11T06:39:27",
            "upload_time_iso_8601": "2024-04-11T06:39:27.388000Z",
            "url": "https://files.pythonhosted.org/packages/09/8f/afd5a465d6c8e206da6079a1557bb9d4d397ccbb70d73f8c8a7e6b49537d/rs1090-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "686dddceadd90c69f13e87fd3922d04d34ddb4202b95b1e26d43a84750768777",
                "md5": "41093221cfaee78ee5f7028bc9f79d89",
                "sha256": "4baf187287e4c7f2feeb9d08e3f089038e119d602e148f36b3ffd6e3b8c44104"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "41093221cfaee78ee5f7028bc9f79d89",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 256646,
            "upload_time": "2024-04-11T06:39:29",
            "upload_time_iso_8601": "2024-04-11T06:39:29.083815Z",
            "url": "https://files.pythonhosted.org/packages/68/6d/ddceadd90c69f13e87fd3922d04d34ddb4202b95b1e26d43a84750768777/rs1090-0.2.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aae0150ca37543044c2fa1307053f3ec8f8822092bfc90adee2adc98e1616b09",
                "md5": "9275440c540ff5508f80881a21195751",
                "sha256": "c3189a60d5d3b15a69dd2ab58658b4b511c93e06b34e8d1c2b0fb04543712156"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9275440c540ff5508f80881a21195751",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 276365,
            "upload_time": "2024-04-11T06:39:30",
            "upload_time_iso_8601": "2024-04-11T06:39:30.965569Z",
            "url": "https://files.pythonhosted.org/packages/aa/e0/150ca37543044c2fa1307053f3ec8f8822092bfc90adee2adc98e1616b09/rs1090-0.2.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "042a7ed39ec7202034b15038d556b04e42d16ae6b8b1fbc9bfdae9613d69f0d7",
                "md5": "62d3d5558b474bed3f2ddbcd105a747b",
                "sha256": "9ef6038ee2f29b8dabd1882cd62d107b190eaa082f9b83e9b47050b75c5c8cc7"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62d3d5558b474bed3f2ddbcd105a747b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 333424,
            "upload_time": "2024-04-11T06:39:32",
            "upload_time_iso_8601": "2024-04-11T06:39:32.739463Z",
            "url": "https://files.pythonhosted.org/packages/04/2a/7ed39ec7202034b15038d556b04e42d16ae6b8b1fbc9bfdae9613d69f0d7/rs1090-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a668736011184c6c2bfb80809a70d8b73318b58a8e59ff94d709bad10df74ef",
                "md5": "af0635edc8af99c57bdb1f9a3fec82cb",
                "sha256": "1dfe33d131a2112df4649e4f5798dd1adef46debfe3d70bfdae5c02f95c4fb3e"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "af0635edc8af99c57bdb1f9a3fec82cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 320316,
            "upload_time": "2024-04-11T06:39:34",
            "upload_time_iso_8601": "2024-04-11T06:39:34.597162Z",
            "url": "https://files.pythonhosted.org/packages/6a/66/8736011184c6c2bfb80809a70d8b73318b58a8e59ff94d709bad10df74ef/rs1090-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fba938e3f336b8e5fa80dd67bfcfbcecfb6be60992fcb164fe570c96e3224dcc",
                "md5": "51cf61c86078419a6b240612b0964956",
                "sha256": "bb63dbc0a91e4bf909d0717d24e229d6d231501edf4f5a82eec1b4f3cb781385"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "51cf61c86078419a6b240612b0964956",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 375822,
            "upload_time": "2024-04-11T06:39:36",
            "upload_time_iso_8601": "2024-04-11T06:39:36.343224Z",
            "url": "https://files.pythonhosted.org/packages/fb/a9/38e3f336b8e5fa80dd67bfcfbcecfb6be60992fcb164fe570c96e3224dcc/rs1090-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "661ff4dbf1d0febfd374110d7b5e4918a00933073881ac2c8ca1bfe25c772feb",
                "md5": "7a5f41dc45fa8b2385eb0f7bb0d50285",
                "sha256": "4fb37cb4f02ba758caba5ac6cb4da44526c26a6974489bdb8bc4c95e95093ed9"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a5f41dc45fa8b2385eb0f7bb0d50285",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 345529,
            "upload_time": "2024-04-11T06:39:38",
            "upload_time_iso_8601": "2024-04-11T06:39:38.203459Z",
            "url": "https://files.pythonhosted.org/packages/66/1f/f4dbf1d0febfd374110d7b5e4918a00933073881ac2c8ca1bfe25c772feb/rs1090-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29585364764985adc1ca259d995b89afe5715dd5ccefa47e9d42acba228c1874",
                "md5": "55e652ae86870947eb2039976a31f935",
                "sha256": "c53843e45ce19d008f89e90da43cac379200154a9fd0724d8b1359d9f683eab0"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "55e652ae86870947eb2039976a31f935",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 350649,
            "upload_time": "2024-04-11T06:39:39",
            "upload_time_iso_8601": "2024-04-11T06:39:39.411342Z",
            "url": "https://files.pythonhosted.org/packages/29/58/5364764985adc1ca259d995b89afe5715dd5ccefa47e9d42acba228c1874/rs1090-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e7b8e6feecb9ef985a33b9dcbf0e4b15b04592658377f4aa57c817b6e31b4c0",
                "md5": "10c949932fa8041bf94ee75960cc5776",
                "sha256": "ed943b1547cc496e4a1ca45bf7de784b445440f8d25de6d37482e4e6ae365ba0"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "10c949932fa8041bf94ee75960cc5776",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 388608,
            "upload_time": "2024-04-11T06:39:41",
            "upload_time_iso_8601": "2024-04-11T06:39:41.189060Z",
            "url": "https://files.pythonhosted.org/packages/9e/7b/8e6feecb9ef985a33b9dcbf0e4b15b04592658377f4aa57c817b6e31b4c0/rs1090-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6958759208c25f7af428dc6a1ecbc9cd8b9ac171c629cd77d05a1523adb4effc",
                "md5": "cfd47a4df40d98608cc9e7a9f950a7d0",
                "sha256": "830a0914c8c0317d5886e2f8810013a490b46f41c76213b949ed9851534ec075"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cfd47a4df40d98608cc9e7a9f950a7d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 517789,
            "upload_time": "2024-04-11T06:39:43",
            "upload_time_iso_8601": "2024-04-11T06:39:43.074141Z",
            "url": "https://files.pythonhosted.org/packages/69/58/759208c25f7af428dc6a1ecbc9cd8b9ac171c629cd77d05a1523adb4effc/rs1090-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97d9efabecd6996e257cd22ccbcaaab3bc15c2d12e2c916d50aa7c088c591cdc",
                "md5": "0097d1f55fd2178c692d9ae412c9f3d3",
                "sha256": "173e6d836571e2042fd17146661b3fbb5c072adb1bbc1565a22a00d0a2fcfbf9"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0097d1f55fd2178c692d9ae412c9f3d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 364748,
            "upload_time": "2024-04-11T06:39:44",
            "upload_time_iso_8601": "2024-04-11T06:39:44.980015Z",
            "url": "https://files.pythonhosted.org/packages/97/d9/efabecd6996e257cd22ccbcaaab3bc15c2d12e2c916d50aa7c088c591cdc/rs1090-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7a6f50fbd439b9c187316babde4c59b213a48a224ed15221e236f97cc64253d",
                "md5": "9af46d65cff399bced3207b9b37ab358",
                "sha256": "6e88e7445f0f5253594ad38f6770a53016465fb0c80cc1c77f42341ae4884c94"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9af46d65cff399bced3207b9b37ab358",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 256643,
            "upload_time": "2024-04-11T06:39:46",
            "upload_time_iso_8601": "2024-04-11T06:39:46.194090Z",
            "url": "https://files.pythonhosted.org/packages/e7/a6/f50fbd439b9c187316babde4c59b213a48a224ed15221e236f97cc64253d/rs1090-0.2.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dc3123846fab60a467ded5aed1915f98b0bf0dd2f2da2061b97be2a3dd8dd51",
                "md5": "6b8695bfb84175ebd6184f99eb0578f4",
                "sha256": "42efb780129ea61e15d95d5ad09ae8564e5985fdbc0ebc1a2c23594e4bd21360"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b8695bfb84175ebd6184f99eb0578f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 276361,
            "upload_time": "2024-04-11T06:39:47",
            "upload_time_iso_8601": "2024-04-11T06:39:47.726278Z",
            "url": "https://files.pythonhosted.org/packages/7d/c3/123846fab60a467ded5aed1915f98b0bf0dd2f2da2061b97be2a3dd8dd51/rs1090-0.2.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "deb6d18d5bb7a12491943691d49a9202ec52d90b2ef5d4cf6b3b487a83ffcf96",
                "md5": "d7d5027708a1c91f5814834541fd5578",
                "sha256": "6bbe7e9044d78a84db549987eb38d3c2825a9fb39f046c4a709be442a77ec627"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7d5027708a1c91f5814834541fd5578",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 333481,
            "upload_time": "2024-04-11T06:39:49",
            "upload_time_iso_8601": "2024-04-11T06:39:49.751468Z",
            "url": "https://files.pythonhosted.org/packages/de/b6/d18d5bb7a12491943691d49a9202ec52d90b2ef5d4cf6b3b487a83ffcf96/rs1090-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7d72f7f33ed6eb792d6835b4eecf9fd38eee8c1edf27fd4da1126feb59b814a",
                "md5": "39f4ec7d762de24fb359bb40d87a571c",
                "sha256": "c9d00d0524d6748c5e2e8e4518be1310a60313fb87278cce5b561140256b1c07"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "39f4ec7d762de24fb359bb40d87a571c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 320033,
            "upload_time": "2024-04-11T06:39:51",
            "upload_time_iso_8601": "2024-04-11T06:39:51.267882Z",
            "url": "https://files.pythonhosted.org/packages/e7/d7/2f7f33ed6eb792d6835b4eecf9fd38eee8c1edf27fd4da1126feb59b814a/rs1090-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01d126315ab0ee8c210c7375628be983fc4ee6559f449e4fe30e53894fac94a9",
                "md5": "38a83e17e0b298703d1403f692319c02",
                "sha256": "8216b0ae5bb63cdfff3c04582358e7b400aba596e282804d6ffd460b83806024"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "38a83e17e0b298703d1403f692319c02",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 375362,
            "upload_time": "2024-04-11T06:39:52",
            "upload_time_iso_8601": "2024-04-11T06:39:52.820149Z",
            "url": "https://files.pythonhosted.org/packages/01/d1/26315ab0ee8c210c7375628be983fc4ee6559f449e4fe30e53894fac94a9/rs1090-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b9fdb984ce34d341b74f53f84fbb7a8cff1d7e6bc6dc03923b09f99b33f6fa9",
                "md5": "018c368fdb6a48e151b3fbd5530bd5e9",
                "sha256": "bb3c3157680016fd4f9adb4b319add95e1a090e66d5e1c762171275be1136174"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "018c368fdb6a48e151b3fbd5530bd5e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 345983,
            "upload_time": "2024-04-11T06:39:54",
            "upload_time_iso_8601": "2024-04-11T06:39:54.713811Z",
            "url": "https://files.pythonhosted.org/packages/4b/9f/db984ce34d341b74f53f84fbb7a8cff1d7e6bc6dc03923b09f99b33f6fa9/rs1090-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae7240b72c7814c3456e02ec157b4fa64051049ae23e3aab175a2e209297a7df",
                "md5": "4c26c01ceaab61cb652c54b5fa5d1229",
                "sha256": "5e1a54e75d7a296f8872fb30de8550994b2b7846469dda098960fec1cf16472f"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4c26c01ceaab61cb652c54b5fa5d1229",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 350895,
            "upload_time": "2024-04-11T06:39:57",
            "upload_time_iso_8601": "2024-04-11T06:39:57.083924Z",
            "url": "https://files.pythonhosted.org/packages/ae/72/40b72c7814c3456e02ec157b4fa64051049ae23e3aab175a2e209297a7df/rs1090-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c9b9a151f1179cc830f429846cfd7ae349dca6b3f14eed63adf366675c765cb",
                "md5": "0e9900f547426eedc3969d2436029d70",
                "sha256": "88e68980b7cb3205f30cf1f029638ccbe1caa99f3573ce16ec32b6d189dc3831"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0e9900f547426eedc3969d2436029d70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 388446,
            "upload_time": "2024-04-11T06:39:58",
            "upload_time_iso_8601": "2024-04-11T06:39:58.931465Z",
            "url": "https://files.pythonhosted.org/packages/9c/9b/9a151f1179cc830f429846cfd7ae349dca6b3f14eed63adf366675c765cb/rs1090-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04bad9205861e9b9e094eb633f5d787cf61d2380eab16902f19ed3b697c1c9d9",
                "md5": "552fdd11568ba923633e38d8ce7873b3",
                "sha256": "824648f99cd16d89457aef463a4a141f00e31c1855bb73f9620f08a58e5e45b0"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "552fdd11568ba923633e38d8ce7873b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 524294,
            "upload_time": "2024-04-11T06:40:00",
            "upload_time_iso_8601": "2024-04-11T06:40:00.907356Z",
            "url": "https://files.pythonhosted.org/packages/04/ba/d9205861e9b9e094eb633f5d787cf61d2380eab16902f19ed3b697c1c9d9/rs1090-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51a27ef3fb1c74acf3a0e4d6fa5dddb19cb9fa54bb4516e7ff1cec16f664c195",
                "md5": "8f7adda813da1a4c3c8073e97ea1d1a7",
                "sha256": "da659872c9f2b7c813d2e5e3c703a7129654f74b9942b68fa7ed395f96ad3521"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f7adda813da1a4c3c8073e97ea1d1a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 365023,
            "upload_time": "2024-04-11T06:40:03",
            "upload_time_iso_8601": "2024-04-11T06:40:03.051062Z",
            "url": "https://files.pythonhosted.org/packages/51/a2/7ef3fb1c74acf3a0e4d6fa5dddb19cb9fa54bb4516e7ff1cec16f664c195/rs1090-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cbb03a2824bb7ce51b34055960bdcb43d6c0fbebe522c7c3acd9e6953f27adf",
                "md5": "2f90d4ac16c8f2ebed40c7606268c4ad",
                "sha256": "ceaa22f84ded1b053a1995fc7ea43c80b6f191b798af578d5f651fc9fb39ef08"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2f90d4ac16c8f2ebed40c7606268c4ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 257061,
            "upload_time": "2024-04-11T06:40:04",
            "upload_time_iso_8601": "2024-04-11T06:40:04.959885Z",
            "url": "https://files.pythonhosted.org/packages/8c/bb/03a2824bb7ce51b34055960bdcb43d6c0fbebe522c7c3acd9e6953f27adf/rs1090-0.2.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5070322edb361be6464f4e7501481451e5f4b3d3c78e84072f571e6e94d628ee",
                "md5": "729a24336c74953b64083a1e1fcb7090",
                "sha256": "cf298b56f1944cfa7d0b4e9bb10aba45decbf79f1547531fe9fcc1d1e24f999a"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "729a24336c74953b64083a1e1fcb7090",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 276634,
            "upload_time": "2024-04-11T06:40:06",
            "upload_time_iso_8601": "2024-04-11T06:40:06.867473Z",
            "url": "https://files.pythonhosted.org/packages/50/70/322edb361be6464f4e7501481451e5f4b3d3c78e84072f571e6e94d628ee/rs1090-0.2.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c689907c0fa30495a06a427e46456c655e2c1546e9671f541b74000a43cd2dba",
                "md5": "ce8aa1f2ecd124868e69b3b794ec497e",
                "sha256": "9e01e0957a411bb06375e00bf2da657ad4e85d4258ff3a8f097df5040e02b46b"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "ce8aa1f2ecd124868e69b3b794ec497e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 375586,
            "upload_time": "2024-04-11T06:40:09",
            "upload_time_iso_8601": "2024-04-11T06:40:09.058792Z",
            "url": "https://files.pythonhosted.org/packages/c6/89/907c0fa30495a06a427e46456c655e2c1546e9671f541b74000a43cd2dba/rs1090-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c3ba2a748e32a7e51afc03e99261258eb5a686c3ab4e440b1b57fc187455a3d",
                "md5": "6094b97223475ee090417dc26fcc246a",
                "sha256": "07769a49beeb4130b36955722665b3f6e8b7da6ba23b3e8c4469be6d825bc8f9"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6094b97223475ee090417dc26fcc246a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 345618,
            "upload_time": "2024-04-11T06:40:10",
            "upload_time_iso_8601": "2024-04-11T06:40:10.531022Z",
            "url": "https://files.pythonhosted.org/packages/4c/3b/a2a748e32a7e51afc03e99261258eb5a686c3ab4e440b1b57fc187455a3d/rs1090-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3078c64efacc7373c57273c93d20777c29d5932749137de2428148024048781b",
                "md5": "1d628ef181d9d1a5453e65054c0daa05",
                "sha256": "eb4ca6ad68c5a0afe92f77a8324bbb550d513db48bb7c38cc6bff719c340bd09"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1d628ef181d9d1a5453e65054c0daa05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 350585,
            "upload_time": "2024-04-11T06:40:11",
            "upload_time_iso_8601": "2024-04-11T06:40:11.991661Z",
            "url": "https://files.pythonhosted.org/packages/30/78/c64efacc7373c57273c93d20777c29d5932749137de2428148024048781b/rs1090-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18dcd6458497aee656cd8d9aefb04b8be9d8c70f9bb2f5fe80a387e74cb43899",
                "md5": "63c6e145b4d1bed2f923b1757b290118",
                "sha256": "34835c2a9fce25a5e49f363dcc3ee7afef56a4bd7b52889af00074fde1272223"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "63c6e145b4d1bed2f923b1757b290118",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 388526,
            "upload_time": "2024-04-11T06:40:13",
            "upload_time_iso_8601": "2024-04-11T06:40:13.514940Z",
            "url": "https://files.pythonhosted.org/packages/18/dc/d6458497aee656cd8d9aefb04b8be9d8c70f9bb2f5fe80a387e74cb43899/rs1090-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3183792c81b2a05f59c058ec874e9ee9c4c5725e677066426cce701aa8cfa936",
                "md5": "1596f83cab09b5e93fe12be9ab89cbd3",
                "sha256": "7e72f448fb76b215c7a6a2e2d73737804f04cd5e0586a3ead87b030991f80281"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1596f83cab09b5e93fe12be9ab89cbd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 518963,
            "upload_time": "2024-04-11T06:40:14",
            "upload_time_iso_8601": "2024-04-11T06:40:14.883460Z",
            "url": "https://files.pythonhosted.org/packages/31/83/792c81b2a05f59c058ec874e9ee9c4c5725e677066426cce701aa8cfa936/rs1090-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63a473fba97c0ea027c48a532fb8e8b7d6b63a4bf24b6f5a2fc64ed2ac37cb6d",
                "md5": "bf8a2f47ac230ac9e469d146c2da3a51",
                "sha256": "0bd1354ca1fbc844fa874801f7f904ccdbbbecec8d29e81067353de949ec5038"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf8a2f47ac230ac9e469d146c2da3a51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 364786,
            "upload_time": "2024-04-11T06:40:16",
            "upload_time_iso_8601": "2024-04-11T06:40:16.570034Z",
            "url": "https://files.pythonhosted.org/packages/63/a4/73fba97c0ea027c48a532fb8e8b7d6b63a4bf24b6f5a2fc64ed2ac37cb6d/rs1090-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36166e4aa041903dd39830b013389605020979827291ec4e4b2ce0eea14900e7",
                "md5": "95bdfec387409820ae149d06ae4e6939",
                "sha256": "67dfe6844dddeae229035ab99f78920d1a9e9706d16b7eb6e82cd0c20fe18e97"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "95bdfec387409820ae149d06ae4e6939",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 256641,
            "upload_time": "2024-04-11T06:40:18",
            "upload_time_iso_8601": "2024-04-11T06:40:18.347844Z",
            "url": "https://files.pythonhosted.org/packages/36/16/6e4aa041903dd39830b013389605020979827291ec4e4b2ce0eea14900e7/rs1090-0.2.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46dbef0a18bbd3cf381bc3d1aa675d6079c0515d4c842854afea1a4d79f15099",
                "md5": "62cd7d50c43f7a8e83fc747322c5e041",
                "sha256": "1db95f784c959515788a0c5fb51c6e731ba5b8fac76d2be9f4bb536561e7b882"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62cd7d50c43f7a8e83fc747322c5e041",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 276287,
            "upload_time": "2024-04-11T06:40:20",
            "upload_time_iso_8601": "2024-04-11T06:40:20.726771Z",
            "url": "https://files.pythonhosted.org/packages/46/db/ef0a18bbd3cf381bc3d1aa675d6079c0515d4c842854afea1a4d79f15099/rs1090-0.2.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5bc160265b80eeaec031b06e5bd7e21d3721ffec17a610273179dedef2acc6c",
                "md5": "cc9f033e21a8294e09eeb77cad29cc9b",
                "sha256": "b865e01309aa694c8965cfc49f1bcbc5b6308599d46c7f01d2bc335098d17805"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "cc9f033e21a8294e09eeb77cad29cc9b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 375537,
            "upload_time": "2024-04-11T06:40:22",
            "upload_time_iso_8601": "2024-04-11T06:40:22.423465Z",
            "url": "https://files.pythonhosted.org/packages/e5/bc/160265b80eeaec031b06e5bd7e21d3721ffec17a610273179dedef2acc6c/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d68acebdb138f8fcd378068448b8ab43a73591685c6b95a6d952feab5614ff2",
                "md5": "ee83837eaafa79b2519b92794997acc2",
                "sha256": "2235c3e1853c69273c5f6749fb0685943c8151d2de235fe8b389845e866c5160"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee83837eaafa79b2519b92794997acc2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 345602,
            "upload_time": "2024-04-11T06:40:24",
            "upload_time_iso_8601": "2024-04-11T06:40:24.747471Z",
            "url": "https://files.pythonhosted.org/packages/9d/68/acebdb138f8fcd378068448b8ab43a73591685c6b95a6d952feab5614ff2/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f8b7f79f97980892d8c43e9a54a85b1c05bbd7537148ac27060a10491de0e70",
                "md5": "1697f27e430cc012de5da577987a6355",
                "sha256": "e1864724c7a20411c7b4dd207cbd1782e77a0b25bb03de515023fb677697c0a7"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1697f27e430cc012de5da577987a6355",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 350523,
            "upload_time": "2024-04-11T06:40:27",
            "upload_time_iso_8601": "2024-04-11T06:40:27.280608Z",
            "url": "https://files.pythonhosted.org/packages/8f/8b/7f79f97980892d8c43e9a54a85b1c05bbd7537148ac27060a10491de0e70/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef16a3d0d1fc86e92e9d54afb6dcccb524de47243d9c03cdb410dd8ffd756abc",
                "md5": "49309e404b1ff69c40f67493765f7296",
                "sha256": "2dc0c44ca01795c5f7f28dabede7191185a133f920b2123a299a0fea7ae72055"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "49309e404b1ff69c40f67493765f7296",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 388391,
            "upload_time": "2024-04-11T06:40:29",
            "upload_time_iso_8601": "2024-04-11T06:40:29.415542Z",
            "url": "https://files.pythonhosted.org/packages/ef/16/a3d0d1fc86e92e9d54afb6dcccb524de47243d9c03cdb410dd8ffd756abc/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38e5de5eab198a75e019d2e055493bdb0d0efde9bf7cb4e6efddffc8d0a1f934",
                "md5": "e13eae539e164313b9d7296c83e802d8",
                "sha256": "0f23b1733c2e910f452f1a1041ab6e3720ce7e764c8cef26e1074210c7fabd4d"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e13eae539e164313b9d7296c83e802d8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 515652,
            "upload_time": "2024-04-11T06:40:30",
            "upload_time_iso_8601": "2024-04-11T06:40:30.893078Z",
            "url": "https://files.pythonhosted.org/packages/38/e5/de5eab198a75e019d2e055493bdb0d0efde9bf7cb4e6efddffc8d0a1f934/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60140a604484029e8702eb46911d7020f86dfd042b993bac0681a04f35bf702b",
                "md5": "6ab4ae375f3cc761cb6627189d2b704f",
                "sha256": "5662b0c997f174cf74d91a67a88c7215264bf556a460ef43e1228475d79372a9"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ab4ae375f3cc761cb6627189d2b704f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 364937,
            "upload_time": "2024-04-11T06:40:32",
            "upload_time_iso_8601": "2024-04-11T06:40:32.939471Z",
            "url": "https://files.pythonhosted.org/packages/60/14/0a604484029e8702eb46911d7020f86dfd042b993bac0681a04f35bf702b/rs1090-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e912d44f8cd288c081fa6380d1bcb98736d52f4a4307edf6e9a53ba851f725c",
                "md5": "3a3462007bed30a9c1550563270ebbc8",
                "sha256": "8d4bd98126c500a375d5fccce740b5a04692e85b3b6f155a486b3648c4ead767"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3a3462007bed30a9c1550563270ebbc8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 375532,
            "upload_time": "2024-04-11T06:40:34",
            "upload_time_iso_8601": "2024-04-11T06:40:34.285400Z",
            "url": "https://files.pythonhosted.org/packages/3e/91/2d44f8cd288c081fa6380d1bcb98736d52f4a4307edf6e9a53ba851f725c/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "850389b71b7c9d41154c13ff09d01a7462daebdfd06a934d2ac6d6dcd1028a2a",
                "md5": "78a30c09524ebe5f1eb5ddcaed043a99",
                "sha256": "9adf88e0eeea52ffea96d27d77bc0d6dc04b1742fa5dd5a530a65be44840c90c"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78a30c09524ebe5f1eb5ddcaed043a99",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 345597,
            "upload_time": "2024-04-11T06:40:35",
            "upload_time_iso_8601": "2024-04-11T06:40:35.651373Z",
            "url": "https://files.pythonhosted.org/packages/85/03/89b71b7c9d41154c13ff09d01a7462daebdfd06a934d2ac6d6dcd1028a2a/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57a75d383596db86d7a809ef7fc93727bace972af3f34ec4658963ad96a3b067",
                "md5": "3d10d2c6485bcc4828df79fb6dc8d20e",
                "sha256": "b3f7ceff9e513b8c8559cbe80b783db2848f4d049ba3a61fb85bb83f239b3cb5"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d10d2c6485bcc4828df79fb6dc8d20e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 350519,
            "upload_time": "2024-04-11T06:40:36",
            "upload_time_iso_8601": "2024-04-11T06:40:36.936928Z",
            "url": "https://files.pythonhosted.org/packages/57/a7/5d383596db86d7a809ef7fc93727bace972af3f34ec4658963ad96a3b067/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6ff1caef1023824924887b52ad77e7027ca0d471a1265e2afab53a0fc1cdfb4",
                "md5": "9de6ae21bb221ee4aed0923197a9a9ef",
                "sha256": "383940f62f0368a452e170ab8ea85c03a8da314c2009031d6cc7051041bcfedc"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9de6ae21bb221ee4aed0923197a9a9ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 388381,
            "upload_time": "2024-04-11T06:40:38",
            "upload_time_iso_8601": "2024-04-11T06:40:38.152155Z",
            "url": "https://files.pythonhosted.org/packages/d6/ff/1caef1023824924887b52ad77e7027ca0d471a1265e2afab53a0fc1cdfb4/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f79b41d5419dd65e56b15a09170d1231f3f2cc9738e11e3449fcedc649073e9",
                "md5": "34019554996747ad4e7ff94b89ec8ef3",
                "sha256": "c8f48f7c437aef49b949bc90bad01146d403313cdc739dbcbc99e0c32ae1a4dd"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "34019554996747ad4e7ff94b89ec8ef3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 515758,
            "upload_time": "2024-04-11T06:40:39",
            "upload_time_iso_8601": "2024-04-11T06:40:39.527828Z",
            "url": "https://files.pythonhosted.org/packages/5f/79/b41d5419dd65e56b15a09170d1231f3f2cc9738e11e3449fcedc649073e9/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5149edc8b490c9be44c940c00f0583593b3b5b6bf659634c8cbe281d2139bf39",
                "md5": "46717c787213c2ce72265345abe3aee4",
                "sha256": "5119731302dca34f856b485f82e4e7c8ccb8a8dd392004fbb7d285e4a0fa1587"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46717c787213c2ce72265345abe3aee4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 364932,
            "upload_time": "2024-04-11T06:40:40",
            "upload_time_iso_8601": "2024-04-11T06:40:40.810965Z",
            "url": "https://files.pythonhosted.org/packages/51/49/edc8b490c9be44c940c00f0583593b3b5b6bf659634c8cbe281d2139bf39/rs1090-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96045a2427c11995baed72c923ac5c1da1f94b607c58179fccc2a451e272762c",
                "md5": "f235fd3f87bd4520a8ba7ec88c400e06",
                "sha256": "8122c8a2a476d788f97583bb8902afc8a7c76ec4d82992f24910940029d7e95b"
            },
            "downloads": -1,
            "filename": "rs1090-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f235fd3f87bd4520a8ba7ec88c400e06",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 6740788,
            "upload_time": "2024-04-11T06:40:42",
            "upload_time_iso_8601": "2024-04-11T06:40:42.277861Z",
            "url": "https://files.pythonhosted.org/packages/96/04/5a2427c11995baed72c923ac5c1da1f94b607c58179fccc2a451e272762c/rs1090-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 06:40:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "xoolive",
    "github_project": "rs1090",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "rs1090"
}
        
Elapsed time: 0.22460s