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.1.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.1.0-pp311-pypy311_pp73-win_amd64.whl (186.7 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.8 kB view details)

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

pymseed-0.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (271.3 kB view details)

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

pymseed-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (231.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (247.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.1.0-pp310-pypy310_pp73-win_amd64.whl (186.7 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.8 kB view details)

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

pymseed-0.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (271.3 kB view details)

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

pymseed-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (231.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (248.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.1.0-cp313-cp313-win_arm64.whl (192.7 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.1.0-cp313-cp313-win_amd64.whl (208.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.1.0-cp313-cp313-win32.whl (202.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.1.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.1.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.1.0-cp313-cp313-macosx_11_0_arm64.whl (257.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.1.0-cp312-cp312-win_arm64.whl (192.7 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.1.0-cp312-cp312-win_amd64.whl (208.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.1.0-cp312-cp312-win32.whl (202.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.1.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.1.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.1.0-cp312-cp312-macosx_11_0_arm64.whl (257.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.1.0-cp311-cp311-win_arm64.whl (192.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.1.0-cp311-cp311-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.1.0-cp311-cp311-win32.whl (202.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.1.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.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl (257.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (275.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.1.0-cp310-cp310-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.1.0-cp310-cp310-win32.whl (202.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.1.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.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl (257.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (275.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.1.0-cp39-cp39-win_amd64.whl (208.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.1.0-cp39-cp39-win32.whl (202.7 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.1.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.1.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.1.0-cp39-cp39-macosx_11_0_arm64.whl (257.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (275.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.1.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.1.0.tar.gz
Algorithm Hash digest
SHA256 65455d912a14306fceb1eaf0bf99a065ced1b36465f5ff685072393de0a4ef54
MD5 473dbdc0d37c461ecdf28deb64186980
BLAKE2b-256 d615db3614d2c553142563bfcf59e25ce57455307c99db21a0d4defdc7c8c31a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 de83bffc4a32f3840f6a89981426921ad42101de03bed625969491eee696d645
MD5 ec1935fad940eafdd95cd53faeacd5a3
BLAKE2b-256 7e6a2f13b44530a030068f34068f1bf8753fdc13b71a923e48f94fabd78f5987

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d6576a397e67f92de95e4c885eb14686add3951178c00b70f37f444cf3e353a
MD5 d19bff29da4f4643be7a46b656038058
BLAKE2b-256 b30a6ae36ceed57bc83d30702a2ad99c8877942b0c189753a0e06cc78d68dea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9acfa322fe43d022a52db7a4f66ee4a44a32a91139d962cbef9db1b38723723
MD5 1ad51a3a3efdf65d14a06a8cc43f5f1d
BLAKE2b-256 cddad8495dd1993937f34dc1b4e2e198e41b3f6ac912c0fc538a1b63e6ee7f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75bb0aa7c3934a4cbd965e6f04de46f292e48d48b683d24d3e5e5575f629c7d6
MD5 2b7cd3f8808b28ad7ba6daf39b104172
BLAKE2b-256 d510c31ad734d243e3f3eab72e12d25d1287f5a496d8999237fbfc4faacdc471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 91c5175d470fa7be3e5a462d1155e7f865ce54b0652d14a51ed026287a84d243
MD5 f6a54103fb810793ea1b2507b9aac4fe
BLAKE2b-256 7ead291d1823c7202c46434c7e14cda42fb92d72828a18be4144f5f13d96388d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5cc50db607fddc1f389ea0f7618ae197e56a16664807cd81241779c9cde94e84
MD5 19ac2566652c24a83f100e277115755f
BLAKE2b-256 d77f1e20a2a7a048c38f32c1828438d38f52de388dd67ff632adb1ea46b42b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0154e3d45b1aacb11433f46ba0f4ac99062589c5422aff5bf00c480e1c537f34
MD5 b69bdcdd7d699bd602970a15573986b1
BLAKE2b-256 773a7111809077ca644b62a96d31a4d86a852ce5581edd859f7fd73e737f9317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1379023678a197d6645693ceec34dbd1972e2b02cd9f8153e60c63107a3b5857
MD5 5c2cb5fdd71df16964950c94a345a2ea
BLAKE2b-256 af9f74f72a684065201b4a14e476d277ae0ed1ef0cee401383b111ed830a7275

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8152b040c975eb55b4784eec2e1248eca81b523b667259acbdf4d345876b6b7d
MD5 bbd481ed5c7750a9ea27e4f27c725c43
BLAKE2b-256 21fb27067edbab16d647ada354cfe042ca3993ed94e6fa20c8cf2bc9c717d5e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30df708b00e2d396c896ac64c0c6bc448aff541a3e0dee3963e3edf9e67726ad
MD5 a20e485d6377ee91ec90ebad7a1aa7b5
BLAKE2b-256 77c6f80f49a4dc9ea028a2751f9c18663ef6bb158f1c2ed2d5f2e5ce44ada6da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 192.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.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3660e6ead8e2e9fc03a562916d4dc2cd5e9f58eaa6fe99b26624f38aab74df3c
MD5 87ae12781d8e59df35d352313ac35115
BLAKE2b-256 e94e3ff41157edc0329064ce57781ca9fa75143fc82edcc8c5b83a49cbb7cb46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 208.5 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 752bf51754e15991c4ecdc614d61d49bdc05c2e822c3489f38c26738d6f7d22b
MD5 44d96be992d65950b10a55b8b73f0b35
BLAKE2b-256 a4126589f5853253abf0eaa00aa5a95aca461bfd79b554e664ed27cb46c599f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 202.8 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7acac08d013cacbcca03cda1efcb21a0753f73c3747cd4d3f3f65622b98e3469
MD5 71c446859df16638c3f44ee29a2907f6
BLAKE2b-256 e9da498599831c3b1e66ee3b84dd7d2e3b2f012affca58ce3d2f0fbc539bcac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b94df2aa7f86a12ae7d1f2b82f9c578d83a71d211f4b0c590e8e92dd830d2f5
MD5 1343cd60f36597be9689ae9ebc04f9ea
BLAKE2b-256 4825d59bea3ddde0f3db4041b3a68ab98443866e5c54b733a7a3ed9422914d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 974c47f8c82c95107e56d1ead922d323c765b21e70dac3cee9ec8f689477175f
MD5 cdf072b145795e3ea21e93f01babea0e
BLAKE2b-256 75c4d9c50cdfd7b0bc19c06728e8117d1b532ae0a16fe440eeb56f3a974d386d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93ac866d3b5024878bab0288b60f69c301b56d03bb9154695c3d75c3c0bd6b03
MD5 d2e696849656fc73edc3667028299a32
BLAKE2b-256 fc73907ae282a7ddf2c198c593551b87d778d32bce0809a0ba674c81c2ec21b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d910dd301ac8bce81c57c9bec661f1e34f7958484fe2ae29db783a262b542f49
MD5 aecdd12b8fa5d29ca872bba3affe4e35
BLAKE2b-256 5bdbe3c9fadd87998d38ce6030f950fcee02d443aa2d025cc36b9db92297d2de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd2232990eb5507153df0a7808f12e35ae9f8743926c5af8b940e2c6edad4b74
MD5 c96d5a9a48c145cbb9808a3ab623792d
BLAKE2b-256 2648db54bf4790048b078151e9804d91e1bea046f07876527249ad4e943c07c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d320dc455e117586076e8c4d75ff4780b1e5c5d546a48b9512bc91292fd09af
MD5 ae705f3c12debc6e12242bc135442d66
BLAKE2b-256 e02cad98097c902ac1601731c164b9ad56e2e48296daa7e29802549c2278c4fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 192.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.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 24d170ed0801036b5bf06937cf15e06bc3152029227f46523e95e42878aa0392
MD5 41d1be1a4f7d98d5fb8e9fc8b2ba224a
BLAKE2b-256 d2d375b5b7814d37cc00b7c9a55d5f8607bff3c4a40c3567e30f5667bd9157b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 208.5 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e6924649f20ed2eabda012e373917cbff2e38bc6dfe76aa2c3749bbd32d1c9e
MD5 53536721f235955a611684f193000673
BLAKE2b-256 4ebd3814a303dc6900846b8f600af4872276b7a81965d1f66d0ff5654d8767ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 202.8 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3367131a1c652eee36771d990f6c381a7acda7228fb44073bb6f52d6ed24d53a
MD5 9d36efc20a3ddfbcda8ff8e9ff94e029
BLAKE2b-256 bea7359e838d1286a9549a57dfb30a867411c4246534d5c1f7373b1da9c7e2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f14b3001e07bfb4fad9dc15fe1bda11eaaf37e32283d85c3767fd0ceb4797a52
MD5 5d84355244c1d46b85b41c947fd1b368
BLAKE2b-256 d5c348662478c6bc3e988287b340662cf87266b7ed3f8d2866d8e3e816ed6fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9651798644f180bfed74c9f581fa61e160419819abe6693b5d973780c7e4d235
MD5 632e0cf4007412583c7ff64b884e4da4
BLAKE2b-256 e1506ed5719b0be7a164c1d14ad8c63bc3c8e63c41fc75e1921f383e067d7fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6b31338a8cd6d91bad9535a06a8b24a765c07dd116d489d4885a0a8318eebb5
MD5 f80fb56995bfc983c393a9b55a2ec602
BLAKE2b-256 e8d2f5a1b10584fdd90b52c775a41d2103ccea524f8eb9c19b8a0703cfa36a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fbef935ba5fabd445e34ff0cbec9884b9c8b00b831b28c0840ac53e4381db9e
MD5 43cbf298d7e72d7dec179f45c3182eec
BLAKE2b-256 9fa54d49bb75c62bbffc72092b8b937cfe454d0813c255dc37637d1077e29564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3459f8ab40a9d0c6decdaea3ad6be883b6a4777f30eb295ed2f1dcb43bf63a6c
MD5 884abdfc51c9698ab514bf65bb1fa978
BLAKE2b-256 dfcabd5e551fe5118f74ec34fe81c7c7f1c005a86760a8ba79fd591ba82a2595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 454df2a465b605d262e8dfd8b929a86bfbfd41c94fdd378d1be626f7c0f3926e
MD5 51ca5b3c58075c54865bd4d6e180a37d
BLAKE2b-256 45ca31cb5130107e9ed92943941dc0bec0a4f61e31c4ea42140512206ac8813f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 192.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.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9cccb14068f0b1e7088a8bf68c0acfb2aa953d89eb4a750e6968d524065b97e3
MD5 253590a3c861c26ae66bc55581f5de86
BLAKE2b-256 b66757f08a782216800489e8291fa4ef8e24d07cc3de5028ad9fad99e60f0b14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 208.4 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8be890860e4aa855524fbe4f44bd8703554f613ebe04480c83768b138063450
MD5 613c52bc5fe4a233a88b842a4fee37e9
BLAKE2b-256 6dc0f71d3df06b1887fd4710f00f23b5baa8fcb6a2deeb77d4efc681cfc7eb59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 202.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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eedbd136bdfa902cceaca0920a2fd39ec69dbed5290b0523b6e810012ab9bf23
MD5 1b8e07d9c380eb6f3ce9d970243f8747
BLAKE2b-256 aefb8a9638f6ac9294684d3b95bf4d6c40690dc0320e75e808aff1008e3886bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f112fa14fef014585bcfaf6d7a02fdf66698a2263310d80bb36b472b153ad53
MD5 9e118722b6c2c8ca66de9f27e0e2be2b
BLAKE2b-256 b88560576d01b54f732aed7b0f512487ff46482bc0f1ebb1695fc68c31464e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 261d3bc2d4174e59f6fd7f9ad5da2f78583972ef870c0f325f0b1909224a2a82
MD5 63f33551171cc7946abd929959ed86f3
BLAKE2b-256 c48f135ddd818f2112617e62cbb5e6b3bbf3dd6b6bbe755975a9d7cd1c8bce64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e6d4c809f47ce130aabe6fb967fe6defa23eef5d722bc6ae836f6869664e709
MD5 8fda922c25f36d2ccff967abd12ac9f8
BLAKE2b-256 656df2f7aab0ca54e1d78c1b689c79c21e3e3eecca39010adbda56d537ec68e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5eb2718c4965060a83ced1aeca045c2b75cbfdab755ba25f188aacca6ea42ba
MD5 820e6c21a43c5ceeaeb05e3dfc73f2d5
BLAKE2b-256 0d6bc9e62831258a67d8c410564e9ebf21ccfc5e06932b1cd6b5fafaed680b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c43f583a82f9e311850aacdc98035ade7567ca0fa2663ac0761225ad19f070f
MD5 2386fecf6da47cfbf96f894db320c10e
BLAKE2b-256 22ee8485747c481651ff1432dfb116e79d30431f6096d2cf892abdd1c0ded8b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01542e74bdbc7d537764d2308a4c59ffecd646ac3868a0b7005b895e1e9f1449
MD5 1e451c5844d6b1acaca2b76a5f5b364a
BLAKE2b-256 55da37895ee409417d0ae22fe76bf59c6a53d657ae741dac9c12ab8b3caaaed9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 208.4 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e444848191bcb18614e5bf5c7767fbd57893624148fa84286c47fbe5d282f99
MD5 9b38a8591e479567b0fd78fbfdf1134e
BLAKE2b-256 60887fd36aadcd4f611547f3de3a13b431672d8791ca4ccf7e89e3416105a487

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 202.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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29fc61d2be0f1a99ab22feebc6a850d41a68c75a6e6b264d99501e17fe7c57ac
MD5 ad1bf35c22cfaa2b4ad790a7289b15b5
BLAKE2b-256 60f8b15d049de1da0f77f6b2c84d954e83f17b95111ad4f431be0310cc3000ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b0c58436496d60e1a9f0ce999a3fdd3b4fbc4b0e715c77bf0ac161dc4ca52cf
MD5 d9a68fbea2bb6ac880af003b29f3abe6
BLAKE2b-256 37408908393e4ebed52603c1a1ef65018cf326bd603370bae0ef708bcc734365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63f22d1d06b2ff398ed84edfd2fad5384913f55808fee2c4f4f025978cf21b09
MD5 45794dfe9752274a2e578a7c0c5a0f28
BLAKE2b-256 7a14b17337943a341d034305fa795af47c9e8ae4df1e5e3df0d161650b65943c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dd55d364f7ca7d64b8e25053ab08296e9b42c5dda74b28f27023f4e5d24937f
MD5 8a0aa6f25a3fcd64fbb08991a8f19bc6
BLAKE2b-256 2fceb7044bea279d172b813057f7ca4082a8165fc8aa8d6eaf8d81b369311cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9a76426b6c01dce038acd5be8abc980971910118ee6334821f8bf11e443326d
MD5 aebe96138ee88af735f105eb9dec5911
BLAKE2b-256 ed40d12491b78c2028754c7e383faf0b0dec6cbb059ce72f213b2fce13dd3e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f87d9909e044904dda6fce98b85edf8efdcf9a3964945749c754088836a9494
MD5 d51921f256b96e1ec0bcd531923cb591
BLAKE2b-256 41089bd530e43bf55e02e62c574de7eabb74ae3599450573242902a0a444e37b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8a5407d326f3552fd419710505a3140def2fffdf3c18db76be7c7ae96db01a0
MD5 db94b34739cbaf4ee30941a236d59069
BLAKE2b-256 c114c085bef00b35eef8e1132d1144a21434896f129db4b5706a2697ac021ba8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 208.4 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cbb73a7cf7f087f33d7eb5ea8063542feb980f50dfc968f656837b83c89b85db
MD5 a8301966dbc0051c3680c40cca42afe3
BLAKE2b-256 f4c2703342c3e87b3098fa9930f9d6408ed9e5f6273f2311efff908662d14ea3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 202.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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5a756dfde38cf86e328cb96225bbcba0aed7f218489feda0e090437f5b38c959
MD5 ee7b1dacb19bb207e72b4e3715cbbef6
BLAKE2b-256 b98589d4bcc266d4330ebbaf81084418252821d3a5b3ef6d9cf8c873b6d40d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f867759e1e355bd78cb795b5bbeafe54b9b1533a392a9360ec6b1b40cd523924
MD5 50bf5fe1cdcfb4fed133ea579d28c020
BLAKE2b-256 c5de41198847322fe066828d4529f0cd524fb5872e98928698679d244493ede3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8b175b30e6360167138caca6af38c2fa76f1dc3611a8db4d3fa4ba4dd724573
MD5 930aa4dfc63fa3c6b0f6e3a2820d5e15
BLAKE2b-256 4c8e1ea55f30cc1a1b9522a81039301c5623852901f37a0851a7c44f422c590b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.1.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.1.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.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3c5f7d0247a5775b1cfbc2258262c4db85c6012b64ced9c3524dbd8ad97ae53
MD5 210cdda34d5368ca948594b4fea77555
BLAKE2b-256 5da211f3bbf30c81e95e4d62d85e4b659c17c31f7d48a8bee7116347c1c04607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6518e9745d981135a6a7a94a7025b45cdd0585f76878cf8df17f71980cd0854b
MD5 8d341c9f092fb2fe8367ac0822cf3617
BLAKE2b-256 c9d79d4695c714b559cadc76efde0d588ab8f974ee7213146bf9b663fc8353d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5d4885d2de8feac6cc0be9a13e1cda51d0978a67fe45e1e6c1e9e85dadedac6
MD5 a3c6ce704b6b9a93e35218dd2c7664a2
BLAKE2b-256 83185ff0c52c238533384776d58a9a0f84a1604176ed783175758b55a33d7484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7672b38e1417f94f4f2d3fc812505850f5b77d6e610f9d4fb4176f14be61361
MD5 cce94c5411e9b0d50d81ca285ee32c7d
BLAKE2b-256 adefbf9613df72dd789f9701d7f554ddbc9133c4ab7ae31382d7b2c29a0f8ec4

See more details on using hashes here.

Provenance

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