pymseed


Namepymseed JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
SummaryA Python package for reading and writing miniSEED formatted data
upload_time2025-08-20 17:39:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords seismology miniseed mseed data waveform seismic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pymseed - a Python package to read and write miniSEED formatted data

The pymseed package supports reading and writing of miniSEED formatted data.
Both [miniSEED version 2](https://fdsn.org/pdf/SEEDManual_V2.4.pdf)
(defined in the SEED standard) and [miniSEED version 3](https://docs.fdsn.org/projects/miniseed3)
are supported.

The package is uses the C-language [libmseed](https://earthscope.github.io/libmseed)
for most of the data format and manipulation work.

## Installation

The [releases](https://pypi.org/project/pymseed/) should be installed
directly from PyPI with, for example, `pip install pymseed`.

If using numpy features use optional dependency "numpy" or install it independently
e.g. `pip install pymseed[numpy]`.

For package develop use optional dependency "dev" for needed dependencies
e.g. `pip install pymseed[dev]`.

## Example usage

Working programs for a variety of use cases can be found in the
[examples](https://github.com/EarthScope/pymseed/tree/main/examples) directory of the repository.

Read a file and print details from each record:
```python
from pymseed import MS3Record, TimeFormat

input_file = "examples/example_data.mseed"

for record in MS3Record.from_file(input_file):
    # Print values directly
    print(f'   SourceID: {record.sourceid}, record length {record.reclen}')
    print(f' Start Time: {record.starttime_str(timeformat=TimeFormat.ISOMONTHDAY_SPACE_Z)}')
    print(f'    Samples: {record.samplecnt}')

    # Alternatively, use the library print function
    record.print()
```

Read a file into a trace list and print the list:
```python
from pymseed import MS3TraceList

traces = MS3TraceList.from_file("examples/example_data.mseed")

# Print the trace list using the library print function
traces.print(details=1, gaps=True)

# Alternatively, traverse the data structures and print each trace ID and segment
for traceid in traces:
    print(traceid)

    for segment in traceid:
        print('  ', segment)
```

Writing miniSEED requires specifying a "record handler" function that is
a callback to consume, and do whatever you want, with generated records.

Simple example of writing multiple channels of data:
```python
import math
from pymseed import MS3TraceList, timestr2nstime

# Generate sinusoid data, starting at 0, 45, and 90 degrees
data0 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(0, 500)))
data1 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(45, 500 + 45)))
data2 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(90, 500 + 90)))

traces = MS3TraceList()

output_file = "output.mseed"
sample_rate = 40.0
start_time = timestr2nstime("2024-01-01T15:13:55.123456789Z")
format_version = 2
record_length = 512

# Add generated data to the trace list
traces.add_data(sourceid="FDSN:XX_TEST__B_S_1",
                data_samples=data0, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.add_data(sourceid="FDSN:XX_TEST__B_S_2",
                data_samples=data1, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.add_data(sourceid="FDSN:XX_TEST__B_S_3",
                data_samples=data2, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.to_file(output_file,
               format_version=format_version,
               max_reclen = record_length)
```

## Package design rationale

The package functionality and exposed API are designed to support the most
common use cases of reading and writing miniSEED data using `libmseed`.
Extensions of data handling beyond the functionality of the library are
out-of-scope for this package.  Furthermore, the naming of functions, classes,
arguments, etc. often follows the naming used in the library in order to
reference their fundamentals at the C level if needed; even though this leaves
some names distinctly non-Pythonic.

In a nutshell, the goal of this package is to provide just enough of a Python
layer to `libmseed` to handle the most common cases of miniSEED data without
needing to know any of the C-level details.

## License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Copyright (C) 2025 EarthScope Data Services

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pymseed",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "seismology, miniseed, mseed, data, waveform, seismic",
    "author": null,
    "author_email": "EarthScope Data Services <software@earthscope.org>",
    "download_url": "https://files.pythonhosted.org/packages/89/9b/afc9d8b04477d7e3dd9f2eaa2b17ec5954065f7ee6da3cd509f654e29fea/pymseed-0.0.2.tar.gz",
    "platform": null,
    "description": "# pymseed - a Python package to read and write miniSEED formatted data\n\nThe pymseed package supports reading and writing of miniSEED formatted data.\nBoth [miniSEED version 2](https://fdsn.org/pdf/SEEDManual_V2.4.pdf)\n(defined in the SEED standard) and [miniSEED version 3](https://docs.fdsn.org/projects/miniseed3)\nare supported.\n\nThe package is uses the C-language [libmseed](https://earthscope.github.io/libmseed)\nfor most of the data format and manipulation work.\n\n## Installation\n\nThe [releases](https://pypi.org/project/pymseed/) should be installed\ndirectly from PyPI with, for example, `pip install pymseed`.\n\nIf using numpy features use optional dependency \"numpy\" or install it independently\ne.g. `pip install pymseed[numpy]`.\n\nFor package develop use optional dependency \"dev\" for needed dependencies\ne.g. `pip install pymseed[dev]`.\n\n## Example usage\n\nWorking programs for a variety of use cases can be found in the\n[examples](https://github.com/EarthScope/pymseed/tree/main/examples) directory of the repository.\n\nRead a file and print details from each record:\n```python\nfrom pymseed import MS3Record, TimeFormat\n\ninput_file = \"examples/example_data.mseed\"\n\nfor record in MS3Record.from_file(input_file):\n    # Print values directly\n    print(f'   SourceID: {record.sourceid}, record length {record.reclen}')\n    print(f' Start Time: {record.starttime_str(timeformat=TimeFormat.ISOMONTHDAY_SPACE_Z)}')\n    print(f'    Samples: {record.samplecnt}')\n\n    # Alternatively, use the library print function\n    record.print()\n```\n\nRead a file into a trace list and print the list:\n```python\nfrom pymseed import MS3TraceList\n\ntraces = MS3TraceList.from_file(\"examples/example_data.mseed\")\n\n# Print the trace list using the library print function\ntraces.print(details=1, gaps=True)\n\n# Alternatively, traverse the data structures and print each trace ID and segment\nfor traceid in traces:\n    print(traceid)\n\n    for segment in traceid:\n        print('  ', segment)\n```\n\nWriting miniSEED requires specifying a \"record handler\" function that is\na callback to consume, and do whatever you want, with generated records.\n\nSimple example of writing multiple channels of data:\n```python\nimport math\nfrom pymseed import MS3TraceList, timestr2nstime\n\n# Generate sinusoid data, starting at 0, 45, and 90 degrees\ndata0 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(0, 500)))\ndata1 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(45, 500 + 45)))\ndata2 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(90, 500 + 90)))\n\ntraces = MS3TraceList()\n\noutput_file = \"output.mseed\"\nsample_rate = 40.0\nstart_time = timestr2nstime(\"2024-01-01T15:13:55.123456789Z\")\nformat_version = 2\nrecord_length = 512\n\n# Add generated data to the trace list\ntraces.add_data(sourceid=\"FDSN:XX_TEST__B_S_1\",\n                data_samples=data0, sample_type='i',\n                sample_rate=sample_rate, start_time=start_time)\n\ntraces.add_data(sourceid=\"FDSN:XX_TEST__B_S_2\",\n                data_samples=data1, sample_type='i',\n                sample_rate=sample_rate, start_time=start_time)\n\ntraces.add_data(sourceid=\"FDSN:XX_TEST__B_S_3\",\n                data_samples=data2, sample_type='i',\n                sample_rate=sample_rate, start_time=start_time)\n\ntraces.to_file(output_file,\n               format_version=format_version,\n               max_reclen = record_length)\n```\n\n## Package design rationale\n\nThe package functionality and exposed API are designed to support the most\ncommon use cases of reading and writing miniSEED data using `libmseed`.\nExtensions of data handling beyond the functionality of the library are\nout-of-scope for this package.  Furthermore, the naming of functions, classes,\narguments, etc. often follows the naming used in the library in order to\nreference their fundamentals at the C level if needed; even though this leaves\nsome names distinctly non-Pythonic.\n\nIn a nutshell, the goal of this package is to provide just enough of a Python\nlayer to `libmseed` to handle the most common cases of miniSEED data without\nneeding to know any of the C-level details.\n\n## License\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nCopyright (C) 2025 EarthScope Data Services\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python package for reading and writing miniSEED formatted data",
    "version": "0.0.2",
    "project_urls": {
        "Homepage": "https://github.com/EarthScope/pymseed",
        "Issues": "https://github.com/EarthScope/pymseed/issues",
        "Repository": "https://github.com/EarthScope/pymseed"
    },
    "split_keywords": [
        "seismology",
        " miniseed",
        " mseed",
        " data",
        " waveform",
        " seismic"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7828cd23308b1b1ba68b3648cb1343b53c2d91248ec8f418b0691b3fceea6a96",
                "md5": "b53465be39dc5fcb98717a0f6a4d32ca",
                "sha256": "aa8661e9d697a241c9de1f65f8c9f02724fdd2e2348e0ad445e21d1012767374"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b53465be39dc5fcb98717a0f6a4d32ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 244257,
            "upload_time": "2025-08-20T17:38:40",
            "upload_time_iso_8601": "2025-08-20T17:38:40.884000Z",
            "url": "https://files.pythonhosted.org/packages/78/28/cd23308b1b1ba68b3648cb1343b53c2d91248ec8f418b0691b3fceea6a96/pymseed-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "374e3a18222f0c411ff867d173cde1573f27ede4158b3227d4aa5aa6cdaea5d4",
                "md5": "a3c055e5d61b13391f15d3a9f825d358",
                "sha256": "99a95b040b0e12f31a2c3beb2cce8f89dd7bcc715f90a4cf2f398cb2326b587c"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a3c055e5d61b13391f15d3a9f825d358",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 230328,
            "upload_time": "2025-08-20T17:38:42",
            "upload_time_iso_8601": "2025-08-20T17:38:42.610096Z",
            "url": "https://files.pythonhosted.org/packages/37/4e/3a18222f0c411ff867d173cde1573f27ede4158b3227d4aa5aa6cdaea5d4/pymseed-0.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6511fba0c97a52253c0b7a2b8d3f3034a2dea2337df4dc3c695c1c82dd7bf55b",
                "md5": "c8da623230ee17ec0c9ac6d8300ed640",
                "sha256": "43f74bafb129cd9f9e54fd4d6b832f5b1c4b4faa8cf57da1f58fe4de26f79654"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c8da623230ee17ec0c9ac6d8300ed640",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1000521,
            "upload_time": "2025-08-20T17:38:44",
            "upload_time_iso_8601": "2025-08-20T17:38:44.999429Z",
            "url": "https://files.pythonhosted.org/packages/65/11/fba0c97a52253c0b7a2b8d3f3034a2dea2337df4dc3c695c1c82dd7bf55b/pymseed-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b34841e29f0134df854ac4693c16e03ad1f9f0c0e80ee02f5cf57a9d8f5567e",
                "md5": "04908f3499b608a11774d3ba5648705f",
                "sha256": "bd6a12839931343a28e4b03b860efbd272e27b2d0e82306e3a2df638adcc64c9"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04908f3499b608a11774d3ba5648705f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1007251,
            "upload_time": "2025-08-20T17:38:46",
            "upload_time_iso_8601": "2025-08-20T17:38:46.564015Z",
            "url": "https://files.pythonhosted.org/packages/7b/34/841e29f0134df854ac4693c16e03ad1f9f0c0e80ee02f5cf57a9d8f5567e/pymseed-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cb62850e0cb0cc99436f124d2d7866097ca193cd9f8639b3ed7923d8676f8fa",
                "md5": "5de276c7876eaa51fc5542f6a7fe0c9c",
                "sha256": "272c57e75f7356b497c17d10fc4016c9dad69042c3cbf6b94642541549fca360"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5de276c7876eaa51fc5542f6a7fe0c9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 971633,
            "upload_time": "2025-08-20T17:38:49",
            "upload_time_iso_8601": "2025-08-20T17:38:49.732832Z",
            "url": "https://files.pythonhosted.org/packages/5c/b6/2850e0cb0cc99436f124d2d7866097ca193cd9f8639b3ed7923d8676f8fa/pymseed-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "271b8514d16839ef70b26ea9939fdf4cf61b29b540097310a8f273478e45ea9b",
                "md5": "53a66817eecde9babb569d690c4c4991",
                "sha256": "bbb8d61f593380d1f39fd0ac2b5bc3a9c48b7d41164038200d19452ffb5bbf69"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53a66817eecde9babb569d690c4c4991",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 985631,
            "upload_time": "2025-08-20T17:38:51",
            "upload_time_iso_8601": "2025-08-20T17:38:51.441972Z",
            "url": "https://files.pythonhosted.org/packages/27/1b/8514d16839ef70b26ea9939fdf4cf61b29b540097310a8f273478e45ea9b/pymseed-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5251660f9c4d8441bdf46b1de183846d18bd698fecb647ec31e02e4529feaf6c",
                "md5": "b7ac7e5c9313193f1c4eca8cb04e5acd",
                "sha256": "20654f54458b4078480781d0a483728a820909774bc6d770b03f9e0e3a39d530"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b7ac7e5c9313193f1c4eca8cb04e5acd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 196735,
            "upload_time": "2025-08-20T17:38:53",
            "upload_time_iso_8601": "2025-08-20T17:38:53.239739Z",
            "url": "https://files.pythonhosted.org/packages/52/51/660f9c4d8441bdf46b1de183846d18bd698fecb647ec31e02e4529feaf6c/pymseed-0.0.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a88ecd8f9779b09d7301b952ee4812b100b93e2a49bd04ef94dcf2ef1ff07da8",
                "md5": "764cbf85b541f158398d1e34a055b44f",
                "sha256": "6f54f4c0c2c86637e5a26273e988ed51499ff67a0e233849884e7ea12bb0c31b"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "764cbf85b541f158398d1e34a055b44f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 200098,
            "upload_time": "2025-08-20T17:38:54",
            "upload_time_iso_8601": "2025-08-20T17:38:54.816012Z",
            "url": "https://files.pythonhosted.org/packages/a8/8e/cd8f9779b09d7301b952ee4812b100b93e2a49bd04ef94dcf2ef1ff07da8/pymseed-0.0.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d59da1b1ef0b236571aa0d238f76f8e17141769e8363e234d0639c3a682e949",
                "md5": "4d4859b64013f8cac9ababc4f66074b3",
                "sha256": "0502d3f2a122a904a70a6359fafec75197b7be1f8a17ec27bb314a45d12e1c74"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d4859b64013f8cac9ababc4f66074b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 244266,
            "upload_time": "2025-08-20T17:38:56",
            "upload_time_iso_8601": "2025-08-20T17:38:56.373589Z",
            "url": "https://files.pythonhosted.org/packages/8d/59/da1b1ef0b236571aa0d238f76f8e17141769e8363e234d0639c3a682e949/pymseed-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aad2b0adab5ed2011ba1b9063eab84c9165b8451f310f81656dc268196f14e15",
                "md5": "45e61524659836761871d6ae96265db3",
                "sha256": "63568d584f9b0c11f22a06e34c7a88846cdfe742bdde31161e36e6abf90840c3"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "45e61524659836761871d6ae96265db3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 230332,
            "upload_time": "2025-08-20T17:38:57",
            "upload_time_iso_8601": "2025-08-20T17:38:57.886960Z",
            "url": "https://files.pythonhosted.org/packages/aa/d2/b0adab5ed2011ba1b9063eab84c9165b8451f310f81656dc268196f14e15/pymseed-0.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22e6473f64e7d7e1fba56df1e99fe61a01ac62c79f8150300337faf6f59e79eb",
                "md5": "5490fc63666676bb41bef6715377bd71",
                "sha256": "65357d2a557cb50482d47d4780f7c7025569f88f0f767fd3946b6b90680d486a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5490fc63666676bb41bef6715377bd71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1000548,
            "upload_time": "2025-08-20T17:38:59",
            "upload_time_iso_8601": "2025-08-20T17:38:59.224471Z",
            "url": "https://files.pythonhosted.org/packages/22/e6/473f64e7d7e1fba56df1e99fe61a01ac62c79f8150300337faf6f59e79eb/pymseed-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "083d4e4c2157839909f0f7a609c433bfff7c4c57d57bd4858b9fc2a9614dc3a2",
                "md5": "d3d81cd26ad7f7cb4efd176add0d53b0",
                "sha256": "24f405d540ec76a13f6ba9bcd16cf12d88f042c4eec5f750cf5c73ae27bfedd2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3d81cd26ad7f7cb4efd176add0d53b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1007295,
            "upload_time": "2025-08-20T17:39:00",
            "upload_time_iso_8601": "2025-08-20T17:39:00.548445Z",
            "url": "https://files.pythonhosted.org/packages/08/3d/4e4c2157839909f0f7a609c433bfff7c4c57d57bd4858b9fc2a9614dc3a2/pymseed-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f49b460dcc171c1380685df0870bf27527a5db1f92e76c72475bbb76e143119",
                "md5": "d0549b7fd2c68361667ac15243d5ed60",
                "sha256": "67c2047199848acb2f6b00b8808eed5897b4f0e2355c0612eaed8cf54d629c4c"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0549b7fd2c68361667ac15243d5ed60",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 971638,
            "upload_time": "2025-08-20T17:39:02",
            "upload_time_iso_8601": "2025-08-20T17:39:02.076391Z",
            "url": "https://files.pythonhosted.org/packages/2f/49/b460dcc171c1380685df0870bf27527a5db1f92e76c72475bbb76e143119/pymseed-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "369dfdeecc42556fae2095d4e23474e0e48a327ff7c9ccf4ca648fb439e1fd9f",
                "md5": "449a7c17cc2692485b4d077ac347d90e",
                "sha256": "78f72cced1c570b2eef49e4d953d3c05916f9e929fd7ac7c602ea96c653174bb"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "449a7c17cc2692485b4d077ac347d90e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 985616,
            "upload_time": "2025-08-20T17:39:03",
            "upload_time_iso_8601": "2025-08-20T17:39:03.578509Z",
            "url": "https://files.pythonhosted.org/packages/36/9d/fdeecc42556fae2095d4e23474e0e48a327ff7c9ccf4ca648fb439e1fd9f/pymseed-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "662c48dc318e2461748bf3c007324193ff676edb8f08e5ec71f503de70f0c2ac",
                "md5": "4f1f553562b9521fc4057ed26806a464",
                "sha256": "4386d0334a8429753e9110fe91352d5cd68e5e7d34dd5e92a07193e346dcfea4"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4f1f553562b9521fc4057ed26806a464",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 196737,
            "upload_time": "2025-08-20T17:39:05",
            "upload_time_iso_8601": "2025-08-20T17:39:05.001504Z",
            "url": "https://files.pythonhosted.org/packages/66/2c/48dc318e2461748bf3c007324193ff676edb8f08e5ec71f503de70f0c2ac/pymseed-0.0.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea7be89086c053be7724ec24c73254c467ef0aa2ea17178267fa2ce091a0f3d4",
                "md5": "45165224f0fc6d3f8fcf559ffce2e1c1",
                "sha256": "570d659fa4eadfb62de59580df16c66439909b45ed067fa93d9bb96ecff3ef6c"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45165224f0fc6d3f8fcf559ffce2e1c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 200094,
            "upload_time": "2025-08-20T17:39:06",
            "upload_time_iso_8601": "2025-08-20T17:39:06.207499Z",
            "url": "https://files.pythonhosted.org/packages/ea/7b/e89086c053be7724ec24c73254c467ef0aa2ea17178267fa2ce091a0f3d4/pymseed-0.0.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3b4194daa2b12e2f7358e0c790485afd31788ebf4a2ce4db422b0e202a096fd",
                "md5": "950521624a3130693d922945f6cc37d9",
                "sha256": "e6a9a5bcd8c6339d457f2d55f31b7ae091f55cbbb40b21865d183e7747ce8a6c"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "950521624a3130693d922945f6cc37d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 183152,
            "upload_time": "2025-08-20T17:39:07",
            "upload_time_iso_8601": "2025-08-20T17:39:07.515159Z",
            "url": "https://files.pythonhosted.org/packages/b3/b4/194daa2b12e2f7358e0c790485afd31788ebf4a2ce4db422b0e202a096fd/pymseed-0.0.2-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4b2035d90e2f7e29a78267f4927b99994bc01d25d0236a8be904696892ac5b7",
                "md5": "5db0e46c9e18311d4accd8179e181258",
                "sha256": "81e2b778c7b6b76c90462c2e5279db0b4c319bf5d00d312c28e44e2ded1217fd"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5db0e46c9e18311d4accd8179e181258",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 244148,
            "upload_time": "2025-08-20T17:39:08",
            "upload_time_iso_8601": "2025-08-20T17:39:08.702578Z",
            "url": "https://files.pythonhosted.org/packages/d4/b2/035d90e2f7e29a78267f4927b99994bc01d25d0236a8be904696892ac5b7/pymseed-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5178a90a056ec4084a7403dfad5607e85cd763edd74ff7d1a19b3f9a5a495ce",
                "md5": "3b0a4186596fba7658472b24b526678d",
                "sha256": "d5ef16c2ed3cb498d1878aa31482b97dcfb37974cc1b274d559b55ff0f88efe9"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3b0a4186596fba7658472b24b526678d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 230426,
            "upload_time": "2025-08-20T17:39:09",
            "upload_time_iso_8601": "2025-08-20T17:39:09.952839Z",
            "url": "https://files.pythonhosted.org/packages/e5/17/8a90a056ec4084a7403dfad5607e85cd763edd74ff7d1a19b3f9a5a495ce/pymseed-0.0.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6ecfa34604edfbab3d69f59c69230275d4efd1de84ca556c6dd9ca3485f68c0",
                "md5": "f93d2fa8255abfef050e675b4eafe844",
                "sha256": "4137acd88fcbf329ef724477f348c0d954d40930167de5bafd643e6f8acc15b0"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f93d2fa8255abfef050e675b4eafe844",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1003559,
            "upload_time": "2025-08-20T17:39:11",
            "upload_time_iso_8601": "2025-08-20T17:39:11.279604Z",
            "url": "https://files.pythonhosted.org/packages/e6/ec/fa34604edfbab3d69f59c69230275d4efd1de84ca556c6dd9ca3485f68c0/pymseed-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92a85d92424850f7b4893b318e48470d728cc89a279d13780d4fd6aefd176d6c",
                "md5": "e30b649380a9d790723aa098303ab89e",
                "sha256": "844b6de751d487a8296e1fb0104e61d7b3b9c0418f6d05ec66f24cd80473769b"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e30b649380a9d790723aa098303ab89e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1004882,
            "upload_time": "2025-08-20T17:39:12",
            "upload_time_iso_8601": "2025-08-20T17:39:12.758452Z",
            "url": "https://files.pythonhosted.org/packages/92/a8/5d92424850f7b4893b318e48470d728cc89a279d13780d4fd6aefd176d6c/pymseed-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db5422f5e911677e908b88a47d08c39ae475175cd4fc5dcebf12948c64a09058",
                "md5": "215e0e4ab93aff5595e3cd60a65d89c9",
                "sha256": "1b542a1d027d5c7c821cc4a07a896976540bb42afe7dd377ef703b6276c156e4"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "215e0e4ab93aff5595e3cd60a65d89c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 972720,
            "upload_time": "2025-08-20T17:39:14",
            "upload_time_iso_8601": "2025-08-20T17:39:14.147848Z",
            "url": "https://files.pythonhosted.org/packages/db/54/22f5e911677e908b88a47d08c39ae475175cd4fc5dcebf12948c64a09058/pymseed-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95a12680f2e3821e54b2fc183aa3710b6e0e50b265e53619b02f0f5eabe092dc",
                "md5": "907ee2c141caaf8cc51c0a3e0fc421cf",
                "sha256": "53873cf3a227e84f8e171f93869a46bfc23a4405e9e552eeb55dfb7d50318d22"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "907ee2c141caaf8cc51c0a3e0fc421cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 983744,
            "upload_time": "2025-08-20T17:39:15",
            "upload_time_iso_8601": "2025-08-20T17:39:15.571032Z",
            "url": "https://files.pythonhosted.org/packages/95/a1/2680f2e3821e54b2fc183aa3710b6e0e50b265e53619b02f0f5eabe092dc/pymseed-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dc49762b9fe317c7255ae25f8e2914c713620ed25742f657beebee85b44efe9",
                "md5": "ad69e3ac61491aa6e272a0ae879ebf48",
                "sha256": "93a290a2883164412b8df417d99d042e3ad08f4a327596dfe75d6f543eeaf340"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ad69e3ac61491aa6e272a0ae879ebf48",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 196797,
            "upload_time": "2025-08-20T17:39:16",
            "upload_time_iso_8601": "2025-08-20T17:39:16.833092Z",
            "url": "https://files.pythonhosted.org/packages/4d/c4/9762b9fe317c7255ae25f8e2914c713620ed25742f657beebee85b44efe9/pymseed-0.0.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe6313bb157f7c97057d01afee0e1d253878172fb8d045e8f0093b004009823b",
                "md5": "288bf137a60cd23e62c76a28d15e5c6e",
                "sha256": "f900fc1e96e85f133ea9c3538e699b2656f74d35b366e5f74c08b8d757ae2c39"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "288bf137a60cd23e62c76a28d15e5c6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 200124,
            "upload_time": "2025-08-20T17:39:18",
            "upload_time_iso_8601": "2025-08-20T17:39:18.144607Z",
            "url": "https://files.pythonhosted.org/packages/fe/63/13bb157f7c97057d01afee0e1d253878172fb8d045e8f0093b004009823b/pymseed-0.0.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae4588d4986206bd273fd2dbb778eb31555007e538edae894c460b4e2aa9f83c",
                "md5": "215b64563c6b89a0262184f4b7bf0fbc",
                "sha256": "8affe0b5344479164eeaf9b6c2c602e220e3c6538bf83d949b87c3e6a7ea2f44"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "215b64563c6b89a0262184f4b7bf0fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 183147,
            "upload_time": "2025-08-20T17:39:19",
            "upload_time_iso_8601": "2025-08-20T17:39:19.362162Z",
            "url": "https://files.pythonhosted.org/packages/ae/45/88d4986206bd273fd2dbb778eb31555007e538edae894c460b4e2aa9f83c/pymseed-0.0.2-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abaf3c507231e13f7615113b570cf3cfd9c6cbcd2ef99af1a99e3816e6bd0097",
                "md5": "61af77c2deae5e67be7c9d20ebce7c57",
                "sha256": "f2042f8781be50b77c0208f4449ff24168fc687d1363a3e9e737d09189297e83"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61af77c2deae5e67be7c9d20ebce7c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 244145,
            "upload_time": "2025-08-20T17:39:20",
            "upload_time_iso_8601": "2025-08-20T17:39:20.561269Z",
            "url": "https://files.pythonhosted.org/packages/ab/af/3c507231e13f7615113b570cf3cfd9c6cbcd2ef99af1a99e3816e6bd0097/pymseed-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73d9941663da913142f2bb1abdc12857da6475248cb20fbdc93c82c67a9887b5",
                "md5": "39cc77e1dd4f7fda290589bcbf2ec8f8",
                "sha256": "23c59afe8afae37fa6734121400464bc127376ecdf29629fa900ff4e33e45bf8"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "39cc77e1dd4f7fda290589bcbf2ec8f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 230419,
            "upload_time": "2025-08-20T17:39:21",
            "upload_time_iso_8601": "2025-08-20T17:39:21.742051Z",
            "url": "https://files.pythonhosted.org/packages/73/d9/941663da913142f2bb1abdc12857da6475248cb20fbdc93c82c67a9887b5/pymseed-0.0.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc150f3c7ff717a56dda7bad9d23a1f04afd215cd267d1bc3a20041a1e1eb58b",
                "md5": "f849d0cec57f0c296917d7c07018bd72",
                "sha256": "31040d15550a42516b2f7b5b7fba6dae6763efebe95043d0c619d1b1cdd2319a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f849d0cec57f0c296917d7c07018bd72",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1003535,
            "upload_time": "2025-08-20T17:39:23",
            "upload_time_iso_8601": "2025-08-20T17:39:23.115625Z",
            "url": "https://files.pythonhosted.org/packages/cc/15/0f3c7ff717a56dda7bad9d23a1f04afd215cd267d1bc3a20041a1e1eb58b/pymseed-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50785cef8209574026e077ae96901f630f4b7c987483f62344e6178bcc26e807",
                "md5": "45ae319312d3b41fdaa883425cd681b5",
                "sha256": "3570a6f97086fa900eea006aa75719f0218a8e3bf27f16d146cfd91daec19127"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45ae319312d3b41fdaa883425cd681b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1004845,
            "upload_time": "2025-08-20T17:39:24",
            "upload_time_iso_8601": "2025-08-20T17:39:24.494345Z",
            "url": "https://files.pythonhosted.org/packages/50/78/5cef8209574026e077ae96901f630f4b7c987483f62344e6178bcc26e807/pymseed-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce68e08708e18a1889859d352b89b454b43071971e6420cb1b040b9529b22cca",
                "md5": "d9d374584f575f0ffa3c49f5e2717428",
                "sha256": "d6b19e53a1f92e9bac0146d216b57d3a3b201b90489789ee909c5604e56b234a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9d374584f575f0ffa3c49f5e2717428",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 972679,
            "upload_time": "2025-08-20T17:39:25",
            "upload_time_iso_8601": "2025-08-20T17:39:25.972785Z",
            "url": "https://files.pythonhosted.org/packages/ce/68/e08708e18a1889859d352b89b454b43071971e6420cb1b040b9529b22cca/pymseed-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7b56ed075f4becb5f549589168d6b8a3c463e052b466977312e2a0d5d8208b3",
                "md5": "26845c4fe7e1c1f699004d8a71d4b4c6",
                "sha256": "5309b6c7d7f8cf2db26d74f583cd34c8eb12da113c6651f19384552c5c8b5cea"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26845c4fe7e1c1f699004d8a71d4b4c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 983709,
            "upload_time": "2025-08-20T17:39:27",
            "upload_time_iso_8601": "2025-08-20T17:39:27.474707Z",
            "url": "https://files.pythonhosted.org/packages/b7/b5/6ed075f4becb5f549589168d6b8a3c463e052b466977312e2a0d5d8208b3/pymseed-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "668e94166b18904b9b8eb3c1a3245f2fc5991a9e27eefda14e6a8bd8004a3cdd",
                "md5": "77023ea32d93098435630b6b08f95b25",
                "sha256": "80613373956a53cd0bbcbac6a1e89470ec5cb464a9d2be980882db31161f23c4"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "77023ea32d93098435630b6b08f95b25",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 196797,
            "upload_time": "2025-08-20T17:39:29",
            "upload_time_iso_8601": "2025-08-20T17:39:29.163206Z",
            "url": "https://files.pythonhosted.org/packages/66/8e/94166b18904b9b8eb3c1a3245f2fc5991a9e27eefda14e6a8bd8004a3cdd/pymseed-0.0.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df5966a41bd500635912538e3435befa04b901e9d2f7a6d221db5b8d9d682818",
                "md5": "0b502967dda7f4b21eae8c6ea5b5deef",
                "sha256": "fe257b861e2d31098409ac1961d27f09df95b5b118a2851efc879006f74bca08"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b502967dda7f4b21eae8c6ea5b5deef",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 200126,
            "upload_time": "2025-08-20T17:39:30",
            "upload_time_iso_8601": "2025-08-20T17:39:30.401727Z",
            "url": "https://files.pythonhosted.org/packages/df/59/66a41bd500635912538e3435befa04b901e9d2f7a6d221db5b8d9d682818/pymseed-0.0.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f08bd245e3a7b438ac25e48050d54a29c4337085376e367c778e6748f277717",
                "md5": "c65260ca501794cb05e6239a8fa1b477",
                "sha256": "f9b041400488b904c1259430845aec567a5f04ae4e1175ff11ec196c7f6c7847"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c65260ca501794cb05e6239a8fa1b477",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 183149,
            "upload_time": "2025-08-20T17:39:31",
            "upload_time_iso_8601": "2025-08-20T17:39:31.603689Z",
            "url": "https://files.pythonhosted.org/packages/8f/08/bd245e3a7b438ac25e48050d54a29c4337085376e367c778e6748f277717/pymseed-0.0.2-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0becb53d4fe35273f6d087419ac0f4508b50d5dd0d8dcfb55d5e255b6485420b",
                "md5": "041e16d4d094cae69ff5793d4c9332b8",
                "sha256": "3b0a5849977fe57ac7a951cba43a297efd0b7892e2625dec8b0cb2c2b765d892"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "041e16d4d094cae69ff5793d4c9332b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 244256,
            "upload_time": "2025-08-20T17:39:32",
            "upload_time_iso_8601": "2025-08-20T17:39:32.799758Z",
            "url": "https://files.pythonhosted.org/packages/0b/ec/b53d4fe35273f6d087419ac0f4508b50d5dd0d8dcfb55d5e255b6485420b/pymseed-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87eef2d6e0362f720e2028544d44bb8ab8ff85f45064632305215e9996724f6b",
                "md5": "b8d2e9619f409649535d46cf38e23652",
                "sha256": "ef02e7cd7fe4b5e31d58778055168e4d9a193706a7fb012f5b77bedd769617e2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b8d2e9619f409649535d46cf38e23652",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 230337,
            "upload_time": "2025-08-20T17:39:33",
            "upload_time_iso_8601": "2025-08-20T17:39:33.989723Z",
            "url": "https://files.pythonhosted.org/packages/87/ee/f2d6e0362f720e2028544d44bb8ab8ff85f45064632305215e9996724f6b/pymseed-0.0.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd3e4f3d1773f2f8ee700fdda36d03366622c6005d10875add774960aec91ea8",
                "md5": "13d63c2813a3f6ee6405560ca783683a",
                "sha256": "5df3995e67430617888eaf3415c1baf48250c4f8f745c9301d1640dd273e703a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13d63c2813a3f6ee6405560ca783683a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1000515,
            "upload_time": "2025-08-20T17:39:35",
            "upload_time_iso_8601": "2025-08-20T17:39:35.225483Z",
            "url": "https://files.pythonhosted.org/packages/bd/3e/4f3d1773f2f8ee700fdda36d03366622c6005d10875add774960aec91ea8/pymseed-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "568640d7bfa6e6fa685fec8cb28a7ac071eef895d5fe8c56856e0d177c03c45a",
                "md5": "2679c1310dce28fd803be2c2694eaa21",
                "sha256": "cd974c654873a20b43b4887970c1c14375d4924b3ac1a4237dbb2fe009d62c8d"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2679c1310dce28fd803be2c2694eaa21",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1007242,
            "upload_time": "2025-08-20T17:39:36",
            "upload_time_iso_8601": "2025-08-20T17:39:36.722802Z",
            "url": "https://files.pythonhosted.org/packages/56/86/40d7bfa6e6fa685fec8cb28a7ac071eef895d5fe8c56856e0d177c03c45a/pymseed-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a27f842c64b2509dfddf9e67260ce94fa84dfd4eb21b16a6f4b6274f5d74e2c8",
                "md5": "bebabb2bba42f34c2dd33952ca92958c",
                "sha256": "3fc20bbedfb940fc0374b3b8794f898a634e11af39e3ab2e189953ce7fc91714"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bebabb2bba42f34c2dd33952ca92958c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 971639,
            "upload_time": "2025-08-20T17:39:38",
            "upload_time_iso_8601": "2025-08-20T17:39:38.033607Z",
            "url": "https://files.pythonhosted.org/packages/a2/7f/842c64b2509dfddf9e67260ce94fa84dfd4eb21b16a6f4b6274f5d74e2c8/pymseed-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8bc3ef69dbb246121729d52eea27a54b2805e8e62dcfd90e37699c3c2ca489d",
                "md5": "61c94a3f7b1e54a143af834c8b932736",
                "sha256": "b005be5171a29157ad9625391c1d1f3a0f8b1e7bbf2fdfe6b6aa2f3b5934055f"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61c94a3f7b1e54a143af834c8b932736",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 985625,
            "upload_time": "2025-08-20T17:39:39",
            "upload_time_iso_8601": "2025-08-20T17:39:39.778145Z",
            "url": "https://files.pythonhosted.org/packages/d8/bc/3ef69dbb246121729d52eea27a54b2805e8e62dcfd90e37699c3c2ca489d/pymseed-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80de4a13d851d98f7615a684fee4f4abd4e93ad68d6aa2ffc7be8fe5f98a11ef",
                "md5": "ae969a9bd8527bc9b4c8f544d4b05dc7",
                "sha256": "3a307803a17e012afaeb63d66531a25ac427f240a9ea0b911536700861083aa2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ae969a9bd8527bc9b4c8f544d4b05dc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 196728,
            "upload_time": "2025-08-20T17:39:41",
            "upload_time_iso_8601": "2025-08-20T17:39:41.098632Z",
            "url": "https://files.pythonhosted.org/packages/80/de/4a13d851d98f7615a684fee4f4abd4e93ad68d6aa2ffc7be8fe5f98a11ef/pymseed-0.0.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6839cd45df0ff2124a55f7b240a2ed8dffee257ea504fbe7a549090f66d8a42d",
                "md5": "e2d58a94218ee6a68ec201ee07bc904a",
                "sha256": "05aa74716a76873835f7edc32f7c8c07d80cea62e94b56b9bbebb7445d6a21e8"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2d58a94218ee6a68ec201ee07bc904a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 200091,
            "upload_time": "2025-08-20T17:39:42",
            "upload_time_iso_8601": "2025-08-20T17:39:42.324211Z",
            "url": "https://files.pythonhosted.org/packages/68/39/cd45df0ff2124a55f7b240a2ed8dffee257ea504fbe7a549090f66d8a42d/pymseed-0.0.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43e8c68be508adb132e3296bb41565e99591cdf475db23afe486c2832d811f49",
                "md5": "535dc44e41af42676f960dc7a5c6e183",
                "sha256": "b72b377fea9f7cb0a6709ab5b67082b908c50f681978bc619976fc31a180a853"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "535dc44e41af42676f960dc7a5c6e183",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 222795,
            "upload_time": "2025-08-20T17:39:44",
            "upload_time_iso_8601": "2025-08-20T17:39:44.042824Z",
            "url": "https://files.pythonhosted.org/packages/43/e8/c68be508adb132e3296bb41565e99591cdf475db23afe486c2832d811f49/pymseed-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48d8350912b699869c05433d855badd361f5cae24b353372c62fc50f4714244a",
                "md5": "ee645a68ace3bb9b8fd57eee24dfc39c",
                "sha256": "27371f5b15df19d76e06fbf92007475c13bf14734747d9ae6219a25f3f0b4614"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee645a68ace3bb9b8fd57eee24dfc39c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 207087,
            "upload_time": "2025-08-20T17:39:45",
            "upload_time_iso_8601": "2025-08-20T17:39:45.306017Z",
            "url": "https://files.pythonhosted.org/packages/48/d8/350912b699869c05433d855badd361f5cae24b353372c62fc50f4714244a/pymseed-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a544c99124cc49daf76b9d3367c638dbcb3d6c4e0057a34d2e5574d0de2e3d2",
                "md5": "943213e4a4c1301a28cdf28fc3ee8d6b",
                "sha256": "9410880f2466bb2b74e623d4dbb13e340d9c0101609a31acbb964a1f54b7a8c2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "943213e4a4c1301a28cdf28fc3ee8d6b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 244442,
            "upload_time": "2025-08-20T17:39:46",
            "upload_time_iso_8601": "2025-08-20T17:39:46.536086Z",
            "url": "https://files.pythonhosted.org/packages/2a/54/4c99124cc49daf76b9d3367c638dbcb3d6c4e0057a34d2e5574d0de2e3d2/pymseed-0.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b657f4dfc3ea4131ab66ba287ee1be0571dca3a4efa2a5a72ee0411c246badca",
                "md5": "6927787027a02f80d93777aac1fbf6cc",
                "sha256": "807d025a6b81f06282cb2e621b8a544be123f492dddfd9572bbca13c5594af94"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6927787027a02f80d93777aac1fbf6cc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 242591,
            "upload_time": "2025-08-20T17:39:47",
            "upload_time_iso_8601": "2025-08-20T17:39:47.869282Z",
            "url": "https://files.pythonhosted.org/packages/b6/57/f4dfc3ea4131ab66ba287ee1be0571dca3a4efa2a5a72ee0411c246badca/pymseed-0.0.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64e8c9f195627632009c684dddcedb0582ef19acd48b650c890cd3457a29f5ed",
                "md5": "2fb5e947a62a0fcc8d52f1c8b1b2819f",
                "sha256": "3f2fb1714eadcf6357bb854cb7eb4cc575be78ec161ab11e8cc5454b730df5d8"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2fb5e947a62a0fcc8d52f1c8b1b2819f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 180747,
            "upload_time": "2025-08-20T17:39:49",
            "upload_time_iso_8601": "2025-08-20T17:39:49.155200Z",
            "url": "https://files.pythonhosted.org/packages/64/e8/c9f195627632009c684dddcedb0582ef19acd48b650c890cd3457a29f5ed/pymseed-0.0.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d140f8b664afa8d8acf43bb3f13e565c0355f90b8688e7ffea4c27ed2d1053c2",
                "md5": "dce31979b5024901176e75d2c7174abf",
                "sha256": "4bde7acbb1c53278fa951bd80cbdb01d574490a112be0588baed09a6f87d423a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dce31979b5024901176e75d2c7174abf",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 222730,
            "upload_time": "2025-08-20T17:39:50",
            "upload_time_iso_8601": "2025-08-20T17:39:50.304377Z",
            "url": "https://files.pythonhosted.org/packages/d1/40/f8b664afa8d8acf43bb3f13e565c0355f90b8688e7ffea4c27ed2d1053c2/pymseed-0.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f8fbc8225009b5c0a16c6d09413f302526aaed77aea96cb71159eff13e02909",
                "md5": "d0015aff1924ccc181e7b5e36b93cb76",
                "sha256": "3c61a510f8fda596cb20ee91e8745ba3d3eae01fa6a95a6bcb8b6cf50db540e2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0015aff1924ccc181e7b5e36b93cb76",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 206996,
            "upload_time": "2025-08-20T17:39:51",
            "upload_time_iso_8601": "2025-08-20T17:39:51.566214Z",
            "url": "https://files.pythonhosted.org/packages/2f/8f/bc8225009b5c0a16c6d09413f302526aaed77aea96cb71159eff13e02909/pymseed-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37f66e73c298fe4597978f73b6a94edc0df9f4ce47b226f088175a79c7c0cb1b",
                "md5": "4ee068dedaea840899581083d4f4ee40",
                "sha256": "83f551e94cc96a3b94ed16a45b9488672754c5312018dcad53c4f53238854731"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ee068dedaea840899581083d4f4ee40",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 244443,
            "upload_time": "2025-08-20T17:39:52",
            "upload_time_iso_8601": "2025-08-20T17:39:52.761729Z",
            "url": "https://files.pythonhosted.org/packages/37/f6/6e73c298fe4597978f73b6a94edc0df9f4ce47b226f088175a79c7c0cb1b/pymseed-0.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dcadea61f687d62762a812abc53b22a5446be245a111967bf928b374db84680",
                "md5": "b4392add1f3b75c0937c4ce756be6ae9",
                "sha256": "b23123f31e2cd6e6743ca63b32a525e45e28a467f68fa97e128a7b59d16ab4f9"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4392add1f3b75c0937c4ce756be6ae9",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 242590,
            "upload_time": "2025-08-20T17:39:53",
            "upload_time_iso_8601": "2025-08-20T17:39:53.983294Z",
            "url": "https://files.pythonhosted.org/packages/2d/ca/dea61f687d62762a812abc53b22a5446be245a111967bf928b374db84680/pymseed-0.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b431f3bf3aa7bd9b1265cd4748c67fcd4feb694381c696cb078703a0236f34b6",
                "md5": "3c5db3857f02fdcb3af7d6c400e74e87",
                "sha256": "5c8734cac2fdc9691d4e3b77773b5e12ade2dfd3b585e0b7ec27d26ab8dd89c2"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c5db3857f02fdcb3af7d6c400e74e87",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 180746,
            "upload_time": "2025-08-20T17:39:55",
            "upload_time_iso_8601": "2025-08-20T17:39:55.263494Z",
            "url": "https://files.pythonhosted.org/packages/b4/31/f3bf3aa7bd9b1265cd4748c67fcd4feb694381c696cb078703a0236f34b6/pymseed-0.0.2-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "899bafc9d8b04477d7e3dd9f2eaa2b17ec5954065f7ee6da3cd509f654e29fea",
                "md5": "fd6d988c1ccde2a646ec6d5dc9fd6989",
                "sha256": "d085a10381238a4006ac94252b1247b8493fa548a65a977d4429b07ab99df87a"
            },
            "downloads": -1,
            "filename": "pymseed-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "fd6d988c1ccde2a646ec6d5dc9fd6989",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1632421,
            "upload_time": "2025-08-20T17:39:56",
            "upload_time_iso_8601": "2025-08-20T17:39:56.476372Z",
            "url": "https://files.pythonhosted.org/packages/89/9b/afc9d8b04477d7e3dd9f2eaa2b17ec5954065f7ee6da3cd509f654e29fea/pymseed-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-20 17:39:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "EarthScope",
    "github_project": "pymseed",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymseed"
}
        
Elapsed time: 1.30087s