telemetry-parser


Nametelemetry-parser JSON
Version 0.3.0 PyPI version JSON
download
home_page
Summary
upload_time2024-01-16 16:22:36
maintainer
docs_urlNone
authorAdrian <adrian.eddy@gmail.com>
requires_python>=3.7
licenseMIT OR Apache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # telemetry-parser-py
Library to parse real-time metadata embedded in video files or telemetry from other sources.

# Supported formats:
- [x] GoPro (HERO 5 and later)
- [x] Sony (a1, a7c, a7r IV, a7 IV, a7s III, a9 II, FX3, FX6, FX9, RX0 II, RX100 VII, ZV1, ZV-E10)
- [x] Insta360 (OneR, OneRS, SMO 4k, Go, GO2, Caddx Peanut)
- [x] DJI (Avata, O3 Air Unit, Action 2)
- [x] Blackmagic RAW (*.braw)
- [x] RED RAW (V-Raptor, KOMODO) (*.r3d)
- [x] Betaflight blackbox (*.bfl, *.bbl, *.csv)
- [x] ArduPilot logs (*.bin, *.log)
- [x] Gyroflow [.gcsv log](https://docs.gyroflow.xyz/app/technical-details/gcsv-format)
- [x] iOS apps: [`Sensor Logger`](https://apps.apple.com/us/app/sensor-logger/id1531582925), [`G-Field Recorder`](https://apps.apple.com/at/app/g-field-recorder/id1154585693), [`Gyro`](https://apps.apple.com/us/app/gyro-record-device-motion-data/id1161532981), [`GyroCam`](https://apps.apple.com/us/app/gyrocam-professional-camera/id1614296781)
- [x] Android apps: [`Sensor Logger`](https://play.google.com/store/apps/details?id=com.kelvin.sensorapp&hl=de_AT&gl=US), [`Sensor Record`](https://play.google.com/store/apps/details?id=de.martingolpashin.sensor_record), [`OpenCamera Sensors`](https://github.com/MobileRoboticsSkoltech/OpenCamera-Sensors), [`MotionCam Pro`](https://play.google.com/store/apps/details?id=com.motioncam.pro)
- [x] Runcam CSV (Runcam 5 Orange, iFlight GOCam GR, Runcam Thumb, Mobius Maxi 4K)
- [x] Hawkeye Firefly X Lite CSV
- [x] XTU (S2Pro, S3Pro)
- [x] WitMotion (WT901SDCL binary and *.txt)
- [x] Vuze (VuzeXR)
- [x] KanDao (Obisidian Pro)
- [x] [CAMM format](https://developers.google.com/streetview/publish/camm-spec)
- [ ] TODO DJI flight logs (*.dat, *.txt)

# Example usage:
```python
import telemetry_parser

tp = telemetry_parser.Parser('sample.mp4')
print('Camera: ', tp.camera)
print('Model: ', tp.model)

# return all telemetry as an array of dicts
print('Telemetry', tp.telemetry())

# format the values with units etc
print('Telemetry formatted', tp.telemetry(human_readable = True))

# return only gyro and accel with timestamps, normalized to a single orientation and scaled to deg/s and m/s2
print('Normalized IMU', tp.normalized_imu())
```

# Building
1. Setup virtual env: `python -m venv .env ; source .env/bin/activate`
2. Install maturin: `pip install maturin`
2. Build python wheels: `maturin build --release`
3. Resulting wheels will be in `target/wheels/` directory
4. Install using pip: `pip install telemetry_parser_py-0.1.0-cp39-none-win_amd64.whl`

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "telemetry-parser",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Adrian <adrian.eddy@gmail.com>",
    "author_email": "Adrian <adrian.eddy@gmail.com>",
    "download_url": "",
    "platform": null,
    "description": "# telemetry-parser-py\nLibrary to parse real-time metadata embedded in video files or telemetry from other sources.\n\n# Supported formats:\n- [x] GoPro (HERO 5 and later)\n- [x] Sony (a1, a7c, a7r IV, a7 IV, a7s III, a9 II, FX3, FX6, FX9, RX0 II, RX100 VII, ZV1, ZV-E10)\n- [x] Insta360 (OneR, OneRS, SMO 4k, Go, GO2, Caddx Peanut)\n- [x] DJI (Avata, O3 Air Unit, Action 2)\n- [x] Blackmagic RAW (*.braw)\n- [x] RED RAW (V-Raptor, KOMODO) (*.r3d)\n- [x] Betaflight blackbox (*.bfl, *.bbl, *.csv)\n- [x] ArduPilot logs (*.bin, *.log)\n- [x] Gyroflow [.gcsv log](https://docs.gyroflow.xyz/app/technical-details/gcsv-format)\n- [x] iOS apps: [`Sensor Logger`](https://apps.apple.com/us/app/sensor-logger/id1531582925), [`G-Field Recorder`](https://apps.apple.com/at/app/g-field-recorder/id1154585693), [`Gyro`](https://apps.apple.com/us/app/gyro-record-device-motion-data/id1161532981), [`GyroCam`](https://apps.apple.com/us/app/gyrocam-professional-camera/id1614296781)\n- [x] Android apps: [`Sensor Logger`](https://play.google.com/store/apps/details?id=com.kelvin.sensorapp&hl=de_AT&gl=US), [`Sensor Record`](https://play.google.com/store/apps/details?id=de.martingolpashin.sensor_record), [`OpenCamera Sensors`](https://github.com/MobileRoboticsSkoltech/OpenCamera-Sensors), [`MotionCam Pro`](https://play.google.com/store/apps/details?id=com.motioncam.pro)\n- [x] Runcam CSV (Runcam 5 Orange, iFlight GOCam GR, Runcam Thumb, Mobius Maxi 4K)\n- [x] Hawkeye Firefly X Lite CSV\n- [x] XTU (S2Pro, S3Pro)\n- [x] WitMotion (WT901SDCL binary and *.txt)\n- [x] Vuze (VuzeXR)\n- [x] KanDao (Obisidian Pro)\n- [x] [CAMM format](https://developers.google.com/streetview/publish/camm-spec)\n- [ ] TODO DJI flight logs (*.dat, *.txt)\n\n# Example usage:\n```python\nimport telemetry_parser\n\ntp = telemetry_parser.Parser('sample.mp4')\nprint('Camera: ', tp.camera)\nprint('Model: ', tp.model)\n\n# return all telemetry as an array of dicts\nprint('Telemetry', tp.telemetry())\n\n# format the values with units etc\nprint('Telemetry formatted', tp.telemetry(human_readable = True))\n\n# return only gyro and accel with timestamps, normalized to a single orientation and scaled to deg/s and m/s2\nprint('Normalized IMU', tp.normalized_imu())\n```\n\n# Building\n1. Setup virtual env: `python -m venv .env ; source .env/bin/activate`\n2. Install maturin: `pip install maturin`\n2. Build python wheels: `maturin build --release`\n3. Resulting wheels will be in `target/wheels/` directory\n4. Install using pip: `pip install telemetry_parser_py-0.1.0-cp39-none-win_amd64.whl`\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "",
    "version": "0.3.0",
    "project_urls": {
        "homepage": "https://github.com/AdrianEddy/telemetry-parser"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f49b2a91c651cb0b928d0539759cb5de1751994726cf08c066d9f34c50c9463f",
                "md5": "2660669f58e2282c8c7fbcc701baa5f3",
                "sha256": "d32166a81af38ee7c8d6e6e9a40adf12301f4c17824f6c3fbbfae0c2e577cf03"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2660669f58e2282c8c7fbcc701baa5f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1181861,
            "upload_time": "2024-01-16T16:22:36",
            "upload_time_iso_8601": "2024-01-16T16:22:36.254263Z",
            "url": "https://files.pythonhosted.org/packages/f4/9b/2a91c651cb0b928d0539759cb5de1751994726cf08c066d9f34c50c9463f/telemetry_parser-0.3.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3893faac067c7a886022726002e43ba3250ef27298b7545bd50d2f0af1f9cf7",
                "md5": "cdfdfc042ae6e26339ad98e01dae7850",
                "sha256": "37b600482b329978563acffa529c9829498794e994c2018a09cfbab23d47c09a"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "cdfdfc042ae6e26339ad98e01dae7850",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2297573,
            "upload_time": "2024-01-16T16:22:38",
            "upload_time_iso_8601": "2024-01-16T16:22:38.450115Z",
            "url": "https://files.pythonhosted.org/packages/d3/89/3faac067c7a886022726002e43ba3250ef27298b7545bd50d2f0af1f9cf7/telemetry_parser-0.3.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aac8574b86a5d9fec7b46640b7345830d7611461c9f914ecd42e456634d20121",
                "md5": "6355c73e896687f8d641a8e7391f7bbc",
                "sha256": "40fec1a98ebc9fa3fb63e715a3863fdcd0fe6ab0a9b9bb1058c54a583be0c9ba"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6355c73e896687f8d641a8e7391f7bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1593035,
            "upload_time": "2024-01-16T16:22:40",
            "upload_time_iso_8601": "2024-01-16T16:22:40.353935Z",
            "url": "https://files.pythonhosted.org/packages/aa/c8/574b86a5d9fec7b46640b7345830d7611461c9f914ecd42e456634d20121/telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08deaa522a56ec95cd093c1eab1a4300ee5f731768b320fe7f4a23e0641628c3",
                "md5": "59914473be3abc976442dd0c39d89c23",
                "sha256": "c5bf1cb46c8e4cca301f10d1d73821b09b7a22f4249997d897af12c082cd6760"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "59914473be3abc976442dd0c39d89c23",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1707374,
            "upload_time": "2024-01-16T16:22:42",
            "upload_time_iso_8601": "2024-01-16T16:22:42.237365Z",
            "url": "https://files.pythonhosted.org/packages/08/de/aa522a56ec95cd093c1eab1a4300ee5f731768b320fe7f4a23e0641628c3/telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0af38540fe05952a177428a9bc0ebb934a2d758fa4cf33295de0b28dbce6d314",
                "md5": "de47cfa9fb37bfd954aad9d2690fcb2f",
                "sha256": "7aa4e5f03060e28185887dfe6a225e6abc9d987cf5be8031819ea77623b0b4f4"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de47cfa9fb37bfd954aad9d2690fcb2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1623725,
            "upload_time": "2024-01-16T16:22:44",
            "upload_time_iso_8601": "2024-01-16T16:22:44.155465Z",
            "url": "https://files.pythonhosted.org/packages/0a/f3/8540fe05952a177428a9bc0ebb934a2d758fa4cf33295de0b28dbce6d314/telemetry_parser-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d6282f38028359d36abc0bf35d3549c46033cd7a203e2fa623a45001a5d7453",
                "md5": "ffd329d562061b9cb704071bbbf00943",
                "sha256": "57272a97d9c6290aa193cf8815fab8dfa8382a46b7f2da2059275148b3d51efc"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ffd329d562061b9cb704071bbbf00943",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1651760,
            "upload_time": "2024-01-16T16:22:46",
            "upload_time_iso_8601": "2024-01-16T16:22:46.045975Z",
            "url": "https://files.pythonhosted.org/packages/8d/62/82f38028359d36abc0bf35d3549c46033cd7a203e2fa623a45001a5d7453/telemetry_parser-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6888135063795c99d549c786c8f207db5e74d19516b28a8e5900f853638ff6b9",
                "md5": "538c9c6b5589d39ac9c8220dd58d21dc",
                "sha256": "2db1526e956aa81edb1141af21e9beff0b54086fcb10b215c6936fa8704673a5"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "538c9c6b5589d39ac9c8220dd58d21dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 980305,
            "upload_time": "2024-01-16T16:22:47",
            "upload_time_iso_8601": "2024-01-16T16:22:47.361692Z",
            "url": "https://files.pythonhosted.org/packages/68/88/135063795c99d549c786c8f207db5e74d19516b28a8e5900f853638ff6b9/telemetry_parser-0.3.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef02a4649a25b2837263bcb5d9c3f1172535e7e641c8daae2d9b72d027f6a374",
                "md5": "277b7b098dd5f196c6131e2aab2aed10",
                "sha256": "f93a4e9efcdfffe882ada5bcc1c0d2d65d0ffd1a58ca7cce8d9ea68d69df1c2f"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "277b7b098dd5f196c6131e2aab2aed10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1095057,
            "upload_time": "2024-01-16T16:22:49",
            "upload_time_iso_8601": "2024-01-16T16:22:49.267766Z",
            "url": "https://files.pythonhosted.org/packages/ef/02/a4649a25b2837263bcb5d9c3f1172535e7e641c8daae2d9b72d027f6a374/telemetry_parser-0.3.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3aa13ccd36793bb894416e20e510b11c50a856dbd4c7ac7fa2ea62c84e15e235",
                "md5": "e9ac8f74518d47f8cb58dd91170aae53",
                "sha256": "353b36e0f4bd63fbb8694924ba5fd6a1fb45b59d2a62c9c62d65376734390799"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9ac8f74518d47f8cb58dd91170aae53",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1181908,
            "upload_time": "2024-01-16T16:22:51",
            "upload_time_iso_8601": "2024-01-16T16:22:51.599590Z",
            "url": "https://files.pythonhosted.org/packages/3a/a1/3ccd36793bb894416e20e510b11c50a856dbd4c7ac7fa2ea62c84e15e235/telemetry_parser-0.3.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbcd50c756992d3abe9565ef35a95e22c827aedede49090f2009b07dacdb0b54",
                "md5": "98f274e9a65eee5c9d6c56b24519c42a",
                "sha256": "35e1462811b930153c56376fdc93b063d6c6d47fc4c86191ee4a1c7736fcd6f2"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "98f274e9a65eee5c9d6c56b24519c42a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2297642,
            "upload_time": "2024-01-16T16:22:53",
            "upload_time_iso_8601": "2024-01-16T16:22:53.062276Z",
            "url": "https://files.pythonhosted.org/packages/bb/cd/50c756992d3abe9565ef35a95e22c827aedede49090f2009b07dacdb0b54/telemetry_parser-0.3.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aea98f4d6d986c3e7376f509237f18d216b132bc7a8e3ff01d3a1740b5bac302",
                "md5": "20664d958c94ad9f0aa2ca1976a568f7",
                "sha256": "9e019db800cbf22ae4aa53678bc4651435ded2669cfc05597a866e11216007a9"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20664d958c94ad9f0aa2ca1976a568f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1593081,
            "upload_time": "2024-01-16T16:22:54",
            "upload_time_iso_8601": "2024-01-16T16:22:54.505087Z",
            "url": "https://files.pythonhosted.org/packages/ae/a9/8f4d6d986c3e7376f509237f18d216b132bc7a8e3ff01d3a1740b5bac302/telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ec6d211002335135e5971be835e7587cd7cc3916af1d21f1f84b741df8ae763",
                "md5": "9e61a7c3a8ee5c631569e474c3777edb",
                "sha256": "ca176017ca5a310f7657fe0769f64ef5464a2ba70e9b41c98f0e877651142784"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9e61a7c3a8ee5c631569e474c3777edb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1707327,
            "upload_time": "2024-01-16T16:22:55",
            "upload_time_iso_8601": "2024-01-16T16:22:55.859416Z",
            "url": "https://files.pythonhosted.org/packages/1e/c6/d211002335135e5971be835e7587cd7cc3916af1d21f1f84b741df8ae763/telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5312cabbb8f574ef3468be0a8dd5c38225d0356c05dcb4590d0fb5215ffaa178",
                "md5": "54ac803561aab7137a6f0b6fc10ffa59",
                "sha256": "4556d75bf5b80a44bdb790aad5e3aefe62e2b439ca0b09a2b5b8163815255bc3"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54ac803561aab7137a6f0b6fc10ffa59",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1623872,
            "upload_time": "2024-01-16T16:22:57",
            "upload_time_iso_8601": "2024-01-16T16:22:57.196976Z",
            "url": "https://files.pythonhosted.org/packages/53/12/cabbb8f574ef3468be0a8dd5c38225d0356c05dcb4590d0fb5215ffaa178/telemetry_parser-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "884ed78e80bd54590a46811165b59703adb761eb6c8d4760fa214db4318ed72f",
                "md5": "e559230f6646435f86cb9733674f62b6",
                "sha256": "5dc179da97c00a0bc474cbb3bc1910dd4c47055c80c247c07d471556226da222"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e559230f6646435f86cb9733674f62b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1651646,
            "upload_time": "2024-01-16T16:22:58",
            "upload_time_iso_8601": "2024-01-16T16:22:58.931110Z",
            "url": "https://files.pythonhosted.org/packages/88/4e/d78e80bd54590a46811165b59703adb761eb6c8d4760fa214db4318ed72f/telemetry_parser-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd1a46b9189e3522dc2f8a7f1688881e4b82eea331d013f12c8d09ec38fb0332",
                "md5": "2d76c68616d6d7da4e5c16cd2400df20",
                "sha256": "999ef34dfb14beafa90fbb11040f4bf25e96140c9452cf3dbb265f6ed8287350"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2d76c68616d6d7da4e5c16cd2400df20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 980317,
            "upload_time": "2024-01-16T16:23:00",
            "upload_time_iso_8601": "2024-01-16T16:23:00.659556Z",
            "url": "https://files.pythonhosted.org/packages/dd/1a/46b9189e3522dc2f8a7f1688881e4b82eea331d013f12c8d09ec38fb0332/telemetry_parser-0.3.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf43060840aaf1c4ed7a7b0059156392da957467743e5648d6947249785c5202",
                "md5": "033d107feb76400a8affc5ac6295d51b",
                "sha256": "d83623014431d1f6c404152808cac685a8c1f6a884918eb9e9f389fb6ee66380"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "033d107feb76400a8affc5ac6295d51b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1095054,
            "upload_time": "2024-01-16T16:23:02",
            "upload_time_iso_8601": "2024-01-16T16:23:02.431224Z",
            "url": "https://files.pythonhosted.org/packages/bf/43/060840aaf1c4ed7a7b0059156392da957467743e5648d6947249785c5202/telemetry_parser-0.3.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f632dffa40b8a55a5ec0e78da986fb36f866a9e713f5b0048fe5a9dc22273167",
                "md5": "249623ace893e2b9af821185dd9b9df2",
                "sha256": "c5b55667c3173ad24e88e6785620c00d5c1c75ed4cfe3b3ba61e157622350e81"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "249623ace893e2b9af821185dd9b9df2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1181105,
            "upload_time": "2024-01-16T16:23:03",
            "upload_time_iso_8601": "2024-01-16T16:23:03.907057Z",
            "url": "https://files.pythonhosted.org/packages/f6/32/dffa40b8a55a5ec0e78da986fb36f866a9e713f5b0048fe5a9dc22273167/telemetry_parser-0.3.0-cp312-cp312-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16a7bb33066cd8c4d858b68caf7c69f23696fec72e1708d6606ab050488e9bb1",
                "md5": "5535d27c786c0f8be3b2354fa39395cb",
                "sha256": "e1a86840644d476c475a7fd58b8212328b7f015d2ad182af4eb4a66feb5f00cb"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5535d27c786c0f8be3b2354fa39395cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2297114,
            "upload_time": "2024-01-16T16:23:05",
            "upload_time_iso_8601": "2024-01-16T16:23:05.529176Z",
            "url": "https://files.pythonhosted.org/packages/16/a7/bb33066cd8c4d858b68caf7c69f23696fec72e1708d6606ab050488e9bb1/telemetry_parser-0.3.0-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b6486ddac798ecaac741dfa2bfedd2243a034044e2bd1059c35bdba72dbdde",
                "md5": "fca7cfc7fa4fef2d4d205bd535a8f81f",
                "sha256": "91f75b5fdae737fee1664129e204a27d41dac7fd579f413afd1a2e0465cc02a0"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fca7cfc7fa4fef2d4d205bd535a8f81f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1592752,
            "upload_time": "2024-01-16T16:23:07",
            "upload_time_iso_8601": "2024-01-16T16:23:07.558203Z",
            "url": "https://files.pythonhosted.org/packages/30/b6/486ddac798ecaac741dfa2bfedd2243a034044e2bd1059c35bdba72dbdde/telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b10dc172f62c400e335c7e3d9c1fe4f60aa671eec27eca9e79b9dff29223a555",
                "md5": "d025bcd2dccfbdf99161ed78ed53e536",
                "sha256": "525d6815858d78653a3351745089af90d6324072e85a77c615acd6f8b48e2508"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d025bcd2dccfbdf99161ed78ed53e536",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1707191,
            "upload_time": "2024-01-16T16:23:09",
            "upload_time_iso_8601": "2024-01-16T16:23:09.681063Z",
            "url": "https://files.pythonhosted.org/packages/b1/0d/c172f62c400e335c7e3d9c1fe4f60aa671eec27eca9e79b9dff29223a555/telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6182523db96a9a1a04c518355c4779c2761cc85b300fe42b8a74e157e01fb204",
                "md5": "6f48c453d07f630fe19d9d60f616785e",
                "sha256": "e174b8d0665c343626d402f8ddcc306f9e99770b21bd62f5052be081eb2347d1"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f48c453d07f630fe19d9d60f616785e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1623622,
            "upload_time": "2024-01-16T16:23:12",
            "upload_time_iso_8601": "2024-01-16T16:23:12.025122Z",
            "url": "https://files.pythonhosted.org/packages/61/82/523db96a9a1a04c518355c4779c2761cc85b300fe42b8a74e157e01fb204/telemetry_parser-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4b31017ec53b9c339abc7e8af1219d0fc13ba02446c5f9c3cb72c88a71b1eb1",
                "md5": "751c7b367d5f024095abd01af06e61db",
                "sha256": "8bbfab378844b2ca5c69e8b29ee855bf85da0d3b3ef5aa4e043f664e9f97ba06"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "751c7b367d5f024095abd01af06e61db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1650456,
            "upload_time": "2024-01-16T16:23:13",
            "upload_time_iso_8601": "2024-01-16T16:23:13.958342Z",
            "url": "https://files.pythonhosted.org/packages/a4/b3/1017ec53b9c339abc7e8af1219d0fc13ba02446c5f9c3cb72c88a71b1eb1/telemetry_parser-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cd409e0cd1463c514f8abcef106ff0aec43adea6d55282e740d9cf88a89e934",
                "md5": "e65cc7d53fb8035dbff78094fec1d05d",
                "sha256": "73f0e71746a116a0653567c9fa2f8191a79473b67fba37ce9e083b40fc05e372"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e65cc7d53fb8035dbff78094fec1d05d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 980859,
            "upload_time": "2024-01-16T16:23:15",
            "upload_time_iso_8601": "2024-01-16T16:23:15.377990Z",
            "url": "https://files.pythonhosted.org/packages/8c/d4/09e0cd1463c514f8abcef106ff0aec43adea6d55282e740d9cf88a89e934/telemetry_parser-0.3.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5318fe19b1fca7db40b597da590faab20ec99c556c50b825fdefe651ff703c77",
                "md5": "9bffcd7af29be6f7f4576bbba5400fa0",
                "sha256": "94917bb7e63b97f7ea0cefbab9a27e763c5e709b2d40797e31a59dd6e76fdd90"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9bffcd7af29be6f7f4576bbba5400fa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1095620,
            "upload_time": "2024-01-16T16:23:16",
            "upload_time_iso_8601": "2024-01-16T16:23:16.851387Z",
            "url": "https://files.pythonhosted.org/packages/53/18/fe19b1fca7db40b597da590faab20ec99c556c50b825fdefe651ff703c77/telemetry_parser-0.3.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de5a338ab65104fc133ede243ba4cdfbd2bfb6f0ec8d9a9828e08ff6fbcac795",
                "md5": "2bc42741b381ab80cc15f983ed53a585",
                "sha256": "186450ec328e48bad9add8f23ecb66a243cdc7cf0d7281e8fb189bc0eb1e9a5c"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bc42741b381ab80cc15f983ed53a585",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1182131,
            "upload_time": "2024-01-16T16:23:19",
            "upload_time_iso_8601": "2024-01-16T16:23:19.153396Z",
            "url": "https://files.pythonhosted.org/packages/de/5a/338ab65104fc133ede243ba4cdfbd2bfb6f0ec8d9a9828e08ff6fbcac795/telemetry_parser-0.3.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2278e4518ecf1cc552d5980531968b5d1a290aba2c24bf566f1d4fa55e84f289",
                "md5": "919ab398333e6a9f6322d9ade7fd11cd",
                "sha256": "d10d8db4a5da9afa04436a1d12ed9878fac11f3068c2e0051d4fb4aeab5c7e22"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "919ab398333e6a9f6322d9ade7fd11cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2298576,
            "upload_time": "2024-01-16T16:23:21",
            "upload_time_iso_8601": "2024-01-16T16:23:21.432937Z",
            "url": "https://files.pythonhosted.org/packages/22/78/e4518ecf1cc552d5980531968b5d1a290aba2c24bf566f1d4fa55e84f289/telemetry_parser-0.3.0-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "921793dd70545b47f166370305a16686b04457fb6711765878083edec80c45bf",
                "md5": "8adff7be53913960151ee181b27f1fc2",
                "sha256": "59b818db14c8ffa9be5aa752a67e9acf3dabb08f7169af0f7b3946cd3f967ab7"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8adff7be53913960151ee181b27f1fc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1593074,
            "upload_time": "2024-01-16T16:23:22",
            "upload_time_iso_8601": "2024-01-16T16:23:22.802393Z",
            "url": "https://files.pythonhosted.org/packages/92/17/93dd70545b47f166370305a16686b04457fb6711765878083edec80c45bf/telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "635bccd1128b5f23af4d9bf1e17868916abc973f57400d931018e366135f725c",
                "md5": "fe554de5f2022ac49b52b06bd6802ca3",
                "sha256": "afcc035f3a3316b999702aaec72ab20b85d3e39e02eb2d728bc34197bd79b383"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fe554de5f2022ac49b52b06bd6802ca3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1707390,
            "upload_time": "2024-01-16T16:23:24",
            "upload_time_iso_8601": "2024-01-16T16:23:24.113232Z",
            "url": "https://files.pythonhosted.org/packages/63/5b/ccd1128b5f23af4d9bf1e17868916abc973f57400d931018e366135f725c/telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9215daeb9aa3901c13e9c43abac89548b5e5399df9d965e1ed03add85df8e3d0",
                "md5": "f0e6b869d3ef51db06aecb39acda763b",
                "sha256": "04bedbfc122b4749d16293cc25fed771cafb33d6fa24ec7a48978aca31f6d7af"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0e6b869d3ef51db06aecb39acda763b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1623982,
            "upload_time": "2024-01-16T16:23:25",
            "upload_time_iso_8601": "2024-01-16T16:23:25.746836Z",
            "url": "https://files.pythonhosted.org/packages/92/15/daeb9aa3901c13e9c43abac89548b5e5399df9d965e1ed03add85df8e3d0/telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51fbc2018a49ac779a8eeebd02cb8973b68a0424f873e6265eddf785d212b17b",
                "md5": "ce1e7491bf2ff6e697eb488be6dd1768",
                "sha256": "5a2b2987a2f1fbc78f1face9da45114abc835784a07c4fbed406e6e0d540a6e0"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ce1e7491bf2ff6e697eb488be6dd1768",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1652361,
            "upload_time": "2024-01-16T16:23:27",
            "upload_time_iso_8601": "2024-01-16T16:23:27.344695Z",
            "url": "https://files.pythonhosted.org/packages/51/fb/c2018a49ac779a8eeebd02cb8973b68a0424f873e6265eddf785d212b17b/telemetry_parser-0.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d74373b2deba5212ac7c15f88a08ef2ad966002dc74ef60ce3c9e7784c84734",
                "md5": "ec9a747182bed7e08ecaf82fd93a434f",
                "sha256": "44ccf47df3a3428bf3285a2fd10dd943ef7f1aaf39fa71d0bc16edb624b49060"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ec9a747182bed7e08ecaf82fd93a434f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 980547,
            "upload_time": "2024-01-16T16:23:28",
            "upload_time_iso_8601": "2024-01-16T16:23:28.807392Z",
            "url": "https://files.pythonhosted.org/packages/4d/74/373b2deba5212ac7c15f88a08ef2ad966002dc74ef60ce3c9e7784c84734/telemetry_parser-0.3.0-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6fa0d44e43a2c84993314a206a625c067db71b15a280307c43ce9a3a78cdcb0",
                "md5": "74612262fa12c876d9aa7e7483701c8a",
                "sha256": "bfcf7b31f622ea1ebb3a3e24e9be6925ead407a2514867e6fb6b909aeffa55d4"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74612262fa12c876d9aa7e7483701c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1094920,
            "upload_time": "2024-01-16T16:23:30",
            "upload_time_iso_8601": "2024-01-16T16:23:30.331876Z",
            "url": "https://files.pythonhosted.org/packages/b6/fa/0d44e43a2c84993314a206a625c067db71b15a280307c43ce9a3a78cdcb0/telemetry_parser-0.3.0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d61b4acbc04dd12059f4c66c3d1c103652b40f7a0286dd6f3ce6de7de582e1d",
                "md5": "5e73cb2ffdcd820de159d13657498257",
                "sha256": "10d4700d3051bd4bfc213849cf857975392d6cd7c455c35bfb88ca0e9674c47e"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e73cb2ffdcd820de159d13657498257",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1182119,
            "upload_time": "2024-01-16T16:23:31",
            "upload_time_iso_8601": "2024-01-16T16:23:31.621569Z",
            "url": "https://files.pythonhosted.org/packages/3d/61/b4acbc04dd12059f4c66c3d1c103652b40f7a0286dd6f3ce6de7de582e1d/telemetry_parser-0.3.0-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81e2145e36771cc7936e71311499a4fcd61bfec53ac0b0f2881ba776fe5cdc5a",
                "md5": "241603e1d93d9543af1fd78a69c028b8",
                "sha256": "69fc49d191156cdda0af45f6bc2257e3051a68d91dc6da15b1d55b2b7bfd72fb"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "241603e1d93d9543af1fd78a69c028b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2298455,
            "upload_time": "2024-01-16T16:23:33",
            "upload_time_iso_8601": "2024-01-16T16:23:33.809081Z",
            "url": "https://files.pythonhosted.org/packages/81/e2/145e36771cc7936e71311499a4fcd61bfec53ac0b0f2881ba776fe5cdc5a/telemetry_parser-0.3.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01c540a6ab507c6ed430a45b613f5f37db6feef0de2fd57b4c5381bc94eb2ea8",
                "md5": "2f7fc9b827588e3c8e5fa104e707855f",
                "sha256": "1fc9c10046606e230b7aee1af0dcf818b030bc92c0ea570c566e12c7321c1627"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f7fc9b827588e3c8e5fa104e707855f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1593226,
            "upload_time": "2024-01-16T16:23:35",
            "upload_time_iso_8601": "2024-01-16T16:23:35.139254Z",
            "url": "https://files.pythonhosted.org/packages/01/c5/40a6ab507c6ed430a45b613f5f37db6feef0de2fd57b4c5381bc94eb2ea8/telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf06e817ffa3eb782ee0f51dd0415b3dea7d3f1910adc488377eec8e36e03e2a",
                "md5": "c0f704fd85648e1f1d7b6712e064e599",
                "sha256": "0055c4b203382d8d120637775bd2eca440a05332b8c91a3db3db7833d2174d12"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c0f704fd85648e1f1d7b6712e064e599",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1707342,
            "upload_time": "2024-01-16T16:23:37",
            "upload_time_iso_8601": "2024-01-16T16:23:37.605493Z",
            "url": "https://files.pythonhosted.org/packages/bf/06/e817ffa3eb782ee0f51dd0415b3dea7d3f1910adc488377eec8e36e03e2a/telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7975387debb431ef928db7124a61a7c8c87b14dda1b0b9b01020ae36b859822",
                "md5": "6bf2e96788e236a8a0f782ab3e9f3f68",
                "sha256": "6daf01a604cba8923f309435d2821fa0cb4ca4257449f9f1cec0d28331097261"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bf2e96788e236a8a0f782ab3e9f3f68",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1623917,
            "upload_time": "2024-01-16T16:23:39",
            "upload_time_iso_8601": "2024-01-16T16:23:39.028725Z",
            "url": "https://files.pythonhosted.org/packages/f7/97/5387debb431ef928db7124a61a7c8c87b14dda1b0b9b01020ae36b859822/telemetry_parser-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74220f7dee9cccee5343a87f51308ae87b83a739d8c66e02c34a10fab3785612",
                "md5": "3d71daabb7da3d0788e54230c061cf3e",
                "sha256": "38a51b12c72acffc20fc8021afb62ba9824099578a99182e131bc543d70281fb"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d71daabb7da3d0788e54230c061cf3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1652220,
            "upload_time": "2024-01-16T16:23:40",
            "upload_time_iso_8601": "2024-01-16T16:23:40.645016Z",
            "url": "https://files.pythonhosted.org/packages/74/22/0f7dee9cccee5343a87f51308ae87b83a739d8c66e02c34a10fab3785612/telemetry_parser-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f482ff8aa5345cce8d78b84c498947a5d3a79c1d2df6493d45e29fd445db62d6",
                "md5": "4dd502ca06bce35607f47d054db7cb4c",
                "sha256": "e8a18bd10cebc2b055c496e8705f49b55988ec5017d43667edcdd6ff5ca2ad93"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4dd502ca06bce35607f47d054db7cb4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 980502,
            "upload_time": "2024-01-16T16:23:43",
            "upload_time_iso_8601": "2024-01-16T16:23:43.097255Z",
            "url": "https://files.pythonhosted.org/packages/f4/82/ff8aa5345cce8d78b84c498947a5d3a79c1d2df6493d45e29fd445db62d6/telemetry_parser-0.3.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bec9609fbbefbdaf94c1460aa36eb2182a745b54dd6fc988b4191f0a96210b32",
                "md5": "e2c5c3dc81e1c4077e17f2d59adde584",
                "sha256": "2ee014e6e94bb38f30bdec91522d579931b47a7065c13b45f80b351ed868218f"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2c5c3dc81e1c4077e17f2d59adde584",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1094993,
            "upload_time": "2024-01-16T16:23:44",
            "upload_time_iso_8601": "2024-01-16T16:23:44.409704Z",
            "url": "https://files.pythonhosted.org/packages/be/c9/609fbbefbdaf94c1460aa36eb2182a745b54dd6fc988b4191f0a96210b32/telemetry_parser-0.3.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3916d90ab5b04d5dad58a528bfa90faacba28cbcb51e84c2f0a64ec551fed252",
                "md5": "9b4542f23e4f829b810fefe2be58a855",
                "sha256": "1a0ed50fcc6d970b3f70d9d4daff9c4896f107349103ae6e0e3f1b89079cea48"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b4542f23e4f829b810fefe2be58a855",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1182236,
            "upload_time": "2024-01-16T16:23:46",
            "upload_time_iso_8601": "2024-01-16T16:23:46.126725Z",
            "url": "https://files.pythonhosted.org/packages/39/16/d90ab5b04d5dad58a528bfa90faacba28cbcb51e84c2f0a64ec551fed252/telemetry_parser-0.3.0-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d93f66286922f49ac1e7f3c683f365b33b88d50896688c1e3d92aa7f3c001045",
                "md5": "ec25e24c887e9624ab31ddd9e91f2afe",
                "sha256": "41934426d46c5bd34bbc03263088f4d76f77c2fbef96c3d34c398039e5330314"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ec25e24c887e9624ab31ddd9e91f2afe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2298572,
            "upload_time": "2024-01-16T16:23:47",
            "upload_time_iso_8601": "2024-01-16T16:23:47.468418Z",
            "url": "https://files.pythonhosted.org/packages/d9/3f/66286922f49ac1e7f3c683f365b33b88d50896688c1e3d92aa7f3c001045/telemetry_parser-0.3.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7d899aa4697dbec214e4f8a45cc82c98e3ed58ec3c64442ae9222a4eaa45357",
                "md5": "8731e0938f8978a43439c208856468f4",
                "sha256": "e9e9020a5e7f180d82fc7f6ff5e6b576df5d3a017d19febbb9ca3e8cd9d02541"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8731e0938f8978a43439c208856468f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1593225,
            "upload_time": "2024-01-16T16:23:49",
            "upload_time_iso_8601": "2024-01-16T16:23:49.045656Z",
            "url": "https://files.pythonhosted.org/packages/a7/d8/99aa4697dbec214e4f8a45cc82c98e3ed58ec3c64442ae9222a4eaa45357/telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b49dafa636177b7dc3e7df596f41f8dd7ec4825944bed64d559c3a09d4a5172a",
                "md5": "a6e51e4e54fd8c05d0732134ad0111e6",
                "sha256": "0e71b0a999032be79b3915ec713313407ec30722c913d5d65c7766263abb2447"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a6e51e4e54fd8c05d0732134ad0111e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1707754,
            "upload_time": "2024-01-16T16:23:50",
            "upload_time_iso_8601": "2024-01-16T16:23:50.472213Z",
            "url": "https://files.pythonhosted.org/packages/b4/9d/afa636177b7dc3e7df596f41f8dd7ec4825944bed64d559c3a09d4a5172a/telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0da5a8e8b83e8402f8b04d4af58d10c6f2a9b85ffe88ad58a7569254784c3e04",
                "md5": "1ea3cb95b94e0cc067f48b45a5f5c3bc",
                "sha256": "daec94fb85ecfad98c19139f7040b61c67e44e196c64c881d2505230cac3862e"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ea3cb95b94e0cc067f48b45a5f5c3bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1623943,
            "upload_time": "2024-01-16T16:23:51",
            "upload_time_iso_8601": "2024-01-16T16:23:51.816655Z",
            "url": "https://files.pythonhosted.org/packages/0d/a5/a8e8b83e8402f8b04d4af58d10c6f2a9b85ffe88ad58a7569254784c3e04/telemetry_parser-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23b31203e33ed5405e5e11498cfa55ac439d8d09f5156fe4db88b86a08377b4d",
                "md5": "6689ce906362dcc47821a5c6aaef226e",
                "sha256": "3035892a69f2543947e1ed11cc95b93e64cb9c19290dd9dd8792d903fda3a083"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6689ce906362dcc47821a5c6aaef226e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1652300,
            "upload_time": "2024-01-16T16:23:53",
            "upload_time_iso_8601": "2024-01-16T16:23:53.234761Z",
            "url": "https://files.pythonhosted.org/packages/23/b3/1203e33ed5405e5e11498cfa55ac439d8d09f5156fe4db88b86a08377b4d/telemetry_parser-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d11846076430955f75488481ebb52ade9deb16940f3497f8b2ca280796ac5b2",
                "md5": "debac3fb41ea0baa0eec6be0aabe40db",
                "sha256": "cb8cddfe34ba2373a3e5eaf54d586ca912173d6d35aa33b252e6010236c7433b"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "debac3fb41ea0baa0eec6be0aabe40db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 980577,
            "upload_time": "2024-01-16T16:23:55",
            "upload_time_iso_8601": "2024-01-16T16:23:55.354780Z",
            "url": "https://files.pythonhosted.org/packages/9d/11/846076430955f75488481ebb52ade9deb16940f3497f8b2ca280796ac5b2/telemetry_parser-0.3.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e897d86d1bd0823c35bd82482629ad1330ec9845f114c9e6696fd6c779f200c",
                "md5": "bcc83945cff778aa9413d2a066856e47",
                "sha256": "e84a7efde3b47cea23584fac88c9660c10280369166ad4c8734905fb11be4dab"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bcc83945cff778aa9413d2a066856e47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1095381,
            "upload_time": "2024-01-16T16:23:56",
            "upload_time_iso_8601": "2024-01-16T16:23:56.790162Z",
            "url": "https://files.pythonhosted.org/packages/7e/89/7d86d1bd0823c35bd82482629ad1330ec9845f114c9e6696fd6c779f200c/telemetry_parser-0.3.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bce59fd17f53678e233e336981055d03fcbb2c853b1f0f325433bd68b6df1cc",
                "md5": "4c56f2a883d38c6d16b613268564816b",
                "sha256": "50cba9180405eea712f82c8db1152bbb05c2bd82ab8d3c4d1132f882acc3c98c"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c56f2a883d38c6d16b613268564816b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1623984,
            "upload_time": "2024-01-16T16:23:58",
            "upload_time_iso_8601": "2024-01-16T16:23:58.232384Z",
            "url": "https://files.pythonhosted.org/packages/7b/ce/59fd17f53678e233e336981055d03fcbb2c853b1f0f325433bd68b6df1cc/telemetry_parser-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7fdea6eb93060669cfaf190cd8d0bd4792cb5670ec4b8abaebf8a4c0ad0e06",
                "md5": "d93247f95056056e9c4562cda589e0c8",
                "sha256": "0eae02d2472c14e371dfc16dd61ac6e500f582cd75372d12789361cbbc924015"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d93247f95056056e9c4562cda589e0c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1651504,
            "upload_time": "2024-01-16T16:24:00",
            "upload_time_iso_8601": "2024-01-16T16:24:00.214467Z",
            "url": "https://files.pythonhosted.org/packages/5f/7f/dea6eb93060669cfaf190cd8d0bd4792cb5670ec4b8abaebf8a4c0ad0e06/telemetry_parser-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2b11732468d3c886ba2ffa657797f7ed8296475d5bc5f5327e7b03ce04bd058",
                "md5": "3ef3959ea1b93178b51d3eed90fb0276",
                "sha256": "5b8b01baea379c9afd50c2c325dc96f867afc85a812e6035b8a6b6dc130a6a30"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ef3959ea1b93178b51d3eed90fb0276",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1625393,
            "upload_time": "2024-01-16T16:24:01",
            "upload_time_iso_8601": "2024-01-16T16:24:01.895469Z",
            "url": "https://files.pythonhosted.org/packages/e2/b1/1732468d3c886ba2ffa657797f7ed8296475d5bc5f5327e7b03ce04bd058/telemetry_parser-0.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b39a0edc32f5402262644a59d1d10b86603a397420f44ffa2fa43cf89e927e85",
                "md5": "e48de086dfaa917fffa7ef0a4ec21c7a",
                "sha256": "381a81b2bb942931be72d17d6e79b0b0555d9ed1d0589afbe0971f1864d5967d"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e48de086dfaa917fffa7ef0a4ec21c7a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1653671,
            "upload_time": "2024-01-16T16:24:03",
            "upload_time_iso_8601": "2024-01-16T16:24:03.747405Z",
            "url": "https://files.pythonhosted.org/packages/b3/9a/0edc32f5402262644a59d1d10b86603a397420f44ffa2fa43cf89e927e85/telemetry_parser-0.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a592a41d0648b3a38d6ff4091a6cc6090429d23e27a324e94c04e15eeefc4d0a",
                "md5": "4a867176bffa123978ab63458d554a8b",
                "sha256": "54de76951f21e4fbb847e8232cbae543b8491fafa5cebecb24bd88886cebf9ee"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a867176bffa123978ab63458d554a8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1623960,
            "upload_time": "2024-01-16T16:24:05",
            "upload_time_iso_8601": "2024-01-16T16:24:05.886976Z",
            "url": "https://files.pythonhosted.org/packages/a5/92/a41d0648b3a38d6ff4091a6cc6090429d23e27a324e94c04e15eeefc4d0a/telemetry_parser-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ec993babde74a48a34b93ae2af126a72d7c169a7092175958a0db8e618586a7",
                "md5": "4efe699d0f164a22c30c379d69409d2e",
                "sha256": "1f3a4faacc6ef8cf011f607b87a64b6630bd34ffb323113edcfee1017e96f56e"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4efe699d0f164a22c30c379d69409d2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1651626,
            "upload_time": "2024-01-16T16:24:07",
            "upload_time_iso_8601": "2024-01-16T16:24:07.259472Z",
            "url": "https://files.pythonhosted.org/packages/4e/c9/93babde74a48a34b93ae2af126a72d7c169a7092175958a0db8e618586a7/telemetry_parser-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40cb1ad4f1109cfc307201b6d73c8ab4b327ce277257bd6319fd14e7f637858e",
                "md5": "072ac2dc06e94aca597f22d5e4123602",
                "sha256": "86f539282ff301cec4716b5dcc8258e706810ff3673070075a7145296d095b01"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "072ac2dc06e94aca597f22d5e4123602",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1623983,
            "upload_time": "2024-01-16T16:24:08",
            "upload_time_iso_8601": "2024-01-16T16:24:08.981988Z",
            "url": "https://files.pythonhosted.org/packages/40/cb/1ad4f1109cfc307201b6d73c8ab4b327ce277257bd6319fd14e7f637858e/telemetry_parser-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1a45d9909bf3accd5c6911c206b20a906456aa74f778eef643d6a5c13c7a876",
                "md5": "a1267221ed50ee0393510b5a193a4a92",
                "sha256": "f547abf433f9e36009d05e0ea510516a1d0294b9df13289500d7b8f566e09688"
            },
            "downloads": -1,
            "filename": "telemetry_parser-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a1267221ed50ee0393510b5a193a4a92",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1651508,
            "upload_time": "2024-01-16T16:24:11",
            "upload_time_iso_8601": "2024-01-16T16:24:11.241289Z",
            "url": "https://files.pythonhosted.org/packages/c1/a4/5d9909bf3accd5c6911c206b20a906456aa74f778eef643d6a5c13c7a876/telemetry_parser-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-16 16:22:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AdrianEddy",
    "github_project": "telemetry-parser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "telemetry-parser"
}
        
Elapsed time: 0.23502s