Skip to main content

A Python package for reading and writing miniSEED formatted data

Project description

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 (defined in the SEED standard) and miniSEED version 3 are supported.

The package is uses the C-language libmseed for most of the data format and manipulation work.

Installation

The releases 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 directory of the repository.

Read a file and print details from each record:

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:

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:

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymseed-0.0.5.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymseed-0.0.5-pp311-pypy311_pp73-win_amd64.whl (183.4 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (227.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (244.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.5-pp310-pypy310_pp73-win_amd64.whl (183.4 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (227.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (244.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.5-cp313-cp313-win_arm64.whl (188.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.0.5-cp313-cp313-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.0.5-cp313-cp313-win32.whl (198.1 kB view details)

Uploaded CPython 3.13Windows x86

pymseed-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymseed-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (252.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl (271.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.0.5-cp312-cp312-win_arm64.whl (188.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.0.5-cp312-cp312-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.0.5-cp312-cp312-win32.whl (198.1 kB view details)

Uploaded CPython 3.12Windows x86

pymseed-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymseed-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-cp312-cp312-macosx_11_0_arm64.whl (252.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl (271.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.0.5-cp311-cp311-win_arm64.whl (188.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.0.5-cp311-cp311-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.0.5-cp311-cp311-win32.whl (198.1 kB view details)

Uploaded CPython 3.11Windows x86

pymseed-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymseed-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (252.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl (270.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.0.5-cp310-cp310-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.0.5-cp310-cp310-win32.whl (198.1 kB view details)

Uploaded CPython 3.10Windows x86

pymseed-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymseed-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-cp310-cp310-macosx_11_0_arm64.whl (252.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (270.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.0.5-cp39-cp39-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.0.5-cp39-cp39-win32.whl (198.1 kB view details)

Uploaded CPython 3.9Windows x86

pymseed-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymseed-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.0.5-cp39-cp39-macosx_11_0_arm64.whl (252.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (270.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymseed-0.0.5.tar.gz.

File metadata

  • Download URL: pymseed-0.0.5.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5.tar.gz
Algorithm Hash digest
SHA256 8b62abff83fd4d57d03505ebfccbf06c2e14c44488c1850703285fc5081ece30
MD5 cf26910202beb9be685917c2452b318b
BLAKE2b-256 29da09ba86ade69f81464c14cb13916d7c0a6edbc23cb264477e57cd01e4bf4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5.tar.gz:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e51df5143004f7ce4280f85c0a0631ee500da412d305a9f13c3f1c66b4f1dfd
MD5 0a7ac5a8d0b561fe217f2529ec8e6ffb
BLAKE2b-256 10e69099fc0325800e5e47dd80963bdcad9e9c1148d8338938f3861d838f2931

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe5fc9dbc22b68be447cb563486799237247727da38a59ec533981cb9067d537
MD5 5fa4445147e3bdf34475335ff7e3705a
BLAKE2b-256 47ddb1e339aea56f71b600ca303d9e98cbb7edc19fd8fe9a3321ef962fe6a433

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a933ec7c1589888eef95e7778b391c3d6823b6e21e78b8d4d7b9d450d0b3e0e9
MD5 0776ce351af2aa8d46e3139d94a49537
BLAKE2b-256 0a75c226bba30b09185a879da44029e7b71f585eb5e6f6d6149ca275ebfe6e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37c5b5440df9c4849ab31dda11ab917d5a1755660efbdca4491ac5b6619b6ac1
MD5 46e05c372818c60ee0014488130447c6
BLAKE2b-256 07e5dcf58a0c3f477f245cad87d102371f1424851806dd040043d048fdb56a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f350219ea38cb7763374a433cef55460acfca3bbf7814483fcb7c238c7590e61
MD5 71fa6d89658bb0b85522b0449d3607dd
BLAKE2b-256 c1ff159e3576dbd8975dd505b16514c7af2b9c501b676a987308e8f62d0eed55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d40f0f09c74f8a49336f6820d77f0c69b96315d578d265a644837026faaa469e
MD5 c3648b5f2cd06c90f61f8d4821bdbbd7
BLAKE2b-256 da81b45cc04c3c17a92a086ace327a73787a4655168589e66c87a978bdf68af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19e39ad4b7ba25331af1398ddabf3cc32f5a2900e1055e3a058885c105e68852
MD5 cf31eeb2b599bf6212107ac7dba35ab9
BLAKE2b-256 1fc8e315b3392239a1c34b8ad6a40779cdceb0b02301d84a3fd386a557b276a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f604db1591c2e44460d361d71a60fa7195ca522c132cba63de4b0d05e1f479
MD5 afad7015def57564c92c82e82522107b
BLAKE2b-256 4f2f8a99f9830ab6ef80585bbaff5fe49b10bcadc0ad13a2e0b4d75da186833c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96942753db6f869015fa1f2567a1adbb30db7fbc4e6d7a1de96626855c671c73
MD5 82b8c82180ef7f5ca30f3ac7955da859
BLAKE2b-256 448bc1548c9a25780fe10177b7f3ab09f0c8d102026e103c938737f0b6b0211d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26f3b89ef285ef4a3f951add4300af0ec3c584cd451b111bf7c29711b91e8b3f
MD5 58b9eda3fe9cb7ad44d45d43697bddca
BLAKE2b-256 3433de959c37dddef4b8ec43f08b44028698b5d980c95fdce76f15615b450e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 188.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8ef8c25408faacd62939538d965114be1d7302dc641cbad5576c898780142984
MD5 aecc5e3817802caef3e2dd58ff719495
BLAKE2b-256 2fb7f132aa2c1ae7c9e81fd7ce60576848112e98760ef3dac9bdc9a6f539ae8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fa6417b683220f0939b27749dc4f7cce0d77cb29a57361b704e7e8a2a4ec7d5
MD5 6bb56048acb7c401a6754bdbab616759
BLAKE2b-256 7d20d95b8d569bf09b03e24a2cab7fe4138f5193dbf3893ca514754617f11109

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f284980e0ed5629b01e300f30927ccf1d3f1af9f51e4da87471117953e18c681
MD5 26ae2185629317ac373b4d5bc7c65681
BLAKE2b-256 e7c841feb5adcab1d54f0dfbe3d62830ce8e2b44c0effbb67b6bb9d93bec79f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 225dce54bb6bf1374e99353e16a04736bacce27ad9d675212440bdbc9395ac2c
MD5 38f318ca0f73c08dc2ccae0c3584149f
BLAKE2b-256 f14568216e4e4f30ddf50ea6d280a0a40c4a8d6e6f32d5e88d82e12adcfa3f9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02f1fb318a9269036240d0b21449c3aaeef5842e1e577bd789923f1eca439971
MD5 cb4ae46a7f19db7d2c4a9fc229fc9acc
BLAKE2b-256 d25794237f81a5708d1331358a93a2900ee08e114b659dfd55e504615634c6ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0efa76c2eb70f02fa3f080df957ad9686e96aa49dea4f130eb91ae54a6974632
MD5 975a06976306174c9e431ae693ac1302
BLAKE2b-256 d038594df4dff9e030cca5dfde8940ec519b462b14e1b62324cb80fe9104992d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15dec072ee4a289e524fc24d8756277ec13ff8a0c133834c5fcf813cb898f467
MD5 1b9e8076929143cbdab964c3ec8f46f9
BLAKE2b-256 c9bb50d74b50dfacc420d9c035296ec1239f2d7147a9320760828806b52e2903

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 285c229ab1757efa188bdd06d66c6317492f0985463997f2723c2d0d28387377
MD5 cd6815421b3ea0c29318dd7a567fd384
BLAKE2b-256 996b868a5accad3be0b2ddd66bf798dd5ac63e733cdfcab096741754db2a9afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52889634e499429ab1faa0ff5d1c59b4d9d4d898e6161229faf827694e29f70b
MD5 2fa781e7783a42423709fd459cf90a0b
BLAKE2b-256 eea1df515036525cc30474e13bb430a48dc8a78f5e241d3166b85588d0f4465e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 188.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 de0759a7deb3a97fb10b2193376bb2db7b6f83a54f04386d3d441b4385adc2e4
MD5 44272d819ca0b9b79bbf1257e80c5257
BLAKE2b-256 69a8f7c9b52fbc54e6aa24b4a3e66ed6d448793e7500d8c13a5fdb933c8402b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64cc05a9b528d2bea5f258cffd68136578871d4025ee810705803878cb7df25a
MD5 21b229c1fbd75b53d5e03c69a329f4b7
BLAKE2b-256 a9fab96fb71981d86d50f6b90e7c68f28011a2402cb4d5fe2398d712d791cf44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 350fcd3727ae04ce62f11716f310000d10fd021c64950c4cd07edbad33fad3d3
MD5 8d419c1afbc8ced13318d202e721a065
BLAKE2b-256 6100d5a3fe2916910816647aef69e55453a5f3af3b7f8a54a36a0c2912bc059f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27385937ef7227d10cc0eabe27922d850a784baa69da5812f4b0c437524ee6d9
MD5 74c366185ea69362850838bfab30a951
BLAKE2b-256 f0fa152db5373aba2540c0584c0bf388f195728221302f5a76ee874be8843f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19169aab0fc6b07fbe929928d9a207ae9dae711cb74b3a3f93f1d0166c0c7e8c
MD5 72dc15606620a0f025bfe78971c16045
BLAKE2b-256 69aba11aba965a0044eb734f567a9b8131272232348bc914adcb2491e3539170

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec6f5e1ca5d1abb632d4cba2b9679c035c6fbb64a356cddcec0f9144e3f040bd
MD5 1e63855394b758de4d65892a073d20fe
BLAKE2b-256 c5ab81bd33510f7beb5458111307375fedc517ecde4242a1d1a8840c2f42d848

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c1148120402d92f837a9c1cf697ea3888a0093eab8e4dd0a602664edafe1d97
MD5 a9686aa2f3a35433e38a7d9691380c52
BLAKE2b-256 921bd407832d99aff5ea073523e6e4637f8d771fd55b6d9c2a188ff60c8ee1ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fe0f38c4edd597d99bcba611e7e417489bafc087b256ee732ff0d0e2084db57
MD5 cac71a243c362fd237260394455cb529
BLAKE2b-256 17b22bce74f5296643515fd75e7db5e56f179b8b27a2f4885714b87a19879d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96611f791dddb38fc8f8928b9054f819f04135f43c403475707d32628d04cc52
MD5 14d87df97af8563d502552342b822a5d
BLAKE2b-256 de800db48e4a22dc151a40047e476c9d9db75ba3f5cc75646a9cb32b587fd0de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 188.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0cee65b0a936856dca6d6852f0d672cd74eb079432aeb4703c7ca1e19da381ef
MD5 094caab0fe1c269484a2c0325ead5023
BLAKE2b-256 fd0bf9a5e9e6f44be1a52598248787632f12034e9ea76fd7d16d9a4d0cb2dc73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76260fddf3b77f1f46e7679c30ca3a5d6f4be8dca1dd54f46ec0d27f171d0886
MD5 b02ef0343cd648ef07a7b349149ccace
BLAKE2b-256 48fa4d1b264221edd08e99065c3972695a8039e4ef69bdf64a885a39c3cd88e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bfcb2a503f34d2c3f35c2d4ed1d0d8005930b240e51838f6a8d1b6919e62f60a
MD5 2dff50204d5ecb95f1053e4d7c79a4f7
BLAKE2b-256 7551f2de2c2531805af3d22fa96731a320b5a6cfb923ca0be38043cbd3a23ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b5e392953ce6e7c4858bb51ede8424781a26d1e705008e9b635eb45e4ba8806
MD5 bfb6e015ed4f0285bd58f39ed1a98985
BLAKE2b-256 964e669320695a2de29406fb745fce06d51f2fae655b7d29af8c7b4bb8bf1d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14fa981dc7569c62f06f8edd461c2600c3af97d34f4f4bf37cd6e3b7588fbc76
MD5 f55af75e04f1d145fe91090d47f0b63f
BLAKE2b-256 8ebba5b1e084a601faf2c591ca8af4403fa6cf52ea2fd14324de847e2438f5ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1e664dd72d599b964dfcb1dd7abd21771ec7e6d395561feac3351bb40ebd4a9
MD5 3c51503a2efb07d888351879b6930b49
BLAKE2b-256 db59eb9c20ab990c4ea4ec0dadabd976caaa230385aa13a4fba76149f4a4f772

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2d8039bd33c045830a34d07ae1bf2aee7a9b37513fea9a375f28d39ff74873a
MD5 480154bb67f82aadf523816a9cda0a62
BLAKE2b-256 5c0ee2a9283a126398aafd322b4a34b8bd9dc1620dd662c88c229afa66fe1e75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a384d43445462e6bdccd5345551d7068518575be45feb75feec839490d7d60c
MD5 8d61c0035015dc621f1601c8a6a54cff
BLAKE2b-256 1faa58f7f825063684a233b0145a4c604e5c86c01ac9f38d87e9efb6cf5869b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15e488ea6ccf39fe6e95c0ce35b37852bff1d281f3788ebbd6dbcf1fe4eb2d0c
MD5 81a10cc589904f93cc9c194a5d61df04
BLAKE2b-256 53d404a5dcbc3556e0bb18229f6a07bcc8477b32b5bc1d7f62ad4056ef3f8577

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c1c25f564aba2b45c66ca9bccc8c406b11b07fa8f0601969973090fe6f69b76
MD5 8ed4ded7408331e8f8ccd6780a0637a7
BLAKE2b-256 2088f667dcc6ad1d6bfcb6454c7c4247cc2223ec82eb305911cbe65c5f2de252

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e21e9309e6bf61b5ad8d7cd81102c8ef78a509d117b27b99ecdfde92b26ca01
MD5 b9dfbce1e3372b258978eb6b878b8a74
BLAKE2b-256 d7c3ec8b11e31afc91ff4a85c6b0ed8807956648a0a6312e11bf7a8846da61c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 182dce75feacc0eb6dd5c30c4a7e4732b0105575cefcde205a2e6f7e18f37128
MD5 cc7936e3761bf61c7e535ecabb6ac7a8
BLAKE2b-256 d2a23b4dc4108df0414a0ca2a866956b048b6e70b63a560178f41363de34707f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3338a6f81bda3f05fad566c019339239675dab67fc5b9a5cd553759c57ea21e
MD5 89b888a26c5cd41dec65b34c53c57020
BLAKE2b-256 e2f1377d4ab3416e7594b4edef8814b9abf714c74eb7d8945738f24adc6f3c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e2ba276c2d2cbafe2a0a750be330920944d01e0148279bea63b4bb8d456081b
MD5 b57c3b4d2fb976fc7a502772d0135350
BLAKE2b-256 537ec18eb314ba02fab09f10b2a3bfe5ab4e06b8e18cc0cd983cd839dff7b730

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 578ad0a994b9ecc423b482b75c89e7917b5d83df2420849e14ae4001a38647f3
MD5 c5ccca638ea05aa2c9fdbdd21fd08c54
BLAKE2b-256 7de790aa940b2014c61d65fdd0366d06a1b7fc459d328f3a0f4b3a0807f77240

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cca523e88744bae107c3345debdccfe74a106bd585366fb651003c9fbef00355
MD5 81f7b0c4cce51de5df67f07c0b705983
BLAKE2b-256 7e44bc55938b1bbca5f9d967260c9af6dd591b3513361cdbb35f24ad86dcbac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32996772ab9dea602b0cad2a38ca5298215ec0cd26798726ed50864454908c38
MD5 38f1c5e98591b02d0687eac1b9e1a37b
BLAKE2b-256 a50dd0ab14232b5b034909e5798f03d3323f547504dd26980b7a2bba85d93b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d1c160ee4fca8cbbc52715eb233f146666da8584e8ecfb2384f8b182c2645bd
MD5 a205bcab90ee21c5ad12e96982751db1
BLAKE2b-256 ba735e9cdc3e367d02cc9392966ec93a13bb04e1013743553ce6080b693ed77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymseed-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8000c3059b851c0f262d14f5b6bc32f8122e9faf9f16aa999dfa7aa3302d320d
MD5 01a5d70ea06b6ef70870376473b2a476
BLAKE2b-256 43d7823956246586556e36c8383b1cf7fa2074ae5eeb5f450945a0364af5f1eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 953a98fa3aef64bfaeb0733d4c10331a0581702d6529f21750f1dfc775160ac4
MD5 2160d86437d76bde97e32cffb83cc663
BLAKE2b-256 3353757eb575d5d1e9e694886afebb548adf78e0a982587450987efc886001d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e4ead1eda2eb9a6b96d7767553294213b84a126df72c78c1be99924168e3662
MD5 9d9c885f46682a82448229a534966a13
BLAKE2b-256 23865787c1a55965eafb8358d06e10913fc1e2ebb6381fd2756e665cd9b46c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b9e17cd91728882ba5c4a535f51dd1038c65f134ba63a5037c5c300f214e5b
MD5 09ebddab09a4ef4373f2a2721bab0c93
BLAKE2b-256 9dd2d9310f7b599ffd4b5b760572579a31ca4b956413f70f3c7277f182d77d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 524ed62027ac04838ba92481dbf7dfccec52e19a90eb0dec1baaf37dfc80bdfd
MD5 2f2af6db3d1b60bf65829a3457a0b8a9
BLAKE2b-256 e38fdac872447ec2c09b4339b7196d5662fed26a40bc67898c7ea202c415e3e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aeb55369f5e2c6bc4bd48fa6b096bf2f12e58d7e4bd0179c10047c85bd0b4659
MD5 42dd6b35d4d3954adbeab7293418726e
BLAKE2b-256 9db711c7b393f190df1f687219b98bfd54428ddc026d26dae4877c8dc45a0839

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 824122803ecd9764de805c9d14bf7a69e58264090e0ae96f1fd88ef1a79c29f2
MD5 ec8fdf7856d5b9c1a1144eca96a3e6e6
BLAKE2b-256 00c5564aee45786b9f374b12339a2f91823073a6b5e286defcdedce8a8f1df7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page