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 msr in MS3Record.from_file(input_file):
    # Print values directly
    print(f'   SourceID: {msr.sourceid}, record length {msr.reclen}')
    print(f' Start Time: {msr.starttime_str(timeformat=TimeFormat.ISOMONTHDAY_SPACE_Z)}')
    print(f'    Samples: {msr.samplecnt}')

    # Alternatively, use the library print function
    msr.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)

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

Uploaded PyPyWindows x86-64

pymseed-0.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (276.7 kB view details)

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

pymseed-0.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (278.4 kB view details)

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

pymseed-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (237.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (256.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.2.0-pp310-pypy310_pp73-win_amd64.whl (194.8 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (276.7 kB view details)

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

pymseed-0.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (278.4 kB view details)

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

pymseed-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (237.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (256.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.2.0-cp313-cp313-win_arm64.whl (203.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.2.0-cp313-cp313-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.2.0-cp313-cp313-win32.whl (211.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymseed-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.2.0-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.2.0-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.2.0-cp313-cp313-macosx_11_0_arm64.whl (265.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.2.0-cp312-cp312-win_arm64.whl (203.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.2.0-cp312-cp312-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.2.0-cp312-cp312-win32.whl (211.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymseed-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.2.0-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.2.0-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.2.0-cp312-cp312-macosx_11_0_arm64.whl (265.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.2.0-cp311-cp311-win_arm64.whl (203.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.2.0-cp311-cp311-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.2.0-cp311-cp311-win32.whl (211.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymseed-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.2.0-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.2.0-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.2.0-cp311-cp311-macosx_11_0_arm64.whl (265.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.2.0-cp310-cp310-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.2.0-cp310-cp310-win32.whl (211.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymseed-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.2.0-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.2.0-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.2.0-cp310-cp310-macosx_11_0_arm64.whl (265.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.2.0-cp39-cp39-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.2.0-cp39-cp39-win32.whl (211.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymseed-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.2.0-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.2.0-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.2.0-cp39-cp39-macosx_11_0_arm64.whl (265.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.2.0.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.2.0.tar.gz
Algorithm Hash digest
SHA256 999f615c0c42415835e85deedbda641a040cb25b02b2d5d31335e8ca3e7a7858
MD5 379b2a1a54eca28b7c588e3887555a4f
BLAKE2b-256 e7b81b9b486fbcbab508c7301577b8f25050ed9c31cf084114b018ab2c47d2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8a6ef0b3390dd067d7374d5c24ecb31fc17ad267ac4b3ada96bd53d718e929e8
MD5 f4c46fac4f0a48c3a94fd84ab719ae74
BLAKE2b-256 e19a08a78c726dea7b558fa57da9251338e3b9c2d4adbffcc6d8d7d0fe5e9f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-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.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0c0ba4ce05b6bfe9f88a566c64e09edd641e136e599acf9b6efc4500cb0071a
MD5 6a54319a33a80c4b10d986bb679c78a4
BLAKE2b-256 e555fd1b503b93cc60257b46d2743ca8d9137fc03beb63dbc70585cd863f925b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae6694cf21ae80706575aac7cbd92b260276150d114619724a07741bb4293384
MD5 5c358cd0cda3a629b68897ff689a0e4a
BLAKE2b-256 64ade5a32312dda5abbf05df8c2a6c2701b13853f4d5cb9eddf7087fdf481b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4142f30e16805cb6457fa23d7c180e4c28dd637618bb27fd4f375dab9da34797
MD5 73c0244cccc815e9fafe6fe47cf45240
BLAKE2b-256 5da2649abd21f6744c16308a69364405b37cd7f332069ad60d1c4dc809437076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a54367abee6c530914ab05f63f7ee56b40d326185bc5f82a52f5d990e79a96a
MD5 a76d1efb972cd307679eed8f8ba4103d
BLAKE2b-256 ab9baf1ea40311df2e0eaf8df2398a9f5e52d328698b4564141b7f477aca28ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7902db4178f8d8cf9a8b22f83afb711459bd693784d2b6d27d34bddf39a5b8e3
MD5 91491bc70f77f33181ccc54bbf0fd66a
BLAKE2b-256 2bf4c52722c78021e392b34926e9b0c7d6daad79a30f00ad7f6bde178b0f94b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-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.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c2952285d92cb1260426dbcd8c041830d19a891dd7360d761cb1baf4c719de6
MD5 ab37b9c8d61fe0b9d53a33b4793c1089
BLAKE2b-256 8b1f45e36e46bebaf1f754e769086e265075be2ebb3d82af298818f78966bf60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0595df417e417cfeabf4d586362ead3d541deef9592f6463d30ccdf267f80c91
MD5 0fdbf0ea443c626cf9b4a26a168c6005
BLAKE2b-256 53402a328883add3d2cc5180cf0adcc433c4b5a19d63c0f5c64de0d79eab2ee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f906c9bf75c2dd5ac245a463e9de99ec5e3430193e4e1e95506d0c879de7b83f
MD5 03bf99b58ad56914793cbe4f85644fe6
BLAKE2b-256 5de5fcf7f964f9303722cdaef8d7a05602405b9f5f9e0c3373b6f7e3c5b9ee40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 774fdca514e4a56a83a3fe0fd804832fcb164da1c3fac15c5100b6a38121fe6f
MD5 7b8f0eadde1c0c9f803e4fc86008a6b0
BLAKE2b-256 04fd59b6102df6be5040557260638d71e302c5288a4f403df12f614caee37790

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 203.2 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.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a6aecf3979f784c519b468458eb7a3c7d4106d72ff29f7fa351cb3041d95e6b7
MD5 974863c8fed9e159da964bf005b4f8fa
BLAKE2b-256 84bc33565f036db08a7be543f6db25e3e56ef204eac3ab229f292f6444ae942f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 217.9 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aa15047c8702f21318acd417a9443597fbcf59064a972bddc8293756521d9e6d
MD5 d0291f2a3aa8fbd0ef4e5e6604eeba74
BLAKE2b-256 387cf66f3efd0fe871ad8a2fd56e799c438d023ec5ef7f6cd1f6f16ff4b4600d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 211.6 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 40ff5cf7e7743dc310150e3a65f573b46ed5d405ce2b3116c1f58ba4a1beabdc
MD5 39ecc71de5bb73ca007a484e566bf34f
BLAKE2b-256 553c6b3026607d92700106b27a2517d149dbae617c376d91861102ab2265d679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0b47eb04ae45fee55ba06c98eee1b2e0e1c8fa09994ee14962731f801ee1d06
MD5 acf73c5c610e22d4ec5b0bf8814766e7
BLAKE2b-256 65186df9c1cb8dad4b368da620a508ad7f7966c979971c3b5b557fea80bd76bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c185d415c078dd066090a7ae4f058dcf3448807a7eb248b610082db5c347f58a
MD5 5883815e6abccde8ddf68e43c23107e5
BLAKE2b-256 1db3d71ef0d69629e0d7cc323cf7863dc770737b1e01bffc1d356221e439e44d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a68e5bd82c20e3886467f2958eb150f11d48c929e65c81c43259e938fbf3fdc9
MD5 76a48c894e977aeb703e4668e861cd43
BLAKE2b-256 841ab16c7dd7bdbcdc773e5d0a408fe004c420d3a08518a0851812779881b3bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0782a048d3d0d9c2df7ab578401268185abae196fc5cdcd2ed61b73eea4d23e7
MD5 b4377216febc047a98c768ed50b4db8e
BLAKE2b-256 833bca5eeda0462539c3d59c7814012d82695d367dff58cc740afd6b104d2731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83d746a5c33c8d489b16e5564ddc0c38b91d84ae578c11f5d5eb6827233fbbbd
MD5 17c4f67a46c330fe4bc2dd22d4f66e6b
BLAKE2b-256 b86e66e420bd2f58de0efaaff51cd596b1e505b70a15e4fb6d99d8b77f4cba88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1e6d3e48da66fff8e2e0795421bd960f77af38a136afe5b559aa4b4675292da
MD5 8d537278ace6362d9215e46bbcf8d7fb
BLAKE2b-256 ca07111dc322fb1ab3a25c03f79e59c42be8627669e29df7c6aa22c43ed12abc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 203.2 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.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 19c5858f9b60bedf22283dfdb9c3d1edba4ee6503843c849cc71f64d14ccb848
MD5 306e69f29c83f3ca4a8dd56aa74d7c2c
BLAKE2b-256 934fcf46fe2da345d78ce18fb419085d0c07bcc4f5e6dc02120c53423abaacef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 217.9 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 897df3c6c09744848e83dabb5762bfa8bae98211af89ded70a830b6e1434e651
MD5 e86eb2c0260f3c501aba2b46c7194624
BLAKE2b-256 12c2d936d821cafa26c8a50e8dd6b7624e18dc62df6bb3d2db10a10b588091a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 211.6 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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 404dfad6e2470ced431b2aec11f3bac487258522cff3dcc48eb723dbac63f93f
MD5 80adb92a62a6ac6a335a65722818db29
BLAKE2b-256 33d6b1dd0680caac1d6bd06ab478183b47eefd88cb0a23508cf96bf70616a5e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2ffceab2a4f1c613fff12017d6ff893ba85bc789c29f58d93d72ebc984bc9aa
MD5 278ca4c47140864dd4ebc8532fa50aee
BLAKE2b-256 f8748faf264699e7bd453b365e78b227a9dffbc50bcf4fa91a5abcc778660bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36df8483616f10ce8dceb5005909df7352662cd4a950e608a48b2626bdce1f37
MD5 7e499e2cfc677c72161a0e13f3aae328
BLAKE2b-256 3f652b20c1ad52cebea838a4dafab27a0fd37a489d246cc212a92a3304d3e674

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eff3ac3553fee50a57e770c17a82d9bc8f3e6716dc436146f51ae95458ea7ae8
MD5 1487afba58de2f725ec58c58edabfd14
BLAKE2b-256 c73feef437ec88f39fd3e1ef869cb700d0693ba6dcddc77a43fb916f98f81938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44a69b257fb5d4cfd9e0995a534a5abfe9625a573ef2efebfd51642ba7b416b8
MD5 740b83ebf628e109675eb225ee8b3e2e
BLAKE2b-256 f061a80030b65aa796c2e182431a21ecf85be34d829b93410be5404c514cec8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93cd58cd1a8049e04de2e01919f2a1abc91edbef18c60b1c5793f21cc200cbcb
MD5 9a8d37861eb62283f2b4c4040dfd946d
BLAKE2b-256 56fb8ee2e2348b98cca27192ff451fa9ecebcc009153a6f536423b2d2649d5d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de17add9825b760ca0d8b97017bedb10d53b0f9338ceb3f68c40b7e88ab1caa9
MD5 b36dfe762ea496fc892e0f449f978b6d
BLAKE2b-256 1b262208c18da18ccede2da5f134411ac15abefac8c6e23a5292d3571584fa3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 203.2 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.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cdb6119b0bfe11d49917d85dd94ff9593edb94fe692143ad257482afdf1b94b7
MD5 fb176cfe6bb9dacb692572a23b48979e
BLAKE2b-256 bc277ff5b2ce6fa3087ef0129dfeb926177ba5fe9d137c453b1e801b4ed44143

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 217.9 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d3967b57c0e9fe92352ac70ffa4fb093724fec79ca0b659ab7bd1f01a4ff13c
MD5 7036263bf5455f407c825fcec203c41c
BLAKE2b-256 974fd5622dc23384a4475e3570965cd3330c12ad45d81593ebfd1cdd926bc927

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 211.6 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90e269854b1b15b157f3d97d805c7785dfdfaa4a206bcfed0a6cd91615179569
MD5 c53be77c3e92f9343766bf40e2e000f6
BLAKE2b-256 9d6ca277da1935135707b1c5eb59c24092a3d248f51a337fd39ebfa17d9d7196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eaf55d780fae38ec24d534ba0f227d925635e5078798a8246d3b8c1a13a42dde
MD5 130a8ac0278c5fd0cac3de38a5437c0c
BLAKE2b-256 bf94413130e71b326600efde5333280bb4e884c89594775d2d5d9213ddc028a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60b494463b4076c90e2b8cc879835d1ff59db2c1268833dd19da31d176658f78
MD5 d92c592b1ad078f1cd53f43e8ced71b8
BLAKE2b-256 8d78d3c4bad41ab4cbd98b76d97c52b05a07d3cde955725421a776faf1b00aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44b325e0dac0f65c04946f171530622ba04d0366968cd77875055fa9d42b4b6c
MD5 86081db818ae73881b7c7ff8e5a3e0b5
BLAKE2b-256 b2ad025cea3138ddf087f49658162bd80f64f1c7bff6679c8226c8ae35d9a303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2dba897625cc994ce267e606b00b702b0a9d71a7d64068cc8f5f4e601c31244
MD5 66ac00ac8a0eb9a34851bd034a866486
BLAKE2b-256 156608ac14056d7c3f7e0e1d76e5185a990a5fa3eb673b97c0491bc2d5d878b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7b48b72bd3eee3044f038e42532f7dc67ca8bf5004495fa4e2274cde918aed1
MD5 dfe3839b89a16fcf33000bf41ccf3cfd
BLAKE2b-256 6a32b41bdf30cc045e264c19219613fea6f17d2b95538ce691a6b36e15c93e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e08cecc5c71cfe226475af85f55e35b151408322bce82a3e24aedc952ccf7366
MD5 c4b1a08e1e51e8c3f3197b86319b687e
BLAKE2b-256 884dec4510fa833051919eeab9923c87b635b281422cb86b5eaa223b52a95993

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 217.9 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34f8b1092aa36d88b3997883e115ac2429e1174ff78fb0df81745619342312ea
MD5 10bc015965676269c73954e52adf857a
BLAKE2b-256 2416cff9e61c6d0d3d88e93383888e6c1342a9c21164ad3acc222301064135d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 211.6 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9858ce6dc4b1d95be733feec4b4e4f1fc61ea29c310848de83e57e7d0af3acfc
MD5 f8c7dda0037b9f47c55c805da8bd38b8
BLAKE2b-256 39b1597bb52db6b6c0d43b1c39f52a03b540c4c549af998016f6c6fc25adf5e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9807c48f16b4552b9b88370b21cda45a815f5401696c321e5b394c5af2031d21
MD5 2470d63ddac8e900f48de589c8146ae0
BLAKE2b-256 9b56431e89cbafbdbb063799e8ba5d5327580b8aeffad521c26ae5d998a23cea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c201eab383d73bd8a72760136a6e17904dd885fa4b385569d0e76ebb4c5fc612
MD5 85974b9a5ac6d3c92fdd723cfcd7032d
BLAKE2b-256 453aff404683a74dcfbeb218c33db849334a8b9fd3cc218e661ab8ebfd1cc164

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bfd6557ef328a1a517090bfda5775656e3ba8a7c29b6b56aea640ff5ccb9167
MD5 94df5972f6a7a928df74d16234a556e6
BLAKE2b-256 405e9487e62abf6fa39647c61164efa3d3439e2fce2551f7c9bd8ba44864c5a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da5da7cc7ba5df48f253a779cf4688cb78eb3199975162278a12c511d3b58021
MD5 7e50d2082422a73783342e17558be00c
BLAKE2b-256 f2498a60a7b72c48c6aa63054fe103d16044208695d8f718fa051b7ea7a80af8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bedd9539674f68cc714083259ae185f6945d84e5fb4096ef89674d44436864b9
MD5 09c25fe85c28f6049bb7fa6eb868d001
BLAKE2b-256 12efb1c8a309d1222283c0e4143330af3a608ac29225091e07a3286e0fcd5372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52dc5b11ce11d5975665c849d7fd2256d6de1d2e105157d8c9b154bbc8c21a5b
MD5 bd60f1aa1aa49e44b31d90c8ce0d4967
BLAKE2b-256 aa71af38a1b878a7c4a03b6b2e06fb9eff7a8fdc417e043c90add67fdd234fbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 217.9 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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f97de473dd95acceaf7ee199d7b645b24c8a807702bce39c57ab314c2625bc30
MD5 c9f190b033999d5f2025afba1865d37c
BLAKE2b-256 f97e7e9a2c714737c55425ad56495909e7afa535b0710cd31b0c490b250d6169

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 211.6 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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bef0a58d99e30a4c288014617718d56d78909f187a0353534df66cb006328d04
MD5 25e3d992dde873e515306030e510e7fc
BLAKE2b-256 4c191380fe4186e8db4a747159f54041f191350cc5834bf5ab3cd325d2ade648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 364ea29836a333f23f9c525b615386353b184a3e1373db1c54450c587d1cca22
MD5 828c4a10af022fb30b7bfc575ab75159
BLAKE2b-256 333db274995e3a4463a3d93ae60d57e6f2dc8bcc878fcb77cf95abda7f54d4ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8d88e007bf8ef926263d946b3ba57e44dd8bb468cd8b385b773c71dd808e417
MD5 a01ff56e40e9692b362a25803e652ea2
BLAKE2b-256 de896cd9f45696b19add0f4c1be82ca79de3b1ba02904f92a3ff6a5b2a395a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.2.0-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.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf9665bb0d73121630efbc146c9676b39657e0285cf2ea0e9920bc32eb70eb66
MD5 28af95e1390cc37613a40509e67d26dc
BLAKE2b-256 f154f763b03275d49fc29282afd0be9f894d176cf0dcd592deed1588de013244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4210706c76f37430fb32621f3a56e565e6b7b7930060e564901eaec4b6ee4b4
MD5 5f0c2fdf84af969e8817e197526c2598
BLAKE2b-256 c1c468a73667dc1f17ce1432d2141f9ab845d696cd392d71dc9d6ee1c715b6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f98b0e2ad45492fdb3524bb18a6ff54dafc51f3e7d6194c44d790fe1a873a3c
MD5 50743c30aa91d309fac368f814934126
BLAKE2b-256 b248db77e023cc79daf1181c1d1b658696a07394c07123972f256163417d9def

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26d3679acf43b2c39df37eefd4b37b92d69e0556d08d592b0cc30a387d82978e
MD5 42a52450e0777ac5636895051b430525
BLAKE2b-256 e432bc7a3c6eb0f5d1d0d0a85aa8a13eddd922e2c1ec739b458479e7287fd9a9

See more details on using hashes here.

Provenance

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