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.4.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.4-pp311-pypy311_pp73-win_amd64.whl (183.0 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.5 kB view details)

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

pymseed-0.0.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.2 kB view details)

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

pymseed-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (227.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (244.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.4-pp310-pypy310_pp73-win_amd64.whl (183.0 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.4-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.5 kB view details)

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

pymseed-0.0.4-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.2 kB view details)

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

pymseed-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (244.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.4-cp313-cp313-win_arm64.whl (187.7 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.0.4-cp313-cp313-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.0.4-cp313-cp313-win32.whl (197.7 kB view details)

Uploaded CPython 3.13Windows x86

pymseed-0.0.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.0.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (251.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.0.4-cp312-cp312-win_arm64.whl (187.7 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.0.4-cp312-cp312-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.0.4-cp312-cp312-win32.whl (197.7 kB view details)

Uploaded CPython 3.12Windows x86

pymseed-0.0.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.0.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (251.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.0.4-cp311-cp311-win_arm64.whl (187.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.0.4-cp311-cp311-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.0.4-cp311-cp311-win32.whl (197.7 kB view details)

Uploaded CPython 3.11Windows x86

pymseed-0.0.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.0.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (251.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (270.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.0.4-cp310-cp310-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.0.4-cp310-cp310-win32.whl (197.7 kB view details)

Uploaded CPython 3.10Windows x86

pymseed-0.0.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.0.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (251.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (270.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.0.4-cp39-cp39-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.0.4-cp39-cp39-win32.whl (197.7 kB view details)

Uploaded CPython 3.9Windows x86

pymseed-0.0.4-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.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.0.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (251.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (270.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 ca65634ca20d8f2afb8218885b3c6cab78c0d8cd8d91f8e60ae126afd4a1cce7
MD5 077b35ff7ef7d1cff6bec340cd1bab9c
BLAKE2b-256 b5e752f1395e80cf7f94688bcca694e82ec0b0db8446d44719493a4b14849f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4.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.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f67b334eea821d758108e0cc5abd59060d9c586ebbd3552d01a7f59e7098e5a7
MD5 5189e686b7008d06fd0279d3ff9c2a10
BLAKE2b-256 7058a61b3c4d4e7a50b5b1a98f1c1fb0a33a667c2ebb708c02e5e6aa041abda9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb879a9bc7770920ac81fe4bf2e6a22920844599b25223093c131b6c99fc7878
MD5 fdce221828ea6ddfbc60c89f75670451
BLAKE2b-256 1110f5ef2b2a564f2be8696230b5e0f2527b052ef936c3fe9b5422f371e5059d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8af5a139c9092012f0507a95ba4f2e0b24b0fd400fb8a284101b8702d5c6393
MD5 163b71044eac0f9dd57487873482b7eb
BLAKE2b-256 bf274167acd902a9647072a8d1413c4a4091e2e327659644f6870debdbe0c980

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fac0d3a1025c06a72829df40ce24a1f7584a0def9606de2d9e41700c5b968994
MD5 6321cba370addbfe34826ae1be14131e
BLAKE2b-256 e7f3def0afc3e34c8afbd7f7c451ea91b2935424c9cad6255c04938ef97a43d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e34ebe7acd38ca314af91bdae880963862911efb3c5d47a389087bc0d731489e
MD5 fd155d4cffe441a449f00f7d394909c0
BLAKE2b-256 f820ba5b85ea374d305b3914d92af5eafbf4ef9984dbabf88fa86c59f3cb084e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d22e1f8f256a13265be7381e249e85a651224fad44b958d82e3517d00df3e2e0
MD5 2d66e83ae637fc717320b5527dde1c60
BLAKE2b-256 fcdd2d203a392412092b085a4cadb86384893c8e6492786b0607b0fcaa00d48a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40a8e6ab495ea4f79acd12932d8edab0193988924732c9f97d7f1d49442c2d29
MD5 c2f9fa3ce0fa585936d1b3bd9bb2d31b
BLAKE2b-256 10f7b3972dd385ac219d17f218257fb2eb37bac9b905617bed98e3ec974cef88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fcc5f990865a58ebf8a445031d2e520aa4d3e563ff6e4b8b033bdf63e6b3c22
MD5 3be8e732100aa419e06bac4b8572761c
BLAKE2b-256 7190718c440e6eba7d5dcc892ea4b62411ee68c2a2e9b440c60d8ea04b9e256c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14249df4b3ab101519db1aea348f22a07162fd41d2319e86a24f72dfebf1dbf8
MD5 74177fd014230bbd736417e64dc6fc81
BLAKE2b-256 a1e68ecb84bc518fa40a8cacbfd4e811ee5095aa0a53b7c83efddf693835ecf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4e61839d56f91b4163a8039b9ad56474b5fdb7954cb2aed62dcd4fa0bc0b5f8b
MD5 4d3a9c27eff722830d658e5eed7a1fa1
BLAKE2b-256 d5c9f151349da7747247a36727a787ef63a4f3812a894939abab01aac38f5380

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 187.7 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b0c51a8c0aba00cd6ac950b170ff2f9e42467cb35a173a02a907450eb72f4c41
MD5 1b31539c0418e11e2de3c9533e467fc1
BLAKE2b-256 fb7ce11a2e14b46f89a828061153816e26bbfea7add284f35246c7cbea87767e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e7b07317220e3a1920639da33414f2138c362ac8d8953980f8e9418667e7589
MD5 4707db0a6d48cc420016c411d607b60d
BLAKE2b-256 4e7c807bf8e50e306adb1d33f8f3c87f4cb6f5fae9f7af440c556e5ab3160cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 197.7 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bbc41500e0716e54f8a2da381d1fc45f110f933231178b8965b5ff2c4e87cbd6
MD5 a9d38c03edf63f31674ec88c7257f973
BLAKE2b-256 0f717dc1844e0b9069ff9b2c46d78f83efc05badfc852fdccc0bc9462f00de33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5123a72ad4a20b0015a5b6b0097b3594b833e909a2a40937275dc2af31f3e44
MD5 ba9bb84913a7c88ee6fa42517e87aefe
BLAKE2b-256 528096572d83c63e32ddcec4f8d37e0216695fe5fbfecc945c3fa464da9ac34c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f660ad8c2e9cce04748c1210fcfdd4eb0403ce76ff738533f21600cfd0291d76
MD5 74aa2f3fe3a08e2bfbf1840d07069e46
BLAKE2b-256 600887072bcecc4e973e00981314d896970ee8b53d23f5ca8def58c98aa3fe14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 813b1d7a63b44847edc53b448c64cefcd6023a3f74150cb1f945ac260c1e5372
MD5 be124711b44317956954b795f982d052
BLAKE2b-256 1ab9221835e664d4ed22ea518b40cf1d61943c4f916955a0332e3f00e77b319f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dc9fc9f015730a92a9887897f5fcd425c0adc4cab0145e555339898ed3bbdc3
MD5 a8acd33ea0fd1137ce042a1e7c9f814a
BLAKE2b-256 bccd0de2e3facd9e00814d6ae6f9a800c34c03c720105db38ea5e89b7898fc73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc6f851993d5a83c5075dcc65df8aebd6629f6e2a1d1d5724d3755a226edf2d
MD5 7233b09e0d138a6123cf847e692ab6bf
BLAKE2b-256 d31c00ecf46e7f4de031350db09e4e82a6bcb18717205ec7bbacd59cd0b21194

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 420274adf24928ad7a1632843c68bc6e0837871d3ab928c884ecf9ba49101712
MD5 2e3e78c132e6bfc07c2a69a8fe48ebd4
BLAKE2b-256 1115029b52a61d8869d2d7c7677cdb57713be026f0c1ab63173a35978238b907

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 187.7 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 525f24092c3bb03ffc77cfb62b94f98311e8e24a4bf7a31048b8dc1b6a2350a0
MD5 8659cf8fe457c17b1453f6357e24d871
BLAKE2b-256 9f65bd9404b45757a2ecd33b3e7c6509c91b14976050bcad76092b0b26c6b37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c48ced0ab7892dc92773be8c0327c5574353dc84a6fe2e88fef8b2de0fa43ead
MD5 5915997119dc080e2a02e5c0618e47ad
BLAKE2b-256 64cfc9ccf850fbbe2e55b00d7795e2cd19e2598bda709ad841587a2f92fde5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 197.7 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46a889da05362c25f2bf882a1d2b302b0805a4cfd4320489c8310752ddc41777
MD5 eea2ed8030834600892fe54e65c02d77
BLAKE2b-256 10f354f268822befbb124e18aa39cb87a567bbedf900624c8c8de70e432c03ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4155aeb6183b7dd3641e7534781d169eca6eec51c19bb9e905431637a619b18f
MD5 af5852ab0f1bc14f7a873faa5f88d5b5
BLAKE2b-256 d7678789fbf7f2a13a2f6cfff2f62d597d6289bd07b0b2006fa5cb942987f88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4145751b971a444b85e397bcfa5eac23505bfbf90e74f062d29bbf07434d6b2f
MD5 c7627b80899ff98aebe9e1f4ea7f6745
BLAKE2b-256 70d3630f8efd062802347cac5f030466c07a004755f7e79b4be5677d6928e0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41e8a463e2812d4333f59db04b7377bc52806e5f6c131c549190374098dd7086
MD5 a5ba216c0d5aa527ccdb0802c1e67e56
BLAKE2b-256 dd2d97a26915cec08eae385adbfcd2ba37a00802d89e72cc4650456d61afd7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52b436cfae7b90f190c840d568bc0888c102a171783fb2931713faed5ce00520
MD5 4b3cf2e1c621e8399264f80355aa2132
BLAKE2b-256 d7c7053b7e4984c94026e0946c59692fe44bc41a0bfcfdea062461d52ff576e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cf661a0726b82e5e67576e67628c584200510922282e4f247a7ffad884d51cb
MD5 1971d1680fb3bfe105d147a60047fb02
BLAKE2b-256 bcc569d3aaab6775ed76f3a5abbd183b0e5cbd61c792e92d4d13d046afcc8168

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a6bb181683a30d80de7071c4ec6f4492bb92de570c134651428fb8d1dba77e87
MD5 683868a423142a8c6e2daaf6c3a03320
BLAKE2b-256 2dc5e091e7775033e2a35011ae6695c0e816295b857d3967469bc4bbd031aa2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 187.7 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 787a8d151080ddf725cab5e3464c23926affc91206c1fe7f8b5c4c85e18cfcae
MD5 00e02d2055566a4949eb763508d8e7d6
BLAKE2b-256 9f2a266e054d84ca44867549e30c8ebc290b585e5ac259c27535dcc7301c6cd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09770c1fb27d236be2acd2d1105ff8a5e9d7d3017b66f74d0ea54f3059689e00
MD5 a1aa33a08ef491fb1cefc81c744cea93
BLAKE2b-256 385fda4e6f927ace2219cdc57c18aad7a3ccb17c2687dc5f387ad858d768cf9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 197.7 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f38d01190fcf25bf5e4b163f2fdb340d3178bb676393845cfb84d6a544cba51f
MD5 880748c615a32bc015c165fd4a39a512
BLAKE2b-256 d1f2aca7f62e8b7a9c032b1e352a68a3ce1146d94b5f4f5f0fce0404ae0a12e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8caa8f407aa774c45e2b65bed72683e947442b124de1d8891ea0e07f7a6c9de
MD5 1a1bdae4354053e2b381eb38e3c77823
BLAKE2b-256 6027515cfbd1b4ce885c0dfad3e174ec4fe3451ebb29a885690048686affb351

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b369524bf471d96fc2fa96c384df8763d80fe43bbc418cc08024b0ddaee3d93d
MD5 22819d1c4ab37d9f77cfefc9dc1de561
BLAKE2b-256 07560de2def1f1ba643459b00a9d5eb9c60f6a418e1e46bb87766d7d031b8414

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31847944389ac3e6ed6384a77f6bdced0cc75088d3053223f8f2c8ee990f0418
MD5 1021f34b0b511c7abe92ae4f2512d737
BLAKE2b-256 7891aeff0e6bcd11fb3b748fb110b05cf675cb1093df63c7dccce818fb21cf6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0601a6c5f9dbb67b65ddfc2cdf84ca7289b5439eb49397c986a584d4632b1fa
MD5 aff556c965f1132437d0c1140cc34805
BLAKE2b-256 c2a1a265f070be88e131603f8e6960df81d26d0218fd0495b2c9383c9c40ca10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d1d1e39b59833da20a4ec3648496efcc91333850d7e47601eedf04b7017391
MD5 4c145110168c021498b12a02dc17e48b
BLAKE2b-256 e684f4a9d00d4e49b4b7d852f42e97093af026a00c7b668e3c230c377efa96ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f73a2cfcc4c71417a77b3426496ca42d0337a34180d04f506e9eb4061f7d5804
MD5 7ddc80f640c239f16d340e6e69ae1c92
BLAKE2b-256 8c6b7b9d0d3ebba3e0597c6ad947251ffd5c73bc67b4488afb4486c5aed0a43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc5a61a471901a64a4c8abb7b12262cc5b644747264c7d0d640bc6c2f323dc81
MD5 705dd51db5c3bcb2a8d5454ef8ef0300
BLAKE2b-256 b4f16b63b24b35cfa19ee7355a0f3224131e3ab80378e723a2c9c9c9211c0ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 197.7 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c281672540f3d86e54610f79058f204215c4c28a5dc4e3ccf0f72f9d383e8cb7
MD5 0268cbe6b3f76634b49acc07ac9936d4
BLAKE2b-256 5196949f5fdc37f9da8312135a768abd5db4029979cf13e9008062dcbd4ed819

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7fcfee3cfe1c3818268cac1f6e946155a6e1a6c5bd9d390ed4905cd29cbefb9
MD5 407a131d9b0ce86915e9f31d0db7f8e4
BLAKE2b-256 daefef34f7bdeb04476c3de8b75973c46e3c2585b5bc0efdf87ffca82d03829c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57ffbfb603f7ba268a89fa498ea27edac620aefe8ebac38b3bdab3c9cb530c37
MD5 1f55d5487aa5cf0cbf0a1b8c2bc65d00
BLAKE2b-256 b0b483df7d5607376cb1105f94a86b4860ea85f895a84c9253f1777e3cbb5bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b067076b39de73f8f9852d858ba94c8f8f1a22ce9b150dc3bc014730be386a02
MD5 08912d07d1473239c006d958759503c2
BLAKE2b-256 9a6c5f31a38b3b388ebb92545349e5976d110e0f78d28f50a050cc2d73d795c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8577de64924ce26a2316f61832a04370dd8e66f966ec00714f34ad432ef769f
MD5 41201a1679ef15cc28447a14212f82d2
BLAKE2b-256 f55078cd4a59143fd449353bb8581214cca7bd7e9c15143519b653299eace614

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebd789aab17f3e9c317ae77e3cd3087a11d0600e2c95477102b1748659be8968
MD5 8f358ccb56384e1c945a2a4e478cf84c
BLAKE2b-256 724f68b814ba5d0d930ac43e8717257e159d893909c4fb8e75f4c3af8612b220

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fac610c6399028b7e78f5661c582e80a4ac0bd8f2dfa43471c4ea8415871c18
MD5 259888312d2fcc50ee7f6c9327d34394
BLAKE2b-256 77428c9325fe7fc4d9ffce665079c55ef279ead1443cb03a10333d081d1b84c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 157ae7794b48f67420f86687b7f543dc0f06bfc5d5ec00717a47ad10c9ef11ec
MD5 e5577ec78886443153a24eb70cfb2f5a
BLAKE2b-256 fae8ae4e6fbd3f18b78d008510d29395e73b285f12b1fa9785ac389d9cef1817

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymseed-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 197.7 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e3b187c73e675e81b68ef1c01e612e8a107a7f94429b17256dfca99faf8e7250
MD5 5c8da84b99ff82586b9060b52d831e83
BLAKE2b-256 122d27b1c0d639a737966bc0989ca7c1e3505b7f7b6bff083ef17f042bc7059a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db08698ba0228e7eecf5849bf70c231e4e924080c24cf22f308324abbfae394
MD5 ac051ea132fa70d9c60f04cd84d6ab8a
BLAKE2b-256 b80b55d35558b933358867023c088193137426eb41a78beed72db2b176e374c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55ffbb36bd4490288e374302819d4e915ba03314b7daa6fd47c51701f21c90a8
MD5 34e695f6dcb78324abdcf03fb0aa8f78
BLAKE2b-256 61854bed3c45c26dd3dc84c3c3ced1346ac000cad63f8fa3d33ba9609cb6d88d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9150ea457befb342af23adaed875e04a66e6a6e7c73de3f57b17364fb19a475
MD5 6f39b4d9607540b888f4dc42ccbadd5e
BLAKE2b-256 4b2ad72ac975bbc30bcb1d85198bbd32aa1b825738a600cfe7810acdc3a37fe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0858182502b98fa8001fa2b104e4eb9a5fadf1f0c17fcdeb289ca3f48d6a89cd
MD5 9b0443e5ad69df4f5e921f98d8d68ed9
BLAKE2b-256 81eccf7b30c2d1cfa457a5e4ff01a56c3530f8703f53732fbea32aaf22d99733

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c9f9b158f369b10a49dc081603eeaa9f276bf45c4af83fb6a2b47dd3da3f9a6
MD5 4397f9e9b0c309bc1fd9432f3b488740
BLAKE2b-256 a56261d59c5583c6d90cf09b5aac26eaf99200700920a746a2fd7a7d0bd5282c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0af423523a5a7e0df0cb0ebcf1ac07a69b7ceed1ad45cf08647303537b07c0b5
MD5 a8a5b707f7bbcc9baca862197132c24e
BLAKE2b-256 b8941793c143c34cbb13196c6a299b4ba093ab2f299d94c527c8a266844565b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.4-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