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 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 development 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)

Threaded usage

The pymseed package is safe to use with threads as long as the threads are not sharing data structures, e.g. a MS3TraceList.

The underlying libmseed library uses thread-local storage for logging, allowing each thread to have its own logging configuration.

When using threads, call configure_logging() in each thread to initialize the logging registry for that thread. This can be done either explicitly at the start of the thread function or as an initializer for thread pools:

from concurrent.futures import ThreadPoolExecutor
from pymseed import configure_logging, MS3TraceList

def process_file(filename):
    traces = MS3TraceList.from_file(filename)
    # ... process traces ...
    return len(traces)

# A list of files to process (silly example)
file_list = ["examples/example_data.mseed",
             "examples/example_data.mseed"]

# Using initializer to configure logging for each worker thread
with ThreadPoolExecutor(max_workers=4, initializer=configure_logging) as executor:
    results = executor.map(process_file, file_list)

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

Uploaded PyPyWindows x86-64

pymseed-0.6.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (284.3 kB view details)

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

pymseed-0.6.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (286.1 kB view details)

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

pymseed-0.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (245.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.6.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (263.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.6.1-cp314-cp314t-win_arm64.whl (215.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pymseed-0.6.1-cp314-cp314t-win_amd64.whl (229.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

pymseed-0.6.1-cp314-cp314t-win32.whl (224.1 kB view details)

Uploaded CPython 3.14tWindows x86

pymseed-0.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pymseed-0.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pymseed-0.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.6.1-cp314-cp314t-macosx_11_0_arm64.whl (274.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymseed-0.6.1-cp314-cp314t-macosx_10_15_x86_64.whl (294.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymseed-0.6.1-cp314-cp314-win_arm64.whl (214.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.6.1-cp314-cp314-win_amd64.whl (229.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.6.1-cp314-cp314-win32.whl (223.8 kB view details)

Uploaded CPython 3.14Windows x86

pymseed-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pymseed-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymseed-0.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

pymseed-0.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.6.1-cp314-cp314-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.6.1-cp314-cp314-macosx_10_15_x86_64.whl (294.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.6.1-cp313-cp313-win_arm64.whl (209.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.6.1-cp313-cp313-win_amd64.whl (225.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.6.1-cp313-cp313-win32.whl (219.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.6.1-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.6.1-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.6.1-cp313-cp313-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.6.1-cp312-cp312-win_arm64.whl (209.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.6.1-cp312-cp312-win_amd64.whl (225.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.6.1-cp312-cp312-win32.whl (219.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.6.1-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.6.1-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.6.1-cp312-cp312-macosx_11_0_arm64.whl (273.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.6.1-cp311-cp311-win_arm64.whl (209.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.6.1-cp311-cp311-win_amd64.whl (225.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.6.1-cp311-cp311-win32.whl (219.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.6.1-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.6.1-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.6.1-cp311-cp311-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.6.1-cp310-cp310-win_amd64.whl (225.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.6.1-cp310-cp310-win32.whl (219.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.6.1-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.6.1-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.6.1-cp310-cp310-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.6.1-cp39-cp39-win_amd64.whl (225.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.6.1-cp39-cp39-win32.whl (219.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.6.1-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.6.1-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.6.1-cp39-cp39-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.6.1.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.6.1.tar.gz
Algorithm Hash digest
SHA256 01ac50d642311b82a3325f1ce2df1cd69889912d41bb9f7bf54e8b656fd9592e
MD5 c17cac484dcb392f17933c31f6c7ce04
BLAKE2b-256 6c3634da4d137d379ed52be6241397f5a0dd303f8c93fb71ba1d04d2e7f012ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cdb33db4942d3878065926e1881e7d00f379587a2df58e655adf1fe1cf51928b
MD5 1c0e17d7261c1fc5c670a4e4b6555879
BLAKE2b-256 bcdc578432f88a8f902589961efd1efb93c9daf95f6c3c659c1ce0b61690f26a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-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.6.1-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.6.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa3264674e35535075cd49962b25faea36f609f4928f9d417557a0487a5d4c6b
MD5 67728f128b0287737389e4b8abed13fb
BLAKE2b-256 e97eeffcfd84d4ca5710c763d5f2077ad0facb64d503a357c9a8d55b3c569bec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf684777908705a1626cb6686e8e26b1b4d1a1379186e286fe2e5151bb8d4ae8
MD5 ef064495b017a9d02c875398e32e7703
BLAKE2b-256 dfe47ede422d3434d022543864de79cb611edea396d594a5d32c0b62b7d7f527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e6aabae229b5434cfd5a8f888303fa85c0a97763f58d12a6dc4e7247bf9c39c
MD5 e701c0f94b25a58c75b84efdc2c2c1e7
BLAKE2b-256 25d27178a26c20c840c8b7f55cf38d2be6befd423c46b693c0f9a7ae0c5d630c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c9c1e1489611805c420aa19f8c9cfa19972aff9bb1b386df72a3fd39d9eac2b
MD5 a8d9c7e804d7d5b3572ba7f3fea3d743
BLAKE2b-256 fafb1f465905b88fd343c07cd7ce968f19935a6fc8b810c9424965fa02cca4a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-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.6.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 215.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5f803869b0d3d2dc97dfd2b5c0860049bafadc8a0329786162dad6f6f504846d
MD5 5958719f1b4ed4f13e1bf4a3c279de8c
BLAKE2b-256 c61c8718a8a23ed99b9d80f8b20db7eecb1991ae514a45736b83a64d7ec2b1fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 229.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 afd79a1e700612aa763d15feb6bb9d19e7dacb1a17ad1f9edf36f2ca4757c07f
MD5 9d7ee28a31a3803e59787bba2a7f2901
BLAKE2b-256 b7cb46c6c5482508e55064f3c17f60e9abb21fbf439bb6f42726c500438ce164

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 224.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0bebcbdd599ffb9d503a187e1e2b3665ec96f3fdc1665ccca220ef3acd7aa20b
MD5 f213b31be9aa29c344bd504408127755
BLAKE2b-256 d2e14ba78eb6ac5907b63de3be843fb23526b7be8e2a887303708b48cd7741cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dee82376b459bf258c4014d3baa4ec5ac53ddd9ad2b50d30aa0e4cd197e92ade
MD5 bb31bc610aaf1ed547ee50ec8d326d42
BLAKE2b-256 7b0b9fb32d25948e8b522724da724c1252dbe30e83f8a4c50c7d1dd4e3109d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 314bd040ae618c202d79f206a826ec94f0d3fb5ca3ae7a212370563cb9a1b8d4
MD5 9c9f071f5fc86e261168cb70820ec99b
BLAKE2b-256 f381bee7067eb1b358ea792fe19f0296bcd5337814957d7450966088be6b87ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afce7924695fb47e9d1af80aade1d4496f4472e363c2beef6f8405ede141f666
MD5 d31a06933e569e65311180f4f84a672b
BLAKE2b-256 febb8867d96b24839b5e6ffb55a7a734dc5d7e9d65b5a123a165a2b2349b3336

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1535ad74d9afbba6e2801d32f4b8871b7bb437714a22ee80c50f372c8f08661d
MD5 aba98d413bce292ea41d3ed7ed42d217
BLAKE2b-256 2e0bd2555a879be6a643df6d71756c615fdbd6af78263f117db4c8c19dfdb980

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c9f4d52ac4928a28093727a1126567f29c976aeb683c458041a9e6e6342a25b
MD5 afbbd3d33b2a5a26faa24035901fe140
BLAKE2b-256 c9f846f4d7abea55b06969a57ef9a5e0ac3e4412fd6a19b3c0babb1e91a93395

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 357da797145fc60dd063c197067c8c539909d0fca11cb089a8efb8136beec066
MD5 c0d43eec277dbb731189e6a96a6cc006
BLAKE2b-256 5373fc25ac238d885a11df81aee5dd022f8aad76c7c1ebdfea53f2a5476aa3ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314t-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.6.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 214.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f7e5c47126461ec98aa1d1637f39e565ffe2b7e43ddbe9a55229fe494b1a9812
MD5 5f9068d49bbe9c4bf47451b8bbe48606
BLAKE2b-256 d0b1c7a6fcb6fb56d656a674d8634180f5c0bfee361f1b87ce1e194d3d35c480

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 229.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f6fdfe4856364d7ee89a28fe4cd907726dc7f5e4eb0e13ea32c0058f25d6ef8
MD5 900b85e6806584d5e5c87d17caf3f471
BLAKE2b-256 c14c3bf6851d053fc2b56b20cc034e69faac6666bac4714a2a9ea9870d3b5bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymseed-0.6.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 223.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7ee6225872fb3d7de801ad0f8c619d15119ba4659470c24e7452e4340d5bec4c
MD5 7335ec618901f8de801a3f70a7021069
BLAKE2b-256 20e894c0e17b6e38a8a2a56a25f0cf742a7e2c0f9c62be06ce3b7b67ce5e5efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bc16a5a326305dfa0493b0390bb9bf4d59a39f96197487c49541cd5990e7aff
MD5 21be44a852f2e3ea7676317d44cdda01
BLAKE2b-256 0c158c0d7f63893a61502e5493c68abdabc71df5d5757e7274bff485625a1954

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a53562b18c6610be047ca2eac8a7c6ab81153e305dada3dad406ae8262c180e
MD5 97d41731db851b5f502b480db0ee0c72
BLAKE2b-256 0a08ec32527db144ffed1d8dfedbf0e3efbd352ac1590b40e652563cc3eba08c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 996ac144f279878b9564773402a35bc500bd637b5e0c4539821e5afcdfb1cdfa
MD5 56831885a8e7bb33144b78d9546ec0c3
BLAKE2b-256 6085600a40eae572dad784d4d76aa431d921c5bef1f0834da296498dcdac44e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec8fcd085ed138a0e67fdaa700fb099e5cf5645393d46e2b0eb87049f8c49c83
MD5 b54ee42ff5cd668984848bd7cd9f0ff3
BLAKE2b-256 3d0e592fb79afd2a713feef4f009f50699d4ca8629cde13832cfbe3c1ee1bfde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3258f13045d157b1373d29633b7b0f770af9b2bc13e47609ed7057b009d41f3e
MD5 2f37839e0be00f91b7097322e61dcf0f
BLAKE2b-256 3190e71e31c79896d1b0c6b6f6721e2808d1140d8a3acef438df4600b6b5a522

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.6.1-cp314-cp314-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.6.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.6.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 643fddd958a653e398abacfe268d9df4a6da13ec7d4b20edeb28e84e7b37e271
MD5 e27edc51157aadd9a02284ca04d27655
BLAKE2b-256 79abd4c1d1beed74fd770ec66a3fa608922ad8599dddddac53f31d3664fd564c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 209.8 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.6.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1c666a6ec0c0f75ff2add6b0c319965f6f35fa42885842efd7ed505a7ac9582f
MD5 516519f27cfcc59dd77731994cd2d367
BLAKE2b-256 336720eac8eb3fb695bc21d3bfa6006ec4cf23a31e17b6f2be1d1049d81fca22

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 225.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.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c5a5f69dff80c4a8e4293c3a8452f251fa8f2c44e50233e36b1e3b4711ac509
MD5 dfe425d8015149344f0f67eb96de2b1a
BLAKE2b-256 a26f167fde5532394602e3b91643d27338c1ec1f85190ac211745e93680a8b61

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1bc5ef86e823d880269d3beeefb62b7b501361f5f98f0452be15855ac1659d0
MD5 4982a0eef8e40fb4e09ef9a53737ac2b
BLAKE2b-256 c9137a9c1d91fd7632d6abbeca72fba3526b0dd8d724f8807eabc622419bc1e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf930a093c2ace27a326a7ed4a733b880ac0098f8e3e65439378dfd1180ea5cd
MD5 4e8343a80de75e0bb6ec9557ecb0e13c
BLAKE2b-256 139849b41507a5012c01ee7174c84f0a0e2ac1714581da0d0514c1874abd8f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b59cd0f362a413a14e8baf1abf7946aef15720c271894a5c619629a04fc64b1
MD5 328b5f79a5511c5b0f82cbc9a4d27700
BLAKE2b-256 28216fd71424afefa2ee15049566398c7be5a3a26496afc4240dbe0d187c263e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36b301ae07578e441b6751199145fef62474e72fb5f6bcd8bd40c92d36291a67
MD5 93c04976c7b94375e7e25e0a7ae74c18
BLAKE2b-256 daad69d611295e158fbdb810a46a77aab379d15f51afc5f8b4e44977381c5074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2869a5204e30fcd53191efd1eadea372ad41ef2857cbd40dd03bb65c10e1711b
MD5 f125303d4cdda62f2237de21e7269ce4
BLAKE2b-256 af6fd78a2185c257d8c668bbd8f871a1b5a1ab84e8b464e5b59816bde4182775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e959e19902c5dee1fa2484b3dd3e4fd22a8ba817f0d0c21b12777c08a5b87bb
MD5 ad844b9a781cc5d5cad780e35998aa75
BLAKE2b-256 8d2850436128b516905c5a2fde52dc3f72aa1d356eb70e5f1eb85be64a006704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec189cd2d4932fd0540526dc8612336c85961840e6cd24cb33af3738a984b29a
MD5 2725d12e32dff813abe33164e83c060e
BLAKE2b-256 2e8118f19739850089a9e8bee60ce0c3b373efbc05fcf5265717ad0d178b363d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 209.8 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.6.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3b268d3a351ba9c9746636adae62ddfe4af5d5823065f0afbc5c32fc70cfaf0c
MD5 8ced236701cf9fe66973c581c3c1eaaa
BLAKE2b-256 e943ceeb7ad937b7649a4442f9a6390b18e21495f630d61ff5a84af9e04e6bb3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 225.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.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ceb216591e9ee361a412c6c7fb517ffffc2b952bd2ae13e5daafdc05e01293f
MD5 6c023612ba35f335c2cc6090bcb432a3
BLAKE2b-256 46a7fa028aa474f4aeb4cf9b69488e1a121b385256f1894b715a9425db9c0b30

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7da4705e8db52c22638dfc14d5733179773c89bf788f5668e89a8b05828d8951
MD5 06879e9d5f851e5681dc7745dadfff28
BLAKE2b-256 dbdbfa02397bba93ae840e33629db28666bffb40943d534b7a7ee4eaeb9389f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b4d3f9e089767ccc277c69dd3c9ac5746a8f120f0caea85525e2ca07d811610
MD5 d11ebb6e53f67a0a57968f733db089c3
BLAKE2b-256 993db82901da329d7f69b9a053bea0bc98661a80a1cca079bccbc0c77ba0f4c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51bf72e618782d42209f2efaac3f0aecc424bfab961f7eca9930e65e9aac19d3
MD5 2608c4b8e85f019468bca3443ede8bf2
BLAKE2b-256 8c053fb3392fe3496b634b9ad702dd463f7dae9d4ea70b0dce89ed94730c6b78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e30c9f6d8f69a3490947edb15246fffd98a18094f10d2400bd611bde9f92e30f
MD5 0f56d68085b66dde7bca66d70832c4fc
BLAKE2b-256 f3f28d6167c46417060d76899417aed943609f9b47148df71ad398535d59308a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf2a3ebf6c578391478a1bd512b283105f931c3d859bff81f64c453ee62dfd7b
MD5 54aae19b48e7850dec36c3d526cb3260
BLAKE2b-256 dda7630793c8c4b55bc157845136e56e3a681b0ed961337083950b3273cf495e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0830c1aa60f6b76d0a57f5cb54450b10036450ec177146bddcf54cdb7af60946
MD5 909653276d0cacbb3f9d1f6d6bcee870
BLAKE2b-256 63302f0c59d1b64ba19de64d5bf158ee2570513ce4f243df7b64dc5b0ad851dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 babec362e0cb9a3426ec4e23f2d405d5a4962c08aef16d2681253ed3c4021822
MD5 1b9a1165da44caacae304bc8cd1f0391
BLAKE2b-256 148ff241e504c82e7ec8d396dff1778568153c746cfae25960555c9048ba946b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 209.8 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.6.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 62330d96053af3a4c1021401f10862bd2c360c88e638bf0603d8813827cf7a04
MD5 9f5164eee977bafd8304980a27761105
BLAKE2b-256 68aee18f66fcb2fe35b6fd4e81c06093c2fddc8ecbdc800e9f25341dced01dcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 225.8 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.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd10a943fe1a9b46ba5ddab9d11256d6cefc680c8c3b80faee4a60f51c4da0fe
MD5 81efba2f8b5865097bfaedc5599214c7
BLAKE2b-256 77f14b5637dbfcd71244e6b0eaa3e22fa03e6e313f5282ad524bd2815db3d4ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 219.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.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fe4b168e9351da8acb74dc44c4133315d6a464ee6ca51bb65e66daac7c86e495
MD5 fec2cc88352828104501030edac95b4d
BLAKE2b-256 eaf8e88651af613a1783a6fe1949c134cd2d05eebc345e79c7b5b6cfcd970579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb5eac68ae1b7517a4a929cee06484bbaabd4296bcb2da4e38454874923a9e6
MD5 d1c97433ab7e4ff8a388bd1d068e3c2f
BLAKE2b-256 db84a6680042136e5820bd03d185484d7a00b9f284b480dd0ac175ab425af23a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89e4f80ba68e27b0561ffeb02666c9fe5a57f74b1392b9dd8cf847fcf1deb8b6
MD5 d1de3aa4cd631676cb672fedb061f422
BLAKE2b-256 ded8adcedebea45a441652bc91a44a20899766f7ef7a50c0bb5609845d080595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe57a6c53746e91814b3b229c45448d40e561ecfb0b927a533d053235ee76fd5
MD5 ebd1dd47760bff84145bc528608b19f1
BLAKE2b-256 40bc6f764c369247d926cdb2199a935c976a13f969f28ff1a36aed5e51c33ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2b7d636c3b339cff32e49a00af6c783e480118dae183ed0715e4b856b68e63e
MD5 ec8b17273eda4fe972d43db62799ddb9
BLAKE2b-256 037674cc9f1e7e4bcf406b44f7d9cc4149f733e451d1577c977bde607a728a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbc425d7d9f215a8aa40f8356c00a1d0902ab855d3aac70b01a86203c7d86b55
MD5 d1400843289c4ab80ee8ce7f2bb2222f
BLAKE2b-256 f18392ba05f0f1632c96de06d0cbccd848808c15073291d10d0171064c5dd4ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9ab6c258cee6509df47edbfe2889a5f9aee612669aec1d5fa055bdf158ba471
MD5 9bb085b391e29a55197236fb0471c9e4
BLAKE2b-256 16eb40448c7d842497410bd88a0839a793de1592ad4143fa5d030f126afd0175

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 225.8 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.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5bea1795ec9246ec3a2f8a9643f3c165171c1a98f05054635b232581be816258
MD5 6ddfe19c1d2bf07ef4fe30e9e4e3f745
BLAKE2b-256 e326f9bacb07148b0dc356095a962e562184efc5e9dee2ae882b4cbaf88d14ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 219.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.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8952f4631c3139f47975cbe4da79f3b0ff73c0b2c05f704f29dd9a1ae1285c1
MD5 5a3f1475ba8f57f1c94e4cf3c401593c
BLAKE2b-256 e21717713214b79c9173a2b28128b2d4435501e5a51b9edae46f119c49a1a781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59556dbd596efe34f7d45aadd6f34cf2d27d504c07aa374eb341c15c94fa12e0
MD5 10e24716ccdc65fb5120d1195e5b9ce3
BLAKE2b-256 eb06692606de989d007ce60846c0a5a7ee2b8c3661f42f724fc288854dbc45f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7a4f0857b8b18f6af4d9c92898581ea48ed953226e50b56aa439178555c836e
MD5 18c2d2a41f4e34cbe189068d632e5ce0
BLAKE2b-256 3dddeb71738ba6c37fefac91e2a2dbd7bb359c5945a23de003980e1684688d2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7681b98a5af151383829436ddeaa36c019d2fcdd33bed3518d7c5507a260fff
MD5 f9faf134def94dbfced36f150957d70c
BLAKE2b-256 37f35c5b569bb5796337b7765b5377c82554f39f995b0f55ad8d523bb4b29e70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6b2430f3a2582d7176f70c52fe9ce5502df558bc0e3689907233f3403995d13
MD5 828be6b6db29397b13c9d1d7df12cff4
BLAKE2b-256 08a219ac8a8e3ed0225b0a6d8b26d77542f02104d29fc29e669277f9564612d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be6125933bd0d4b268bc42f3b498ac7500f9c6cca5a167ac65bfacdaac07200
MD5 c48047731beffb309076ca2fafce7ce4
BLAKE2b-256 238f5b772a73799c3f2fc7cb4cb42e6efced13a2178ab0d09d5525939b8e208b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61fb291437eff6fae21c5ce29b816175015656ec84f22260df03d7daa6c857d3
MD5 a18971b71cfcf79d3cf2a5377bc63997
BLAKE2b-256 58232bb79b41bc17c2eb54afc09eb9211cd5fa5643e84d0a2f936a761b7391bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 225.8 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.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 68df255545b17de5e9b50626e96590ee5c2c4cbc80702c6ad8074163cc8f3c7b
MD5 33cf7761f2ef7572c881f88a5e05fe8f
BLAKE2b-256 52899c6cc71d13e1db01bff09d7ff2618e9b5c04329b2e1ae04ef9ecc156756d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.6.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 219.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.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 513a4dfbf643abf8ae985a91348402d4112865972e12731b6809cc040019b154
MD5 1c9ca7adbb7d19212df9dd976a5e0799
BLAKE2b-256 f3efc09af19e87a316016e7494bfe3d359b0673463d6e64eae8985b65253aba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 714427bf30637790f7df176778c1f9473f8a84cc6813a9a6689fd5f9ac47a309
MD5 a3b237a5bd1535e2f0a22b613daaf9c8
BLAKE2b-256 84f8d3fd93a7ea8653f1b4199235ccb58b05c0acecbd493d3876809057002b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ccd7c78549f8b01e19a0ca34d731b1dada0962be77a0befe9ecc6cd02b77693
MD5 85093b48fc0ea5bddc165e1f6147d6b2
BLAKE2b-256 94149cdfb7334e2f17815e74a95ed614f64caef75b5430703ff6fd0d65764adb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44c4f8f3635020cc56546476de74de372cb3ac5071de2b59d64e76b0e09e3804
MD5 2c857845188160e4082a994e77147a55
BLAKE2b-256 a9c53ce4a6c68410b5c31a1d6047a28824f67541e78df2bfd3d47e0bc058b978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44720e149e208263b7746912a4a5a3e8d22d598d706365ed7248caca7a7aad16
MD5 4a821b64ae64d258bd9e9e94a40b384b
BLAKE2b-256 76848f7951bd717405554b4fa27174f3eb7f0199fe368adfc79804b216037ddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c5981da23ef24571ec3de8ca37bf5476211449d919b2eeb95ef9517cd9e89ef
MD5 932343aeea5e69e1b4db6e4315c87b8a
BLAKE2b-256 48fcefbb1d2ee2d0666c4b91c9026faa0f2714f5795ea1655dc0d7e8afa641c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 793ad93074fc68fd15487e2846d81406461e55a478bd18895b17659dd573965c
MD5 0fffb05b62055185f5f6cdc8a1b69107
BLAKE2b-256 dcc04a6cb2709574ed82e9b23fe2cc1000ba86aeba6821ae5f7a7268af8aab68

See more details on using hashes here.

Provenance

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